Skip to content

Commit

Permalink
Ref(generic-metrics): set default for index-tag-values to False (#52370)
Browse files Browse the repository at this point in the history
### Overview

Generic metrics tag values should not be indexed, setting to True as
default leads to local sentry instances indexing tag values.
  • Loading branch information
john-z-yang authored Jul 6, 2023
1 parent 22cacfd commit dbd2bc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sentry/options/defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -911,7 +911,7 @@
# 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
)


Expand Down

0 comments on commit dbd2bc1

Please sign in to comment.