It's a bit awkward to filter an appsec event in the profiles (to send a notif for example): - There's no `Type` or similar in an alert: this only exists in the events - Events are not populated in an appsec alert (this can make sense, as we don't really have an event) - Even if events were populated, `evt.GetType()` does not handle the `APPSEC` type Currently, the workaround is to filter on the message, but this seems very fragile: ``` Alert.Message contains "AppSec block:" ```