Notifications: Hide display of trace ID behind feature flag (#48057)

* Notifications: Hide display of trace ID behind feature flag
This commit is contained in:
kay delaney
2022-04-26 14:31:27 +01:00
committed by GitHub
parent 4e6c3be7ab
commit 3b4d237ade
5 changed files with 18 additions and 2 deletions

View File

@@ -215,6 +215,12 @@ var (
State: FeatureStateBeta,
FrontendOnly: true,
},
{
Name: "tracing",
Description: "Adds trace ID to error notifications",
State: FeatureStateAlpha,
FrontendOnly: true,
},
{
Name: "persistNotifications",
Description: "PoC Notifications page",

View File

@@ -159,6 +159,10 @@ const (
// Experimental Explore to Dashboard workflow
FlagExplore2Dashboard = "explore2Dashboard"
// FlagTracing
// Adds trace ID to error notifications
FlagTracing = "tracing"
// FlagPersistNotifications
// PoC Notifications page
FlagPersistNotifications = "persistNotifications"