Traces: Enable showing trace ids (#71950)

* traces: enable showing trace ids by default

* removed unused imports
This commit is contained in:
Gábor Farkas
2023-07-20 07:59:38 +02:00
committed by GitHub
parent 16562faea6
commit 2c82a6b6c4
8 changed files with 3 additions and 21 deletions
-6
View File
@@ -251,12 +251,6 @@ var (
Stage: FeatureStageGeneralAvailability,
Owner: grafanaAuthnzSquad,
},
{
Name: "showTraceId",
Description: "Show trace ids for requests",
Stage: FeatureStageExperimental,
Owner: grafanaObservabilityLogsSquad,
},
{
Name: "emptyDashboardPage",
Description: "Enable the redesigned user interface of a dashboard page that includes no panels",
-1
View File
@@ -36,7 +36,6 @@ accessControlOnCall,preview,@grafana/grafana-authnz-team,false,false,false,false
nestedFolders,preview,@grafana/backend-platform,false,false,false,false
nestedFolderPicker,experimental,@grafana/grafana-frontend-platform,false,false,false,false
accessTokenExpirationCheck,GA,@grafana/grafana-authnz-team,false,false,false,false
showTraceId,experimental,@grafana/observability-logs,false,false,false,false
emptyDashboardPage,GA,@grafana/dashboards-squad,false,false,false,true
disablePrometheusExemplarSampling,GA,@grafana/observability-metrics,false,false,false,false
alertingBacktesting,experimental,@grafana/alerting-squad,false,false,false,false
1 Name Stage Owner requiresDevMode RequiresLicense RequiresRestart FrontendOnly
36 nestedFolders preview @grafana/backend-platform false false false false
37 nestedFolderPicker experimental @grafana/grafana-frontend-platform false false false false
38 accessTokenExpirationCheck GA @grafana/grafana-authnz-team false false false false
showTraceId experimental @grafana/observability-logs false false false false
39 emptyDashboardPage GA @grafana/dashboards-squad false false false true
40 disablePrometheusExemplarSampling GA @grafana/observability-metrics false false false false
41 alertingBacktesting experimental @grafana/alerting-squad false false false false
-4
View File
@@ -155,10 +155,6 @@ const (
// Enable OAuth access_token expiration check and token refresh using the refresh_token
FlagAccessTokenExpirationCheck = "accessTokenExpirationCheck"
// FlagShowTraceId
// Show trace ids for requests
FlagShowTraceId = "showTraceId"
// FlagEmptyDashboardPage
// Enable the redesigned user interface of a dashboard page that includes no panels
FlagEmptyDashboardPage = "emptyDashboardPage"