mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
featuremgmt: add internal testing feature flag (#74873)
Signed-off-by: bergquist <carl.bergquist@gmail.com>
This commit is contained in:
@@ -133,6 +133,7 @@ Experimental features might be changed or removed without prior notice.
|
|||||||
| `dashgpt` | Enable AI powered features in dashboards |
|
| `dashgpt` | Enable AI powered features in dashboards |
|
||||||
| `sseGroupByDatasource` | Send query to the same datasource in a single request when using server side expressions |
|
| `sseGroupByDatasource` | Send query to the same datasource in a single request when using server side expressions |
|
||||||
| `requestInstrumentationStatusSource` | Include a status source label for request metrics and logs |
|
| `requestInstrumentationStatusSource` | Include a status source label for request metrics and logs |
|
||||||
|
| `wargamesTesting` | Placeholder feature flag for internal testing |
|
||||||
|
|
||||||
## Development feature toggles
|
## Development feature toggles
|
||||||
|
|
||||||
|
|||||||
@@ -123,4 +123,5 @@ export interface FeatureToggles {
|
|||||||
newBrowseDashboards?: boolean;
|
newBrowseDashboards?: boolean;
|
||||||
sseGroupByDatasource?: boolean;
|
sseGroupByDatasource?: boolean;
|
||||||
requestInstrumentationStatusSource?: boolean;
|
requestInstrumentationStatusSource?: boolean;
|
||||||
|
wargamesTesting?: boolean;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -730,5 +730,12 @@ var (
|
|||||||
FrontendOnly: false,
|
FrontendOnly: false,
|
||||||
Owner: grafanaPluginsPlatformSquad,
|
Owner: grafanaPluginsPlatformSquad,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
Name: "wargamesTesting",
|
||||||
|
Description: "Placeholder feature flag for internal testing",
|
||||||
|
Stage: FeatureStageExperimental,
|
||||||
|
FrontendOnly: false,
|
||||||
|
Owner: hostedGrafanaTeam,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -104,3 +104,4 @@ reportingRetries,preview,@grafana/sharing-squad,false,false,true,false
|
|||||||
newBrowseDashboards,preview,@grafana/grafana-frontend-platform,false,false,false,true
|
newBrowseDashboards,preview,@grafana/grafana-frontend-platform,false,false,false,true
|
||||||
sseGroupByDatasource,experimental,@grafana/observability-metrics,false,false,false,false
|
sseGroupByDatasource,experimental,@grafana/observability-metrics,false,false,false,false
|
||||||
requestInstrumentationStatusSource,experimental,@grafana/plugins-platform-backend,false,false,false,false
|
requestInstrumentationStatusSource,experimental,@grafana/plugins-platform-backend,false,false,false,false
|
||||||
|
wargamesTesting,experimental,@grafana/hosted-grafana-team,false,false,false,false
|
||||||
|
|||||||
|
@@ -426,4 +426,8 @@ const (
|
|||||||
// FlagRequestInstrumentationStatusSource
|
// FlagRequestInstrumentationStatusSource
|
||||||
// Include a status source label for request metrics and logs
|
// Include a status source label for request metrics and logs
|
||||||
FlagRequestInstrumentationStatusSource = "requestInstrumentationStatusSource"
|
FlagRequestInstrumentationStatusSource = "requestInstrumentationStatusSource"
|
||||||
|
|
||||||
|
// FlagWargamesTesting
|
||||||
|
// Placeholder feature flag for internal testing
|
||||||
|
FlagWargamesTesting = "wargamesTesting"
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user