Does release artifact url matching support regular expressions?

We have a multi-tenant environment where every URI (including every JS asset URI) is prefixed with the tenant’s unique id.

ex. ~/TENANT_ID_HERE/my-awesome-app-bundle.js

We are trying to determine the best way to leverage Sentry’s server side artifact URL matching without having to upload artifacts for each tenant id or resort to JavaScript source fetching.

Is regular expression matching supported?

ex. ~/(tenant1|tenant2|tenant3)/my-awesome-app-bundle.js

Or is there another preferred way to handle this case?

Thanks!

You’d have to upload the artifact as multiple entities. On the backend we de-dupe this, but I don’t think we expose that optimization to the frontend.

It’s possible we also support * but I’m pretty sure thats not true.