Dashboards: Remove no-datasource screen (#68574)

* Dashboards: Remove non-ds configured landing page

* Remove `datasourceOnboarding` feature toggle
This commit is contained in:
Ivan Ortega Alba
2023-05-17 14:22:40 +02:00
committed by GitHub
parent 5f84dad7e4
commit 1505a188eb
9 changed files with 1 additions and 340 deletions

View File

@@ -277,12 +277,6 @@ var (
State: FeatureStateAlpha,
Owner: grafanaObservabilityLogsSquad,
},
{
Name: "datasourceOnboarding",
Description: "Enable data source onboarding page",
State: FeatureStateAlpha,
Owner: grafanaDashboardsSquad,
},
{
Name: "emptyDashboardPage",
Description: "Enable the redesigned user interface of a dashboard page that includes no panels",

View File

@@ -40,7 +40,6 @@ accessControlOnCall,beta,@grafana/grafana-authnz-team,false,false,false,false
nestedFolders,beta,@grafana/backend-platform,false,false,false,false
accessTokenExpirationCheck,stable,@grafana/grafana-authnz-team,false,false,false,false
showTraceId,alpha,@grafana/observability-logs,false,false,false,false
datasourceOnboarding,alpha,@grafana/dashboards-squad,false,false,false,false
emptyDashboardPage,stable,@grafana/dashboards-squad,false,false,false,true
authnService,alpha,@grafana/grafana-authnz-team,false,false,false,false
disablePrometheusExemplarSampling,stable,@grafana/observability-metrics,false,false,false,false
1 Name State Owner requiresDevMode RequiresLicense RequiresRestart FrontendOnly
40 nestedFolders beta @grafana/backend-platform false false false false
41 accessTokenExpirationCheck stable @grafana/grafana-authnz-team false false false false
42 showTraceId alpha @grafana/observability-logs false false false false
datasourceOnboarding alpha @grafana/dashboards-squad false false false false
43 emptyDashboardPage stable @grafana/dashboards-squad false false false true
44 authnService alpha @grafana/grafana-authnz-team false false false false
45 disablePrometheusExemplarSampling stable @grafana/observability-metrics false false false false

View File

@@ -171,10 +171,6 @@ const (
// Show trace ids for requests
FlagShowTraceId = "showTraceId"
// FlagDatasourceOnboarding
// Enable data source onboarding page
FlagDatasourceOnboarding = "datasourceOnboarding"
// FlagEmptyDashboardPage
// Enable the redesigned user interface of a dashboard page that includes no panels
FlagEmptyDashboardPage = "emptyDashboardPage"