Tracing: Add trace to metrics config behind feature toggle (#46298)

* Add trace to metrics behind feature flag
This commit is contained in:
Connor Lindsey
2022-05-05 14:46:18 -06:00
committed by GitHub
parent 34fefa1d47
commit c1b5ea3e54
21 changed files with 635 additions and 273 deletions
+6
View File
@@ -248,5 +248,11 @@ var (
RequiresDevMode: true,
FrontendOnly: true,
},
{
Name: "traceToMetrics",
Description: "Enable trace to metrics links",
State: FeatureStateAlpha,
FrontendOnly: true,
},
}
)
+4
View File
@@ -182,4 +182,8 @@ const (
// FlagAzureMonitorExperimentalUI
// Use grafana-experimental UI in Azure Monitor
FlagAzureMonitorExperimentalUI = "azureMonitorExperimentalUI"
// FlagTraceToMetrics
// Enable trace to metrics links
FlagTraceToMetrics = "traceToMetrics"
)