From ca15069d2240a2b7c0795439e0d56bedf1c43e5f Mon Sep 17 00:00:00 2001 From: Andre Lorbach Date: Fri, 25 Feb 2011 15:03:29 +0100 Subject: [PATCH] Eventlog Summary Report now also detects and processes Eventlog V2 data. --- src/classes/reports/report.eventlog.eventsummary.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/classes/reports/report.eventlog.eventsummary.class.php b/src/classes/reports/report.eventlog.eventsummary.class.php index b9d4d5e..78c052f 100644 --- a/src/classes/reports/report.eventlog.eventsummary.class.php +++ b/src/classes/reports/report.eventlog.eventsummary.class.php @@ -123,7 +123,7 @@ class Report_eventsummary extends Report { global $content, $severity_colors, $gl_starttime, $fields; // Create Filter string, append filter for EventLog Type msgs! - $szFilters = $this->_filterString . " " . $fields[SYSLOG_MESSAGETYPE]['SearchField'] . ":=" . IUT_NT_EventReport; + $szFilters = $this->_filterString . " " . $fields[SYSLOG_MESSAGETYPE]['SearchField'] . ":=" . IUT_NT_EventReport . ",=" . IUT_WEVTMONV2; // Include EventLog v1 and v2 // Set Filter string $this->_streamObj->SetFilter( $szFilters );