GenAI: Autogenerate title and description for panels and dashboards (#84933)

pull/84940/head^2
Ivan Ortega Alba 1 year ago committed by GitHub
parent 86afe012c5
commit 33f9e8554d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md
  2. 3
      pkg/services/featuremgmt/registry.go
  3. 2
      pkg/services/featuremgmt/toggles_gen.csv
  4. 9
      pkg/services/featuremgmt/toggles_gen.json

@ -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 |
| `alertingNoDataErrorExecution` | Changes how Alerting state manager handles execution of NoData/Error | 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 |
| `panelMonitoring` | Enables panel monitoring through logs and measurements | 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 |
| `enableDatagridEditing` | Enables the edit functionality in the datagrid panel |
| `sqlDatasourceDatabaseSelection` | Enables previous SQL data source dataset dropdown behavior |
| `dashgpt` | Enable AI powered features in dashboards |
| `reportingRetries` | Enables rendering retries for the reporting feature |
| `externalServiceAccounts` | Automatic service account and token setup for plugins |
| `formatString` | Enable format string transformer |

@ -657,9 +657,10 @@ var (
{
Name: "dashgpt",
Description: "Enable AI powered features in dashboards",
Stage: FeatureStagePublicPreview,
Stage: FeatureStageGeneralAvailability,
FrontendOnly: true,
Owner: grafanaDashboardsSquad,
Expression: "true", // enabled by default
},
{
Name: "aiGeneratedDashboardChanges",

@ -86,7 +86,7 @@ configurableSchedulerTick,experimental,@grafana/alerting-squad,false,true,false
influxdbSqlSupport,GA,@grafana/observability-metrics,false,true,false
alertingNoDataErrorExecution,GA,@grafana/alerting-squad,false,true,false
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
reportingRetries,preview,@grafana/sharing-squad,false,true,false
sseGroupByDatasource,experimental,@grafana/observability-metrics,false,false,false

1 Name Stage Owner requiresDevMode RequiresRestart FrontendOnly
86 influxdbSqlSupport GA @grafana/observability-metrics false true false
87 alertingNoDataErrorExecution GA @grafana/alerting-squad false true false
88 angularDeprecationUI GA @grafana/plugins-platform-backend false false true
89 dashgpt preview GA @grafana/dashboards-squad false false true
90 aiGeneratedDashboardChanges experimental @grafana/dashboards-squad false false true
91 reportingRetries preview @grafana/sharing-squad false true false
92 sseGroupByDatasource experimental @grafana/observability-metrics false false false

@ -942,12 +942,15 @@
{
"metadata": {
"name": "dashgpt",
"resourceVersion": "1709648236447",
"creationTimestamp": "2024-03-05T14:17:16Z"
"resourceVersion": "1711038841830",
"creationTimestamp": "2024-03-05T14:17:16Z",
"annotations": {
"grafana.app/updatedTimestamp": "2024-03-21 16:34:01.830925 +0000 UTC"
}
},
"spec": {
"description": "Enable AI powered features in dashboards",
"stage": "preview",
"stage": "GA",
"codeowner": "@grafana/dashboards-squad",
"frontend": true
}

Loading…
Cancel
Save