mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
featuremgmt: add internal testing feature flag (#74873)
Signed-off-by: bergquist <carl.bergquist@gmail.com>
This commit is contained in:
parent
35e488b22b
commit
2d8f5c1488
@ -133,6 +133,7 @@ Experimental features might be changed or removed without prior notice.
|
||||
| `dashgpt` | Enable AI powered features in dashboards |
|
||||
| `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 |
|
||||
| `wargamesTesting` | Placeholder feature flag for internal testing |
|
||||
|
||||
## Development feature toggles
|
||||
|
||||
|
@ -123,4 +123,5 @@ export interface FeatureToggles {
|
||||
newBrowseDashboards?: boolean;
|
||||
sseGroupByDatasource?: boolean;
|
||||
requestInstrumentationStatusSource?: boolean;
|
||||
wargamesTesting?: boolean;
|
||||
}
|
||||
|
@ -730,5 +730,12 @@ var (
|
||||
FrontendOnly: false,
|
||||
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
|
||||
sseGroupByDatasource,experimental,@grafana/observability-metrics,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
|
||||
// Include a status source label for request metrics and logs
|
||||
FlagRequestInstrumentationStatusSource = "requestInstrumentationStatusSource"
|
||||
|
||||
// FlagWargamesTesting
|
||||
// Placeholder feature flag for internal testing
|
||||
FlagWargamesTesting = "wargamesTesting"
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user