Browse Source

Ref(generic-metrics): set default for index-tag-values to False (#52370)

### Overview

Generic metrics tag values should not be indexed, setting to True as
default leads to local sentry instances indexing tag values.
John 1 year ago
parent
commit
dbd2bc1d44
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/sentry/options/defaults.py

+ 1 - 1
src/sentry/options/defaults.py

@@ -911,7 +911,7 @@ register("api.deprecation.brownout-duration", default="PT1M", flags=FLAG_AUTOMAT
 # Flag to determine whether performance metrics indexer should index tag
 # values or not
 register(
-    "sentry-metrics.performance.index-tag-values", default=True, flags=FLAG_AUTOMATOR_MODIFIABLE
+    "sentry-metrics.performance.index-tag-values", default=False, flags=FLAG_AUTOMATOR_MODIFIABLE
 )