-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add metrics and generic metrics backend #2355
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -188,6 +188,13 @@ def get_internal_network(): | |
|
||
SENTRY_DIGESTS = "sentry.digests.backends.redis.RedisBackend" | ||
|
||
################### | ||
# Metrics Backend # | ||
################### | ||
|
||
SENTRY_RELEASE_HEALTH = "sentry.release_health.metrics.MetricsReleaseHealthBackend" | ||
SENTRY_RELEASE_MONITOR = "sentry.release_health.release_monitor.metrics.MetricReleaseMonitorBackend" | ||
|
||
############## | ||
# Web Server # | ||
############## | ||
|
@@ -271,6 +278,11 @@ def get_internal_network(): | |
"organizations:session-replay", | ||
"organizations:issue-platform", | ||
"organizations:profiling", | ||
"organizations:dashboards-mep", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are these orgs designed to test the new snuba containers somehow? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. those are feature flags that are set at the org level, and utilize the new snuba containers |
||
"organizations:mep-rollout-flag", | ||
"organizations:dashboards-rh-widget", | ||
"organizations:metrics-extraction", | ||
"organizations:transaction-metrics-extraction", | ||
"projects:custom-inbound-filters", | ||
"projects:data-forwarding", | ||
"projects:discard-groups", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should this live in https://github.com/getsentry/snuba/blob/master/snuba/settings/settings_self_hosted.py instead?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No this is the right place for the setting. This lets sentry know to load sessions metric data from the
metrics
dataset (which is the change you're trying to make).Snuba will serve up
sessions
ormetrics
and isn't aware of what the product is doing really