mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Anon: Enable anon stats by default (#79312)
* enable anon stats by default * update flag
This commit is contained in:
parent
2447e90be9
commit
ce79bbba87
@ -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 |
|
| `prometheusConfigOverhaulAuth` | Update the Prometheus configuration page with the new auth component | Yes |
|
||||||
| `alertingInsights` | Show the new alerting insights landing page | Yes |
|
| `alertingInsights` | Show the new alerting insights landing page | Yes |
|
||||||
| `cloudWatchWildCardDimensionValues` | Fetches dimension values from CloudWatch to correctly label wildcard dimensions | 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
|
## 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 |
|
| `logRowsPopoverMenu` | Enable filtering menu displayed when text of a log line is selected |
|
||||||
| `pluginsSkipHostEnvVars` | Disables passing host environment variable to plugin processes |
|
| `pluginsSkipHostEnvVars` | Disables passing host environment variable to plugin processes |
|
||||||
| `regressionTransformation` | Enables regression analysis transformation |
|
| `regressionTransformation` | Enables regression analysis transformation |
|
||||||
| `displayAnonymousStats` | Enables anonymous stats to be shown in the UI for Grafana |
|
|
||||||
|
|
||||||
## Development feature toggles
|
## Development feature toggles
|
||||||
|
|
||||||
|
@ -1251,12 +1251,14 @@ var (
|
|||||||
Created: time.Date(2023, time.November, 24, 12, 0, 0, 0, time.UTC),
|
Created: time.Date(2023, time.November, 24, 12, 0, 0, 0, time.UTC),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Name: "displayAnonymousStats",
|
Name: "displayAnonymousStats",
|
||||||
Description: "Enables anonymous stats to be shown in the UI for Grafana",
|
Description: "Enables anonymous stats to be shown in the UI for Grafana",
|
||||||
Stage: FeatureStageExperimental,
|
Stage: FeatureStageGeneralAvailability,
|
||||||
FrontendOnly: true,
|
FrontendOnly: true,
|
||||||
Owner: identityAccessTeam,
|
Owner: identityAccessTeam,
|
||||||
Created: time.Date(2023, time.November, 29, 12, 0, 0, 0, time.UTC),
|
Created: time.Date(2023, time.November, 29, 12, 0, 0, 0, time.UTC),
|
||||||
|
AllowSelfServe: falsePtr,
|
||||||
|
Expression: "true", // enabled by default
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
@ -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
|
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
|
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
|
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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user