Plugins: Enable feature toggles for long running queries by deafult (#70678)

This commit is contained in:
Ida Štambuk 2023-06-28 15:42:02 +02:00 committed by GitHub
parent 519e840f97
commit 05b997f3d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 10 deletions

View File

@ -27,6 +27,8 @@ Some features are enabled by default. You can disable these feature by setting t
| `dataConnectionsConsole` | Enables a new top-level page called Connections. This page is an experiment that provides a better experience when you install and configure data sources and other plugins. | Yes |
| `topnav` | Enables new top navigation and page layouts | Yes |
| `cloudWatchCrossAccountQuerying` | Enables cross-account querying in CloudWatch datasources | Yes |
| `redshiftAsyncQueryDataSupport` | Enable async query data support for Redshift | Yes |
| `athenaAsyncQueryDataSupport` | Enable async query data support for Athena | Yes |
| `newPanelChromeUI` | Show updated look and feel of grafana-ui PanelChrome: panel header, icons, and menu | Yes |
| `accessTokenExpirationCheck` | Enable OAuth access_token expiration check and token refresh using the refresh_token | |
| `emptyDashboardPage` | Enable the redesigned user interface of a dashboard page that includes no panels | Yes |
@ -86,8 +88,6 @@ Experimental features might be changed or removed without prior notice.
| `scenes` | Experimental framework to build interactive dashboards |
| `disableSecretsCompatibility` | Disable duplicated secret storage in legacy tables |
| `logRequestsInstrumentedAsUnknown` | Logs the path for requests that are instrumented as unknown |
| `redshiftAsyncQueryDataSupport` | Enable async query data support for Redshift |
| `athenaAsyncQueryDataSupport` | Enable async query data support for Athena |
| `showDashboardValidationWarnings` | Show warnings when dashboards do not validate against the schema |
| `mysqlAnsiQuotes` | Use double quotes to escape keyword in a MySQL query |
| `nestedFolderPicker` | Enables the still in-development new folder picker to support nested folders |

View File

@ -214,16 +214,17 @@ var (
Owner: awsPluginsSquad,
},
{
Name: "redshiftAsyncQueryDataSupport",
Description: "Enable async query data support for Redshift",
Stage: FeatureStageExperimental,
FrontendOnly: true,
Owner: awsPluginsSquad,
Name: "redshiftAsyncQueryDataSupport",
Description: "Enable async query data support for Redshift",
Stage: FeatureStageGeneralAvailability,
Expression: "true", // enabled by default
Owner: awsPluginsSquad,
},
{
Name: "athenaAsyncQueryDataSupport",
Description: "Enable async query data support for Athena",
Stage: FeatureStageExperimental,
Stage: FeatureStageGeneralAvailability,
Expression: "true", // enabled by default
FrontendOnly: true,
Owner: awsPluginsSquad,
},

View File

@ -30,8 +30,8 @@ topnav,GA,@grafana/grafana-frontend-platform,false,false,false,false
grpcServer,preview,@grafana/grafana-app-platform-squad,false,false,false,false
entityStore,experimental,@grafana/grafana-app-platform-squad,true,false,false,false
cloudWatchCrossAccountQuerying,GA,@grafana/aws-plugins,false,false,false,false
redshiftAsyncQueryDataSupport,experimental,@grafana/aws-plugins,false,false,false,true
athenaAsyncQueryDataSupport,experimental,@grafana/aws-plugins,false,false,false,true
redshiftAsyncQueryDataSupport,GA,@grafana/aws-plugins,false,false,false,false
athenaAsyncQueryDataSupport,GA,@grafana/aws-plugins,false,false,false,true
newPanelChromeUI,GA,@grafana/dashboards-squad,false,false,false,true
showDashboardValidationWarnings,experimental,@grafana/dashboards-squad,false,false,false,false
mysqlAnsiQuotes,experimental,@grafana/backend-platform,false,false,false,false

1 Name Stage Owner requiresDevMode RequiresLicense RequiresRestart FrontendOnly
30 grpcServer preview @grafana/grafana-app-platform-squad false false false false
31 entityStore experimental @grafana/grafana-app-platform-squad true false false false
32 cloudWatchCrossAccountQuerying GA @grafana/aws-plugins false false false false
33 redshiftAsyncQueryDataSupport experimental GA @grafana/aws-plugins false false false true false
34 athenaAsyncQueryDataSupport experimental GA @grafana/aws-plugins false false false true
35 newPanelChromeUI GA @grafana/dashboards-squad false false false true
36 showDashboardValidationWarnings experimental @grafana/dashboards-squad false false false false
37 mysqlAnsiQuotes experimental @grafana/backend-platform false false false false