mirror of
https://github.com/grafana/grafana.git
synced 2025-09-17 06:44:39 +08:00
GenAI: Autogenerate title and description for panels and dashboards (#84933)
This commit is contained in:
@ -46,6 +46,7 @@ Some features are enabled by default. You can disable these feature by setting t
|
|||||||
| `influxdbSqlSupport` | Enable InfluxDB SQL query language support with new querying UI | Yes |
|
| `influxdbSqlSupport` | Enable InfluxDB SQL query language support with new querying UI | Yes |
|
||||||
| `alertingNoDataErrorExecution` | Changes how Alerting state manager handles execution of NoData/Error | Yes |
|
| `alertingNoDataErrorExecution` | Changes how Alerting state manager handles execution of NoData/Error | Yes |
|
||||||
| `angularDeprecationUI` | Display Angular warnings in dashboards and panels | Yes |
|
| `angularDeprecationUI` | Display Angular warnings in dashboards and panels | Yes |
|
||||||
|
| `dashgpt` | Enable AI powered features in dashboards | Yes |
|
||||||
| `alertingInsights` | Show the new alerting insights landing page | Yes |
|
| `alertingInsights` | Show the new alerting insights landing page | Yes |
|
||||||
| `panelMonitoring` | Enables panel monitoring through logs and measurements | Yes |
|
| `panelMonitoring` | Enables panel monitoring through logs and measurements | Yes |
|
||||||
| `recoveryThreshold` | Enables feature recovery threshold (aka hysteresis) for threshold server-side expression | Yes |
|
| `recoveryThreshold` | Enables feature recovery threshold (aka hysteresis) for threshold server-side expression | Yes |
|
||||||
@ -80,7 +81,6 @@ Some features are enabled by default. You can disable these feature by setting t
|
|||||||
| `faroDatasourceSelector` | Enable the data source selector within the Frontend Apps section of the Frontend Observability |
|
| `faroDatasourceSelector` | Enable the data source selector within the Frontend Apps section of the Frontend Observability |
|
||||||
| `enableDatagridEditing` | Enables the edit functionality in the datagrid panel |
|
| `enableDatagridEditing` | Enables the edit functionality in the datagrid panel |
|
||||||
| `sqlDatasourceDatabaseSelection` | Enables previous SQL data source dataset dropdown behavior |
|
| `sqlDatasourceDatabaseSelection` | Enables previous SQL data source dataset dropdown behavior |
|
||||||
| `dashgpt` | Enable AI powered features in dashboards |
|
|
||||||
| `reportingRetries` | Enables rendering retries for the reporting feature |
|
| `reportingRetries` | Enables rendering retries for the reporting feature |
|
||||||
| `externalServiceAccounts` | Automatic service account and token setup for plugins |
|
| `externalServiceAccounts` | Automatic service account and token setup for plugins |
|
||||||
| `formatString` | Enable format string transformer |
|
| `formatString` | Enable format string transformer |
|
||||||
|
@ -657,9 +657,10 @@ var (
|
|||||||
{
|
{
|
||||||
Name: "dashgpt",
|
Name: "dashgpt",
|
||||||
Description: "Enable AI powered features in dashboards",
|
Description: "Enable AI powered features in dashboards",
|
||||||
Stage: FeatureStagePublicPreview,
|
Stage: FeatureStageGeneralAvailability,
|
||||||
FrontendOnly: true,
|
FrontendOnly: true,
|
||||||
Owner: grafanaDashboardsSquad,
|
Owner: grafanaDashboardsSquad,
|
||||||
|
Expression: "true", // enabled by default
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Name: "aiGeneratedDashboardChanges",
|
Name: "aiGeneratedDashboardChanges",
|
||||||
|
@ -86,7 +86,7 @@ configurableSchedulerTick,experimental,@grafana/alerting-squad,false,true,false
|
|||||||
influxdbSqlSupport,GA,@grafana/observability-metrics,false,true,false
|
influxdbSqlSupport,GA,@grafana/observability-metrics,false,true,false
|
||||||
alertingNoDataErrorExecution,GA,@grafana/alerting-squad,false,true,false
|
alertingNoDataErrorExecution,GA,@grafana/alerting-squad,false,true,false
|
||||||
angularDeprecationUI,GA,@grafana/plugins-platform-backend,false,false,true
|
angularDeprecationUI,GA,@grafana/plugins-platform-backend,false,false,true
|
||||||
dashgpt,preview,@grafana/dashboards-squad,false,false,true
|
dashgpt,GA,@grafana/dashboards-squad,false,false,true
|
||||||
aiGeneratedDashboardChanges,experimental,@grafana/dashboards-squad,false,false,true
|
aiGeneratedDashboardChanges,experimental,@grafana/dashboards-squad,false,false,true
|
||||||
reportingRetries,preview,@grafana/sharing-squad,false,true,false
|
reportingRetries,preview,@grafana/sharing-squad,false,true,false
|
||||||
sseGroupByDatasource,experimental,@grafana/observability-metrics,false,false,false
|
sseGroupByDatasource,experimental,@grafana/observability-metrics,false,false,false
|
||||||
|
|
@ -942,12 +942,15 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"name": "dashgpt",
|
"name": "dashgpt",
|
||||||
"resourceVersion": "1709648236447",
|
"resourceVersion": "1711038841830",
|
||||||
"creationTimestamp": "2024-03-05T14:17:16Z"
|
"creationTimestamp": "2024-03-05T14:17:16Z",
|
||||||
|
"annotations": {
|
||||||
|
"grafana.app/updatedTimestamp": "2024-03-21 16:34:01.830925 +0000 UTC"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"spec": {
|
"spec": {
|
||||||
"description": "Enable AI powered features in dashboards",
|
"description": "Enable AI powered features in dashboards",
|
||||||
"stage": "preview",
|
"stage": "GA",
|
||||||
"codeowner": "@grafana/dashboards-squad",
|
"codeowner": "@grafana/dashboards-squad",
|
||||||
"frontend": true
|
"frontend": true
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user