Eventlog Summary Report now also detects and processes Eventlog V2 data.

This commit is contained in:
Andre Lorbach 2011-02-25 15:03:29 +01:00
parent f7301e546f
commit ca15069d22

View File

@ -123,7 +123,7 @@ class Report_eventsummary extends Report {
global $content, $severity_colors, $gl_starttime, $fields; global $content, $severity_colors, $gl_starttime, $fields;
// Create Filter string, append filter for EventLog Type msgs! // 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 // Set Filter string
$this->_streamObj->SetFilter( $szFilters ); $this->_streamObj->SetFilter( $szFilters );