From: Victor Julien Date: Sat, 28 Sep 2019 08:12:49 +0000 (+0200) Subject: eve/stats: update warning for new default behavior X-Git-Tag: suricata-5.0.0~124 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c769909dada7dd16c63180ce89ba3d160d371de3;p=thirdparty%2Fsuricata.git eve/stats: update warning for new default behavior --- diff --git a/src/output-json-stats.c b/src/output-json-stats.c index f498839da9..f890f22e3b 100644 --- a/src/output-json-stats.c +++ b/src/output-json-stats.c @@ -401,8 +401,7 @@ static OutputInitResult OutputStatsLogInit(ConfNode *conf) strcmp(stats_decoder_events_prefix, "decoder") == 0) { SCLogWarning(SC_WARN_EVE_MISSING_EVENTS, "json stats will not display " "all decoder events correctly. See #2225. Set a prefix in " - "stats.decoder-events-prefix. In 5.0 the prefix will default " - "to 'decoder.event'."); + "stats.decoder-events-prefix."); } if (SCConfLogOpenGeneric(conf, file_ctx, DEFAULT_LOG_FILENAME, 1) < 0) { @@ -479,8 +478,7 @@ static OutputInitResult OutputStatsLogInitSub(ConfNode *conf, OutputCtx *parent_ strcmp(stats_decoder_events_prefix, "decoder") == 0) { SCLogWarning(SC_WARN_EVE_MISSING_EVENTS, "eve.stats will not display " "all decoder events correctly. See #2225. Set a prefix in " - "stats.decoder-events-prefix. In 5.0 the prefix will default " - "to 'decoder.event'."); + "stats.decoder-events-prefix."); } stats_ctx->flags = JSON_STATS_TOTALS;