Toggle transformationsRedesign for prod (#72207)

* Toggle transformationsRedesign for prod
This commit is contained in:
Ludovic Viaud 2023-07-26 14:08:46 +02:00 committed by GitHub
parent 876f96e5e8
commit f629698876
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View File

@ -43,6 +43,7 @@ Some features are enabled by default. You can disable these feature by setting t
| `alertingNotificationsPoliciesMatchingInstances` | Enables the preview of matching instances for notification policies | Yes | | `alertingNotificationsPoliciesMatchingInstances` | Enables the preview of matching instances for notification policies | Yes |
| `useCachingService` | When turned on, the new query and resource caching implementation using a wire service inject will be used in place of the previous middleware implementation | | | `useCachingService` | When turned on, the new query and resource caching implementation using a wire service inject will be used in place of the previous middleware implementation | |
| `advancedDataSourcePicker` | Enable a new data source picker with contextual information, recently used order and advanced mode | Yes | | `advancedDataSourcePicker` | Enable a new data source picker with contextual information, recently used order and advanced mode | Yes |
| `transformationsRedesign` | Enables the transformations redesign | Yes |
| `azureMonitorDataplane` | Adds dataplane compliant frame metadata in the Azure Monitor datasource | Yes | | `azureMonitorDataplane` | Adds dataplane compliant frame metadata in the Azure Monitor datasource | Yes |
## Preview feature toggles ## Preview feature toggles
@ -121,7 +122,6 @@ Experimental features might be changed or removed without prior notice.
| `prometheusIncrementalQueryInstrumentation` | Adds RudderStack events to incremental queries | | `prometheusIncrementalQueryInstrumentation` | Adds RudderStack events to incremental queries |
| `logsExploreTableVisualisation` | A table visualisation for logs in Explore | | `logsExploreTableVisualisation` | A table visualisation for logs in Explore |
| `awsDatasourcesTempCredentials` | Support temporary security credentials in AWS plugins for Grafana Cloud customers | | `awsDatasourcesTempCredentials` | Support temporary security credentials in AWS plugins for Grafana Cloud customers |
| `transformationsRedesign` | Enables the transformations redesign |
| `toggleLabelsInLogsUI` | Enable toggleable filters in log details view | | `toggleLabelsInLogsUI` | Enable toggleable filters in log details view |
| `mlExpressions` | Enable support for Machine Learning in server-side expressions | | `mlExpressions` | Enable support for Machine Learning in server-side expressions |
| `disableTraceQLStreaming` | Disables the option to stream the response of TraceQL queries of the Tempo data source | | `disableTraceQLStreaming` | Disables the option to stream the response of TraceQL queries of the Tempo data source |

View File

@ -613,8 +613,9 @@ var (
{ {
Name: "transformationsRedesign", Name: "transformationsRedesign",
Description: "Enables the transformations redesign", Description: "Enables the transformations redesign",
Stage: FeatureStageExperimental, Stage: FeatureStageGeneralAvailability,
FrontendOnly: true, FrontendOnly: true,
Expression: "true", // enabled by default
Owner: grafanaObservabilityMetricsSquad, Owner: grafanaObservabilityMetricsSquad,
}, },
{ {

View File

@ -88,7 +88,7 @@ vizAndWidgetSplit,experimental,@grafana/dashboards-squad,false,false,false,true
prometheusIncrementalQueryInstrumentation,experimental,@grafana/observability-metrics,false,false,false,true prometheusIncrementalQueryInstrumentation,experimental,@grafana/observability-metrics,false,false,false,true
logsExploreTableVisualisation,experimental,@grafana/observability-logs,false,false,false,true logsExploreTableVisualisation,experimental,@grafana/observability-logs,false,false,false,true
awsDatasourcesTempCredentials,experimental,@grafana/aws-datasources,false,false,false,false awsDatasourcesTempCredentials,experimental,@grafana/aws-datasources,false,false,false,false
transformationsRedesign,experimental,@grafana/observability-metrics,false,false,false,true transformationsRedesign,GA,@grafana/observability-metrics,false,false,false,true
toggleLabelsInLogsUI,experimental,@grafana/observability-logs,false,false,false,true toggleLabelsInLogsUI,experimental,@grafana/observability-logs,false,false,false,true
mlExpressions,experimental,@grafana/alerting-squad,false,false,false,false mlExpressions,experimental,@grafana/alerting-squad,false,false,false,false
disableTraceQLStreaming,experimental,@grafana/observability-traces-and-profiling,false,false,false,true disableTraceQLStreaming,experimental,@grafana/observability-traces-and-profiling,false,false,false,true

1 Name Stage Owner requiresDevMode RequiresLicense RequiresRestart FrontendOnly
88 prometheusIncrementalQueryInstrumentation experimental @grafana/observability-metrics false false false true
89 logsExploreTableVisualisation experimental @grafana/observability-logs false false false true
90 awsDatasourcesTempCredentials experimental @grafana/aws-datasources false false false false
91 transformationsRedesign experimental GA @grafana/observability-metrics false false false true
92 toggleLabelsInLogsUI experimental @grafana/observability-logs false false false true
93 mlExpressions experimental @grafana/alerting-squad false false false false
94 disableTraceQLStreaming experimental @grafana/observability-traces-and-profiling false false false true