chore: bump libs/driver to pre-release tag

Signed-off-by: Andrea Terzolo <andrea.terzolo@polito.it>
This commit is contained in:
Andrea Terzolo
2022-10-04 09:07:58 +00:00
committed by poiana
parent 663c1d073a
commit ec7ddbbaf8
3 changed files with 12 additions and 4 deletions

View File

@@ -67,6 +67,14 @@ void application::check_for_ignored_events()
continue;
}
/* If the event is not generated by the running system we don't print
* any warning right now.
*/
if(!sinsp::is_generable_event(it))
{
continue;
}
/* If the event is not in this set it is not considered by Falco. */
if(interesting_events.find(it) == interesting_events.end())
{