mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Jaeger: Add feature toggle for backend migration (#96494)
* add feature toggle for jaeger backend migration * add codeowners
This commit is contained in:
@@ -1637,6 +1637,12 @@ var (
|
||||
Owner: grafanaObservabilityTracesAndProfilingSquad,
|
||||
FrontendOnly: true,
|
||||
},
|
||||
{
|
||||
Name: "jaegerBackendMigration",
|
||||
Description: "Enables querying the Jaeger data source without the proxy",
|
||||
Stage: FeatureStageExperimental,
|
||||
Owner: grafanaOSSBigTent,
|
||||
},
|
||||
{
|
||||
Name: "reportingUseRawTimeRange",
|
||||
Description: "Uses the original report or dashboard time range instead of making an absolute transformation",
|
||||
|
||||
@@ -218,4 +218,5 @@ enableExtensionsAdminPage,experimental,@grafana/plugins-platform-backend,false,t
|
||||
zipkinBackendMigration,experimental,@grafana/oss-big-tent,false,false,false
|
||||
enableSCIM,experimental,@grafana/identity-access-team,false,false,false
|
||||
crashDetection,experimental,@grafana/observability-traces-and-profiling,false,false,true
|
||||
jaegerBackendMigration,experimental,@grafana/oss-big-tent,false,false,false
|
||||
reportingUseRawTimeRange,preview,@grafana/sharing-squad,false,false,false
|
||||
|
||||
|
@@ -883,6 +883,10 @@ const (
|
||||
// Enables browser crash detection reporting to Faro.
|
||||
FlagCrashDetection = "crashDetection"
|
||||
|
||||
// FlagJaegerBackendMigration
|
||||
// Enables querying the Jaeger data source without the proxy
|
||||
FlagJaegerBackendMigration = "jaegerBackendMigration"
|
||||
|
||||
// FlagReportingUseRawTimeRange
|
||||
// Uses the original report or dashboard time range instead of making an absolute transformation
|
||||
FlagReportingUseRawTimeRange = "reportingUseRawTimeRange"
|
||||
|
||||
@@ -1741,6 +1741,18 @@
|
||||
"codeowner": "@grafana/observability-metrics"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"name": "jaegerBackendMigration",
|
||||
"resourceVersion": "1731599633815",
|
||||
"creationTimestamp": "2024-11-14T15:53:53Z"
|
||||
},
|
||||
"spec": {
|
||||
"description": "Enables querying the Jaeger data source without the proxy",
|
||||
"stage": "experimental",
|
||||
"codeowner": "@grafana/oss-big-tent"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"name": "jitterAlertRulesWithinGroups",
|
||||
|
||||
1
pkg/tsdb/jaeger/plugin.go
Normal file
1
pkg/tsdb/jaeger/plugin.go
Normal file
@@ -0,0 +1 @@
|
||||
package jaeger
|
||||
Reference in New Issue
Block a user