Correlations: Update feature toggle status to beta (#66390)

This commit is contained in:
Emil Tullstedt 2023-04-12 16:56:06 +02:00 committed by GitHub
parent 4e71c91cfd
commit e0385d08a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -44,6 +44,7 @@ Some stable features are enabled by default. You can disable a stable feature by
| `panelTitleSearch` | Search for dashboards using panel title |
| `prometheusAzureOverrideAudience` | Experimental. Allow override default AAD audience for Azure Prometheus endpoint |
| `migrationLocking` | Lock database during migrations |
| `correlations` | Correlations page |
| `newDBLibrary` | Use jmoiron/sqlx rather than xorm for a few backend services |
| `validateDashboardsOnSave` | Validate dashboard JSON POSTed to api/dashboards/db |
| `autoMigrateOldPanels` | Migrate old angular panels to supported versions (graph, table-old, worldmap, etc) |
@ -52,7 +53,6 @@ Some stable features are enabled by default. You can disable a stable feature by
| `accessControlOnCall` | Access control primitives for OnCall |
| `alertingNoNormalState` | Stop maintaining state of alerts that are not firing |
| `renderAuthJWT` | Uses JWT-based auth for rendering instead of relying on remote cache |
| `correlations` | Correlations page |
## Alpha feature toggles

View File

@ -126,7 +126,7 @@ var (
{
Name: "correlations",
Description: "Correlations page",
State: FeatureStateAlpha,
State: FeatureStateBeta,
Owner: grafanaExploreSquad,
},
{

View File

@ -17,7 +17,7 @@ storage,alpha,@grafana/grafana-app-platform-squad,false,false,false,false
k8s,alpha,@grafana/grafana-app-platform-squad,true,false,false,false
exploreMixedDatasource,alpha,@grafana/explore-squad,false,false,false,true
newTraceView,alpha,@grafana/observability-traces-and-profiling,false,false,false,true
correlations,alpha,@grafana/explore-squad,false,false,false,false
correlations,beta,@grafana/explore-squad,false,false,false,false
cloudWatchDynamicLabels,stable,@grafana/aws-plugins,false,false,false,false
datasourceQueryMultiStatus,alpha,@grafana/plugins-platform-backend,false,false,false,false
traceToMetrics,alpha,@grafana/observability-traces-and-profiling,false,false,false,true

1 Name State Owner requiresDevMode RequiresLicense RequiresRestart FrontendOnly
17 k8s alpha @grafana/grafana-app-platform-squad true false false false
18 exploreMixedDatasource alpha @grafana/explore-squad false false false true
19 newTraceView alpha @grafana/observability-traces-and-profiling false false false true
20 correlations alpha beta @grafana/explore-squad false false false false
21 cloudWatchDynamicLabels stable @grafana/aws-plugins false false false false
22 datasourceQueryMultiStatus alpha @grafana/plugins-platform-backend false false false false
23 traceToMetrics alpha @grafana/observability-traces-and-profiling false false false true