EventExists determines if the provided event ID exists in the internal event catalog by checking the event ID bitmask.
(id uint)
| 199 | // in the internal event catalog by checking the event ID |
| 200 | // bitmask. |
| 201 | func (c *EventSourceConfig) EventExists(id uint) bool { |
| 202 | return c.allMasks.IsSet(id) |
| 203 | } |
| 204 | |
| 205 | // ExcludeImage determines whether the process generating event is present in the |
| 206 | // list of excluded images. If the hit occurs, the event associated with the process |