From 1b962b0fa7c0889f7c79bb34c1efb546cf8fafb6 Mon Sep 17 00:00:00 2001 From: Evan Typanski Date: Tue, 27 May 2025 10:12:52 -0400 Subject: [PATCH] spicy-redis: Add NEWS entry --- NEWS | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/NEWS b/NEWS index c713bcb14a..ddf4146c8c 100644 --- a/NEWS +++ b/NEWS @@ -42,6 +42,17 @@ New Functionality const std::string& topic, zeek::cluster::detail::Event& event); +- Zeek now includes the Redis protocol analyzer from the evantypanski/spicy-redis + project (https://github.com/evantypanski/spicy-redis). This analyzer is enabled + by default. This analyzer logs Redis commands and their associated replies in + ``redis.log``. + + To disable the analyzer in case of issues, use the following snippet: + + redef Analyzer::disabled_analyzers += { + Analyzer::ANALYZER_REDIS, + }; + Changed Functionality ---------------------