relay
relay copied to clipboard
Sentry event forwarding and ingestion service.
Currently, the hash of a metrics bucket for cardinality limiting purposes is computed only from the MRI and the tags: https://github.com/getsentry/relay/blob/c892dd9c22bcd5147c9135e80341be03fbc0e29e/relay-metrics/src/bucket.rs#L725-L730 But it makes a difference for both the number...
Some projects generate many different SQL queries that are distinct even after parameter scrubbing (e.g. programmatically generated queries), which leads to an explosion in tag cardinality. We need to find...
Hello. Since [0.23.1](https://github.com/redis-rs/redis-rs/releases/tag/redis-0.23.1) redis-rs supports sentinel. Could you add it to relay please?
Followup from #2428. Relay with misconfiguration can become healthy and accept envelopes which will then be dropped due to misconfiguration. E.g. a broken Kafka config: ```yaml kafka_config: - { name:...
### Problem Statement Hi I'd like to limit traffic to only specific domains and subdomains like `https://company-*.vercel.app` this sadly doesnt work right now and hence it would be good to...
Inbound filters can either match specific fields by providing the field's path in the event payload, or have a match-all expression like `**`. Fields with `pii=maybe` can only be filtered...
There's currently no documentation on how IP filtering in Relay works. Over time, this has caused some questions among users that keep coming back. The perfect place to document this...
Currently, all of `relay-server` is private and is thus also not documented. To make maintenance easier, we would like to separate out processing logic into its own crates, in this...
Currently, field attributes [like this one](https://github.com/getsentry/relay/blob/c38cd0a32e1d9c8f27c3e50e1e599495e49e3ee3/relay-general/src/protocol/event.rs#L452) define how large a data bag in the event payload can get. The limits applied to each field are relevant to our users. Let's...
The minidump mechanism can be created not only crash occurs, but also when triggered manually. It is useful to record additional/intentional minidump (with stack traces) during debugging unexpected lags in...