Issue
I want to stop events from specific release versions from being ingested, so they no longer count against my quota. I am configuring the release inbound filter in my project settings and need to know the correct release format and matching rules.
Applies To
SaaS: Business and Enterprise plans (also available during trials)
Self-Hosted Users
Inbound Filters
Resolution
You can filter events from specific releases using the Releases inbound filter, configured per project.
Go to Settings > Projects > [your project] > Inbound Filters.
Under Custom Filters, find the Releases filter.
Enter one release pattern per line, then save.
Keep these matching rules in mind:
The filter matches the full release name provided during SDK initialization. With the recommended package prefix, the release is in the format
package@version, for example[email protected].Globbing applies, with no special casing for SemVer, so you can match prefixes. For example,
my-example@1.*matches[email protected],[email protected], and so on. Globs are case-insensitive.The filter never applies to events without a release, so tag your events with a release version for this to work.
Filtered events are dropped at ingest, appear under Stats as "Filtered", and do not count against your quota. The releases filter also applies to Session Replay, Logs, and Application Metrics from the matched release, not only errors.
For the full matching rules, see the releases inbound filter documentation.
