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

* Notifications: Hide display of trace ID behind feature flag

(cherry picked from commit 3b4d237ade)

Co-authored-by: kay delaney <45561153+kaydelaney@users.noreply.github.com>
This commit is contained in:
Grot (@grafanabot)
2022-04-27 14:45:37 +01:00
committed by GitHub
co-authored by kay delaney
parent 23062ddab8
commit be8419b384
5 changed files with 18 additions and 2 deletions
+6
View File
@@ -207,6 +207,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",
+4
View File
@@ -155,6 +155,10 @@ const (
// Experimental Explore to Dashboard workflow
FlagExplore2Dashboard = "explore2Dashboard"
// FlagTracing
// Adds trace ID to error notifications
FlagTracing = "tracing"
// FlagPersistNotifications
// PoC Notifications page
FlagPersistNotifications = "persistNotifications"