mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Chore: Create dashgpt
feature flag (#73971)
This commit is contained in:
parent
64652a981c
commit
2f4fbf89ca
@ -131,6 +131,7 @@ Experimental features might be changed or removed without prior notice.
|
||||
| `influxdbSqlSupport` | Enable InfluxDB SQL query language support with new querying UI |
|
||||
| `noBasicRole` | Enables a new role that has no permissions by default |
|
||||
| `angularDeprecationUI` | Display new Angular deprecation-related UI features |
|
||||
| `dashgpt` | Enable AI powered features in dashboards |
|
||||
|
||||
## Development feature toggles
|
||||
|
||||
|
@ -121,4 +121,5 @@ export interface FeatureToggles {
|
||||
noBasicRole?: boolean;
|
||||
alertingNoDataErrorExecution?: boolean;
|
||||
angularDeprecationUI?: boolean;
|
||||
dashgpt?: boolean;
|
||||
}
|
||||
|
@ -715,5 +715,12 @@ var (
|
||||
FrontendOnly: true,
|
||||
Owner: grafanaPluginsPlatformSquad,
|
||||
},
|
||||
{
|
||||
Name: "dashgpt",
|
||||
Description: "Enable AI powered features in dashboards",
|
||||
Stage: FeatureStageExperimental,
|
||||
FrontendOnly: true,
|
||||
Owner: grafanaDashboardsSquad,
|
||||
},
|
||||
}
|
||||
)
|
||||
|
@ -102,3 +102,4 @@ influxdbSqlSupport,experimental,@grafana/observability-metrics,false,false,false
|
||||
noBasicRole,experimental,@grafana/grafana-authnz-team,false,false,true,true
|
||||
alertingNoDataErrorExecution,privatePreview,@grafana/alerting-squad,false,false,true,false
|
||||
angularDeprecationUI,experimental,@grafana/plugins-platform-backend,false,false,false,true
|
||||
dashgpt,experimental,@grafana/dashboards-squad,false,false,false,true
|
||||
|
|
@ -418,4 +418,8 @@ const (
|
||||
// FlagAngularDeprecationUI
|
||||
// Display new Angular deprecation-related UI features
|
||||
FlagAngularDeprecationUI = "angularDeprecationUI"
|
||||
|
||||
// FlagDashgpt
|
||||
// Enable AI powered features in dashboards
|
||||
FlagDashgpt = "dashgpt"
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user