We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15f8c17 commit e6d22efCopy full SHA for e6d22ef
src/sentry/options/defaults.py
@@ -530,6 +530,14 @@
530
flags=FLAG_ALLOW_EMPTY | FLAG_AUTOMATOR_MODIFIABLE,
531
)
532
533
+# Drop attachments in transaction envelopes in Relay.
534
+register(
535
+ "relay.drop-transaction-attachments",
536
+ type=Bool,
537
+ default=False,
538
+ flags=FLAG_ALLOW_EMPTY | FLAG_AUTOMATOR_MODIFIABLE,
539
+)
540
+
541
# Analytics
542
register("analytics.backend", default="noop", flags=FLAG_NOSTORE)
543
register("analytics.options", default={}, flags=FLAG_NOSTORE)
src/sentry/relay/globalconfig.py
@@ -23,6 +23,7 @@
23
"relay.metric-stats.rollout-rate",
24
"relay.span-extraction.sample-rate",
25
"relay.span-normalization.allowed_hosts",
26
27
]
28
29
0 commit comments