Skip to content

Commit ce79bbb

Browse files
authored
Anon: Enable anon stats by default (grafana#79312)
* enable anon stats by default * update flag
1 parent 2447e90 commit ce79bbb

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ Some features are enabled by default. You can disable these feature by setting t
5151
| `prometheusConfigOverhaulAuth` | Update the Prometheus configuration page with the new auth component | Yes |
5252
| `alertingInsights` | Show the new alerting insights landing page | Yes |
5353
| `cloudWatchWildCardDimensionValues` | Fetches dimension values from CloudWatch to correctly label wildcard dimensions | Yes |
54+
| `displayAnonymousStats` | Enables anonymous stats to be shown in the UI for Grafana | Yes |
5455

5556
## Preview feature toggles
5657

@@ -166,7 +167,6 @@ Experimental features might be changed or removed without prior notice.
166167
| `logRowsPopoverMenu` | Enable filtering menu displayed when text of a log line is selected |
167168
| `pluginsSkipHostEnvVars` | Disables passing host environment variable to plugin processes |
168169
| `regressionTransformation` | Enables regression analysis transformation |
169-
| `displayAnonymousStats` | Enables anonymous stats to be shown in the UI for Grafana |
170170

171171
## Development feature toggles
172172

pkg/services/featuremgmt/registry.go

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1251,12 +1251,14 @@ var (
12511251
Created: time.Date(2023, time.November, 24, 12, 0, 0, 0, time.UTC),
12521252
},
12531253
{
1254-
Name: "displayAnonymousStats",
1255-
Description: "Enables anonymous stats to be shown in the UI for Grafana",
1256-
Stage: FeatureStageExperimental,
1257-
FrontendOnly: true,
1258-
Owner: identityAccessTeam,
1259-
Created: time.Date(2023, time.November, 29, 12, 0, 0, 0, time.UTC),
1254+
Name: "displayAnonymousStats",
1255+
Description: "Enables anonymous stats to be shown in the UI for Grafana",
1256+
Stage: FeatureStageGeneralAvailability,
1257+
FrontendOnly: true,
1258+
Owner: identityAccessTeam,
1259+
Created: time.Date(2023, time.November, 29, 12, 0, 0, 0, time.UTC),
1260+
AllowSelfServe: falsePtr,
1261+
Expression: "true", // enabled by default
12601262
},
12611263
}
12621264
)

pkg/services/featuremgmt/toggles_gen.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,4 +148,4 @@ alertingSimplifiedRouting,experimental,@grafana/alerting-squad,2023-11-10,false,
148148
logRowsPopoverMenu,experimental,@grafana/observability-logs,2023-11-16,false,false,false,true
149149
pluginsSkipHostEnvVars,experimental,@grafana/plugins-platform-backend,2023-11-15,false,false,false,false
150150
regressionTransformation,experimental,@grafana/grafana-bi-squad,2023-11-24,false,false,false,true
151-
displayAnonymousStats,experimental,@grafana/identity-access-team,2023-11-29,false,false,false,true
151+
displayAnonymousStats,GA,@grafana/identity-access-team,2023-11-29,false,false,false,true

0 commit comments

Comments
 (0)