Closed roelbondoc closed 3 months ago
Currently you can configure the gem to ignore an event_type like this:
event_type
events: ignore: - 'sql.active_record'
By allowing objects in the array, we can allow for a bit more advance filtering:
events: ignore: - event_type: 'sql.active_record' query: !ruby/regex '/solid_queue/i'
This will also open up the possibilities to have a list of default events to ignore that matches a specific pattern, just like how we have a list of default exceptions to ignore.
Currently you can configure the gem to ignore an
event_type
like this:By allowing objects in the array, we can allow for a bit more advance filtering:
This will also open up the possibilities to have a list of default events to ignore that matches a specific pattern, just like how we have a list of default exceptions to ignore.