mirror of
https://github.com/grafana/grafana.git
synced 2024-12-23 07:34:08 -06:00
Jaeger: Add feature toggle for backend migration (#96494)
* add feature toggle for jaeger backend migration * add codeowners
This commit is contained in:
parent
cc6d057a18
commit
cc1d76fc0a
1
.github/CODEOWNERS
vendored
1
.github/CODEOWNERS
vendored
@ -278,6 +278,7 @@
|
||||
/pkg/tsdb/mysql/ @grafana/oss-big-tent
|
||||
/pkg/tsdb/grafana-postgresql-datasource/ @grafana/oss-big-tent
|
||||
/pkg/tsdb/zipkin/ @grafana/oss-big-tent
|
||||
/pkg/tsdb/jaeger/ @grafana/oss-big-tent
|
||||
|
||||
# Partner Datasources backend code
|
||||
/pkg/tsdb/mssql/ @grafana/partner-datasources
|
||||
|
@ -223,6 +223,7 @@ Experimental features might be changed or removed without prior notice.
|
||||
| `zipkinBackendMigration` | Enables querying Zipkin data source without the proxy |
|
||||
| `enableSCIM` | Enables SCIM support for user and group management |
|
||||
| `crashDetection` | Enables browser crash detection reporting to Faro. |
|
||||
| `jaegerBackendMigration` | Enables querying the Jaeger data source without the proxy |
|
||||
|
||||
## Development feature toggles
|
||||
|
||||
|
@ -237,5 +237,6 @@ export interface FeatureToggles {
|
||||
zipkinBackendMigration?: boolean;
|
||||
enableSCIM?: boolean;
|
||||
crashDetection?: boolean;
|
||||
jaegerBackendMigration?: boolean;
|
||||
reportingUseRawTimeRange?: boolean;
|
||||
}
|
||||
|
@ -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
|
Loading…
Reference in New Issue
Block a user