mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Transformations: Promote group to nested table as generally available (#90253)
This commit is contained in:
parent
2bb66209ca
commit
3ca7976ee5
@ -61,6 +61,7 @@ Most [generally available](https://grafana.com/docs/release-life-cycle/#general-
|
|||||||
| `logRowsPopoverMenu` | Enable filtering menu displayed when text of a log line is selected | Yes |
|
| `logRowsPopoverMenu` | Enable filtering menu displayed when text of a log line is selected | Yes |
|
||||||
| `lokiQueryHints` | Enables query hints for Loki | Yes |
|
| `lokiQueryHints` | Enables query hints for Loki | Yes |
|
||||||
| `alertingQueryOptimization` | Optimizes eligible queries in order to reduce load on datasources | |
|
| `alertingQueryOptimization` | Optimizes eligible queries in order to reduce load on datasources | |
|
||||||
|
| `groupToNestedTableTransformation` | Enables the group to nested table transformation | Yes |
|
||||||
| `cloudWatchNewLabelParsing` | Updates CloudWatch label parsing to be more accurate | Yes |
|
| `cloudWatchNewLabelParsing` | Updates CloudWatch label parsing to be more accurate | Yes |
|
||||||
| `pluginProxyPreserveTrailingSlash` | Preserve plugin proxy trailing slash. | |
|
| `pluginProxyPreserveTrailingSlash` | Preserve plugin proxy trailing slash. | |
|
||||||
| `cloudWatchRoundUpEndTime` | Round up end time for metric queries to the next minute to avoid missing data | Yes |
|
| `cloudWatchRoundUpEndTime` | Round up end time for metric queries to the next minute to avoid missing data | Yes |
|
||||||
@ -97,7 +98,6 @@ Most [generally available](https://grafana.com/docs/release-life-cycle/#general-
|
|||||||
| `pdfTables` | Enables generating table data as PDF in reporting |
|
| `pdfTables` | Enables generating table data as PDF in reporting |
|
||||||
| `canvasPanelPanZoom` | Allow pan and zoom in canvas panel |
|
| `canvasPanelPanZoom` | Allow pan and zoom in canvas panel |
|
||||||
| `regressionTransformation` | Enables regression analysis transformation |
|
| `regressionTransformation` | Enables regression analysis transformation |
|
||||||
| `groupToNestedTableTransformation` | Enables the group to nested table transformation |
|
|
||||||
| `newPDFRendering` | New implementation for the dashboard-to-PDF rendering |
|
| `newPDFRendering` | New implementation for the dashboard-to-PDF rendering |
|
||||||
| `ssoSettingsSAML` | Use the new SSO Settings API to configure the SAML connector |
|
| `ssoSettingsSAML` | Use the new SSO Settings API to configure the SAML connector |
|
||||||
| `openSearchBackendFlowEnabled` | Enables the backend query flow for Open Search datasource plugin |
|
| `openSearchBackendFlowEnabled` | Enables the backend query flow for Open Search datasource plugin |
|
||||||
|
@ -1070,9 +1070,10 @@ var (
|
|||||||
{
|
{
|
||||||
Name: "groupToNestedTableTransformation",
|
Name: "groupToNestedTableTransformation",
|
||||||
Description: "Enables the group to nested table transformation",
|
Description: "Enables the group to nested table transformation",
|
||||||
Stage: FeatureStagePublicPreview,
|
Stage: FeatureStageGeneralAvailability,
|
||||||
FrontendOnly: true,
|
FrontendOnly: true,
|
||||||
Owner: grafanaDatavizSquad,
|
Owner: grafanaDatavizSquad,
|
||||||
|
Expression: "true", // enabled by default,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Name: "newPDFRendering",
|
Name: "newPDFRendering",
|
||||||
|
@ -141,7 +141,7 @@ alertingSaveStatePeriodic,privatePreview,@grafana/alerting-squad,false,false,fal
|
|||||||
promQLScope,experimental,@grafana/observability-metrics,false,false,false
|
promQLScope,experimental,@grafana/observability-metrics,false,false,false
|
||||||
sqlExpressions,experimental,@grafana/grafana-app-platform-squad,false,false,false
|
sqlExpressions,experimental,@grafana/grafana-app-platform-squad,false,false,false
|
||||||
nodeGraphDotLayout,experimental,@grafana/observability-traces-and-profiling,false,false,true
|
nodeGraphDotLayout,experimental,@grafana/observability-traces-and-profiling,false,false,true
|
||||||
groupToNestedTableTransformation,preview,@grafana/dataviz-squad,false,false,true
|
groupToNestedTableTransformation,GA,@grafana/dataviz-squad,false,false,true
|
||||||
newPDFRendering,preview,@grafana/sharing-squad,false,false,false
|
newPDFRendering,preview,@grafana/sharing-squad,false,false,false
|
||||||
tlsMemcached,experimental,@grafana/grafana-operator-experience-squad,false,false,false
|
tlsMemcached,experimental,@grafana/grafana-operator-experience-squad,false,false,false
|
||||||
kubernetesAggregator,experimental,@grafana/grafana-app-platform-squad,false,true,false
|
kubernetesAggregator,experimental,@grafana/grafana-app-platform-squad,false,true,false
|
||||||
|
|
@ -1220,14 +1220,18 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"name": "groupToNestedTableTransformation",
|
"name": "groupToNestedTableTransformation",
|
||||||
"resourceVersion": "1718727528075",
|
"resourceVersion": "1720568606781",
|
||||||
"creationTimestamp": "2024-02-07T14:28:26Z"
|
"creationTimestamp": "2024-02-07T14:28:26Z",
|
||||||
|
"annotations": {
|
||||||
|
"grafana.app/updatedTimestamp": "2024-07-09 23:43:26.781894 +0000 UTC"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"spec": {
|
"spec": {
|
||||||
"description": "Enables the group to nested table transformation",
|
"description": "Enables the group to nested table transformation",
|
||||||
"stage": "preview",
|
"stage": "GA",
|
||||||
"codeowner": "@grafana/dataviz-squad",
|
"codeowner": "@grafana/dataviz-squad",
|
||||||
"frontend": true
|
"frontend": true,
|
||||||
|
"expression": "true"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -10,6 +10,7 @@ import {
|
|||||||
TransformerUIProps,
|
TransformerUIProps,
|
||||||
TransformerCategory,
|
TransformerCategory,
|
||||||
GrafanaTheme2,
|
GrafanaTheme2,
|
||||||
|
PluginState,
|
||||||
} from '@grafana/data';
|
} from '@grafana/data';
|
||||||
import {
|
import {
|
||||||
GroupByFieldOptions,
|
GroupByFieldOptions,
|
||||||
@ -20,8 +21,7 @@ import {
|
|||||||
GroupToNestedTableTransformerOptions,
|
GroupToNestedTableTransformerOptions,
|
||||||
SHOW_NESTED_HEADERS_DEFAULT,
|
SHOW_NESTED_HEADERS_DEFAULT,
|
||||||
} from '@grafana/data/src/transformations/transformers/groupToNestedTable';
|
} from '@grafana/data/src/transformations/transformers/groupToNestedTable';
|
||||||
import { Stack } from '@grafana/experimental';
|
import { useTheme2, Select, StatsPicker, InlineField, Field, Switch, Alert, Stack } from '@grafana/ui';
|
||||||
import { useTheme2, Select, StatsPicker, InlineField, Field, Switch, Alert } from '@grafana/ui';
|
|
||||||
|
|
||||||
import { useAllFieldNamesFromDataFrames } from '../utils';
|
import { useAllFieldNamesFromDataFrames } from '../utils';
|
||||||
|
|
||||||
@ -182,4 +182,5 @@ export const groupToNestedTableTransformRegistryItem: TransformerRegistryItem<Gr
|
|||||||
TransformerCategory.CalculateNewFields,
|
TransformerCategory.CalculateNewFields,
|
||||||
TransformerCategory.Reformat,
|
TransformerCategory.Reformat,
|
||||||
]),
|
]),
|
||||||
|
state: PluginState.beta,
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user