Dataplane: Support prometheus dataplane contract for transformations and name matchers (#65237)

Co-authored-by: Brendan O'Handley <brendan.ohandley@grafana.com>
This commit is contained in:
Ryan McKinley
2023-04-07 14:13:19 -07:00
committed by GitHub
parent 6ab7ed0f66
commit af31c77331
12 changed files with 259 additions and 8 deletions

View File

@@ -505,5 +505,12 @@ var (
State: FeatureStateAlpha,
Owner: grafanaObservabilityTracesAndProfilingSquad,
},
{
Name: "dataplaneFrontendFallback",
Description: "Support dataplane contract field name change for transformations and field name matchers where the name is different",
State: FeatureStateAlpha,
FrontendOnly: true,
Owner: grafanaObservabilityMetricsSquad,
},
}
)

View File

@@ -75,3 +75,4 @@ 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
dataplaneFrontendFallback,alpha,@grafana/observability-metrics,false,false,false,true
1 Name State Owner requiresDevMode RequiresLicense RequiresRestart FrontendOnly
75 unifiedRequestLog alpha @grafana/backend-platform false false false false
76 renderAuthJWT beta @grafana/grafana-as-code false false false false
77 pyroscopeFlameGraph alpha @grafana/observability-traces-and-profiling false false false false
78 dataplaneFrontendFallback alpha @grafana/observability-metrics false false false true

View File

@@ -310,4 +310,8 @@ const (
// FlagPyroscopeFlameGraph
// Changes flame graph to pyroscope one
FlagPyroscopeFlameGraph = "pyroscopeFlameGraph"
// FlagDataplaneFrontendFallback
// Support dataplane contract field name change for transformations and field name matchers where the name is different
FlagDataplaneFrontendFallback = "dataplaneFrontendFallback"
)