-
-
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
Enable new performance features in self-hosted #2545
Comments
Do we need additional snuba / sentry worker containers for query insights? |
The same question |
Answered my own question, posted this on Discord on November 28, 2023. Forgot to put it here. Anyway, as 23.11.2 is released, people can now try to use Performance Queries (https://docs.sentry.io/product/performance/queries/). On SENTRY_FEATURES.update(
{
feature: True
for feature in (
# ... (other feature flags)
# Enable database view powered by span metrics
"organizations:performance-database-view",
# Enable browser starfish webvitals module view
"organizations:starfish-browser-webvitals",
# Enable screens view powered by span metrics
"organizations:performance-screens-view",
# Enables the resource module ui
"organizations:starfish-browser-resource-module-ui",
# Starfish: extract metrics from the spans
"projects:span-metrics-extraction",
"projects:span-metrics-extraction-ga-modules",
"projects:span-metrics-extraction-all-modules",
"projects:span-metrics-extraction-resource",
# ... (other feature flags)
)
}
) No need to add new containers since the performance feature uses the Metrics API. |
Thanks, having added this to my sentry.conf.py the upgrade does not succeed, the indentation of the config section seems to need to match the indentation of the rest of the config (4 space):
Can i please confirm that the new config section needs to match the spacing of the rest of the config? Also i see other parts of the config that have a similar structure but there is no comma after Thanks! |
It looks like your |
@hubertdeng123 I help them resolve this on Discord |
Should be addressed in #2861 |
Yeah I think we might be able to close this one since I think this is indeed all released now? |
These features are rolling out to SaaS, let's get them in self-hosted.
The text was updated successfully, but these errors were encountered: