Anon: Enable anon stats by default (#79312)

* enable anon stats by default

* update flag
This commit is contained in:
Jo 2023-12-11 15:17:50 +01:00 committed by GitHub
parent 2447e90be9
commit ce79bbba87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 8 deletions

View File

@ -51,6 +51,7 @@ Some features are enabled by default. You can disable these feature by setting t
| `prometheusConfigOverhaulAuth` | Update the Prometheus configuration page with the new auth component | Yes |
| `alertingInsights` | Show the new alerting insights landing page | Yes |
| `cloudWatchWildCardDimensionValues` | Fetches dimension values from CloudWatch to correctly label wildcard dimensions | Yes |
| `displayAnonymousStats` | Enables anonymous stats to be shown in the UI for Grafana | Yes |
## Preview feature toggles
@ -166,7 +167,6 @@ Experimental features might be changed or removed without prior notice.
| `logRowsPopoverMenu` | Enable filtering menu displayed when text of a log line is selected |
| `pluginsSkipHostEnvVars` | Disables passing host environment variable to plugin processes |
| `regressionTransformation` | Enables regression analysis transformation |
| `displayAnonymousStats` | Enables anonymous stats to be shown in the UI for Grafana |
## Development feature toggles

View File

@ -1253,10 +1253,12 @@ var (
{
Name: "displayAnonymousStats",
Description: "Enables anonymous stats to be shown in the UI for Grafana",
Stage: FeatureStageExperimental,
Stage: FeatureStageGeneralAvailability,
FrontendOnly: true,
Owner: identityAccessTeam,
Created: time.Date(2023, time.November, 29, 12, 0, 0, 0, time.UTC),
AllowSelfServe: falsePtr,
Expression: "true", // enabled by default
},
}
)

View File

@ -148,4 +148,4 @@ alertingSimplifiedRouting,experimental,@grafana/alerting-squad,2023-11-10,false,
logRowsPopoverMenu,experimental,@grafana/observability-logs,2023-11-16,false,false,false,true
pluginsSkipHostEnvVars,experimental,@grafana/plugins-platform-backend,2023-11-15,false,false,false,false
regressionTransformation,experimental,@grafana/grafana-bi-squad,2023-11-24,false,false,false,true
displayAnonymousStats,experimental,@grafana/identity-access-team,2023-11-29,false,false,false,true
displayAnonymousStats,GA,@grafana/identity-access-team,2023-11-29,false,false,false,true

1 Name Stage Owner Created requiresDevMode RequiresLicense RequiresRestart FrontendOnly
148 logRowsPopoverMenu experimental @grafana/observability-logs 2023-11-16 false false false true
149 pluginsSkipHostEnvVars experimental @grafana/plugins-platform-backend 2023-11-15 false false false false
150 regressionTransformation experimental @grafana/grafana-bi-squad 2023-11-24 false false false true
151 displayAnonymousStats experimental GA @grafana/identity-access-team 2023-11-29 false false false true