You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(kevent): VirtualAlloc and VirtualFree events (#171)
* Collecting telemetry for VirtualAlloc and VirtualFree events. VirtualAlloc events are additionally enriched with page protection and page type parameters. If the region type is mapped, then we also retrieve the name of the mapped image file. Filter fields and rule macros are provided as part of this PR.
* Fix linter warning
* Fix mem filter test after moving the flags declaration to kevent package
Copy file name to clipboardExpand all lines: pkg/config/config_windows.go
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -342,6 +342,7 @@ func (c *Config) addFlags() {
342
342
c.flags.Bool(enableFileIOKevents, true, "Determines whether disk I/O kernel events are collected by Kernel Logger provider")
343
343
c.flags.Bool(enableImageKevents, true, "Determines whether file I/O kernel events are collected by Kernel Logger provider")
344
344
c.flags.Bool(enableHandleKevents, false, "Determines whether object manager kernel events (handle creation/destruction) are collected by Kernel Logger provider")
345
+
c.flags.Bool(enableMemKevents, true, "Determines whether memory manager kernel events are collected by Kernel Logger provider")
345
346
c.flags.Bool(enableAuditAPIEvents, true, "Determines whether kernel audit API calls events are published")
346
347
c.flags.Bool(enableAntimalwareEngineEvents, true, "Determines whether antimalware engine events are published")
347
348
c.flags.Int(bufferSize, int(maxBufferSize), "Represents the amount of memory allocated for each event tracing session buffer, in kilobytes. The buffer size affects the rate at which buffers fill and must be flushed (small buffer size requires less memory but it increases the rate at which buffers must be flushed)")
0 commit comments