Anon: Enable anon stats by default (#79314)

* enable anon stats by default

* update docs

* update flag
This commit is contained in:
Jo
2023-12-11 15:16:38 +01:00
committed by GitHub
parent b82c013c5f
commit a13ef17fe1
3 changed files with 4 additions and 3 deletions
@@ -53,6 +53,7 @@ Some features are enabled by default. You can disable these feature by setting t
| `newBrowseDashboards` | New browse/manage dashboards UI | 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
@@ -151,7 +152,6 @@ Experimental features might be changed or removed without prior notice.
| `awsDatasourcesNewFormStyling` | Applies new form styling for configuration and query editors in AWS plugins |
| `cachingOptimizeSerializationMemoryUsage` | If enabled, the caching backend gradually serializes query responses for the cache, comparing against the configured `[caching]max_value_mb` value as it goes. This can can help prevent Grafana from running out of memory while attempting to cache very large query responses. |
| `pluginsInstrumentationStatusSource` | Include a status source label for plugin request metrics and logs |
| `displayAnonymousStats` | Enables anonymous stats to be shown in the UI for Grafana |
## Development feature toggles
+2 -1
View File
@@ -901,9 +901,10 @@ var (
{
Name: "displayAnonymousStats",
Description: "Enables anonymous stats to be shown in the UI for Grafana",
Stage: FeatureStageExperimental,
FrontendOnly: true,
Owner: grafanaAuthnzSquad,
Stage: FeatureStageGeneralAvailability,
Expression: "true", // enabled by default
},
}
)
+1 -1
View File
@@ -127,4 +127,4 @@ cachingOptimizeSerializationMemoryUsage,experimental,@grafana/grafana-operator-e
panelTitleSearchInV1,experimental,@grafana/backend-platform,true,false,false,false
pluginsInstrumentationStatusSource,experimental,@grafana/plugins-platform-backend,false,false,false,false
panelFilterVariable,experimental,@grafana/dashboards-squad,false,false,false,true
displayAnonymousStats,experimental,@grafana/grafana-authnz-team,false,false,false,true
displayAnonymousStats,GA,@grafana/grafana-authnz-team,false,false,false,true
1 Name Stage Owner requiresDevMode RequiresLicense RequiresRestart FrontendOnly
127 panelTitleSearchInV1 experimental @grafana/backend-platform true false false false
128 pluginsInstrumentationStatusSource experimental @grafana/plugins-platform-backend false false false false
129 panelFilterVariable experimental @grafana/dashboards-squad false false false true
130 displayAnonymousStats experimental GA @grafana/grafana-authnz-team false false false true