{ CountType::SUM, "offload_fallback", "fast pattern offload search fallback attempts" },
{ CountType::SUM, "offload_failures", "fast pattern offload search failures" },
{ CountType::SUM, "offload_suspends", "fast pattern search suspends due to offload context chains" },
+ { CountType::SUM, "pcre_match_limit", "total number of times pcre hit the match limit" },
+ { CountType::SUM, "pcre_recursion_limit", "total number of times pcre hit the recursion limit" },
+ { CountType::SUM, "pcre_error", "total number of times pcre returns error" },
{ CountType::END, nullptr, nullptr }
};
{
LogLabel("Packet Statistics");
ModuleManager::get_module("daq")->show_stats();
-
+
PacketManager::dump_stats();
LogLabel("Module Statistics");
PegCount offload_fallback;
PegCount offload_failures;
PegCount offload_suspends;
+ PegCount pcre_match_limit;
+ PegCount pcre_recursion_limit;
+ PegCount pcre_error;
};
struct ProcessCount
void TimeStop();
#endif
-