FlameGraph: Use pyroscope/flamegraph (#65896)

This commit is contained in:
Andrej Ocenas
2023-04-05 14:57:24 +02:00
committed by GitHub
parent a39190b613
commit 37eaf50197
10 changed files with 158 additions and 3 deletions
+6
View File
@@ -505,5 +505,11 @@ var (
State: FeatureStateBeta,
Owner: grafanaAsCodeSquad,
},
{
Name: "pyroscopeFlameGraph",
Description: "Changes flame graph to pyroscope one",
State: FeatureStateAlpha,
Owner: grafanaObservabilityTracesAndProfilingSquad,
},
}
)
+1
View File
@@ -75,3 +75,4 @@ alertStateHistoryLokiPrimary,alpha,@grafana/alerting-squad,false,false,false,fal
alertStateHistoryLokiOnly,alpha,@grafana/alerting-squad,false,false,false,false
unifiedRequestLog,alpha,@grafana/backend-platform,false,false,false,false
renderAuthJWT,beta,@grafana/grafana-as-code,false,false,false,false
pyroscopeFlameGraph,alpha,@grafana/observability-traces-and-profiling,false,false,false,false
1 Name State Owner requiresDevMode RequiresLicense RequiresRestart FrontendOnly
75 alertStateHistoryLokiOnly alpha @grafana/alerting-squad false false false false
76 unifiedRequestLog alpha @grafana/backend-platform false false false false
77 renderAuthJWT beta @grafana/grafana-as-code false false false false
78 pyroscopeFlameGraph alpha @grafana/observability-traces-and-profiling false false false false
+4
View File
@@ -310,4 +310,8 @@ const (
// FlagRenderAuthJWT
// Uses JWT-based auth for rendering instead of relying on remote cache
FlagRenderAuthJWT = "renderAuthJWT"
// FlagPyroscopeFlameGraph
// Changes flame graph to pyroscope one
FlagPyroscopeFlameGraph = "pyroscopeFlameGraph"
)