mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
FlameGraph: Remove flameGraphItemCollapsing feature toggle (#90190)
Remove feature toggle
This commit is contained in:
parent
29ac7fd3c4
commit
5beaae8561
@ -165,7 +165,6 @@ Experimental features might be changed or removed without prior notice.
|
||||
| `dashboardSceneForViewers` | Enables dashboard rendering using Scenes for viewer roles |
|
||||
| `dashboardSceneSolo` | Enables rendering dashboards using scenes for solo panels |
|
||||
| `dashboardScene` | Enables dashboard rendering using scenes for all roles |
|
||||
| `flameGraphItemCollapsing` | Allow collapsing of flame graph items |
|
||||
| `pluginsSkipHostEnvVars` | Disables passing host environment variable to plugin processes |
|
||||
| `tableSharedCrosshair` | Enables shared crosshair in table panel |
|
||||
| `kubernetesFeatureToggles` | Use the kubernetes API for feature toggle management in the frontend |
|
||||
|
@ -142,7 +142,6 @@ export interface FeatureToggles {
|
||||
ssoSettingsApi?: boolean;
|
||||
canvasPanelPanZoom?: boolean;
|
||||
logsInfiniteScrolling?: boolean;
|
||||
flameGraphItemCollapsing?: boolean;
|
||||
exploreMetrics?: boolean;
|
||||
alertingSimplifiedRouting?: boolean;
|
||||
logRowsPopoverMenu?: boolean;
|
||||
|
@ -929,13 +929,6 @@ var (
|
||||
FrontendOnly: true,
|
||||
Owner: grafanaObservabilityLogsSquad,
|
||||
},
|
||||
{
|
||||
Name: "flameGraphItemCollapsing",
|
||||
Description: "Allow collapsing of flame graph items",
|
||||
Stage: FeatureStageExperimental,
|
||||
FrontendOnly: true,
|
||||
Owner: grafanaObservabilityTracesAndProfilingSquad,
|
||||
},
|
||||
{
|
||||
Name: "exploreMetrics",
|
||||
Description: "Enables the new Explore Metrics core app",
|
||||
|
@ -123,7 +123,6 @@ pdfTables,preview,@grafana/sharing-squad,false,false,false
|
||||
ssoSettingsApi,GA,@grafana/identity-access-team,false,false,false
|
||||
canvasPanelPanZoom,preview,@grafana/dataviz-squad,false,false,true
|
||||
logsInfiniteScrolling,GA,@grafana/observability-logs,false,false,true
|
||||
flameGraphItemCollapsing,experimental,@grafana/observability-traces-and-profiling,false,false,true
|
||||
exploreMetrics,GA,@grafana/dashboards-squad,false,false,true
|
||||
alertingSimplifiedRouting,GA,@grafana/alerting-squad,false,false,false
|
||||
logRowsPopoverMenu,GA,@grafana/observability-logs,false,false,true
|
||||
|
|
@ -503,10 +503,6 @@ const (
|
||||
// Enables infinite scrolling for the Logs panel in Explore and Dashboards
|
||||
FlagLogsInfiniteScrolling = "logsInfiniteScrolling"
|
||||
|
||||
// FlagFlameGraphItemCollapsing
|
||||
// Allow collapsing of flame graph items
|
||||
FlagFlameGraphItemCollapsing = "flameGraphItemCollapsing"
|
||||
|
||||
// FlagExploreMetrics
|
||||
// Enables the new Explore Metrics core app
|
||||
FlagExploreMetrics = "exploreMetrics"
|
||||
|
@ -1126,7 +1126,8 @@
|
||||
"metadata": {
|
||||
"name": "flameGraphItemCollapsing",
|
||||
"resourceVersion": "1718727528075",
|
||||
"creationTimestamp": "2023-11-09T14:31:07Z"
|
||||
"creationTimestamp": "2023-11-09T14:31:07Z",
|
||||
"deletionTimestamp": "2024-07-08T14:17:01Z"
|
||||
},
|
||||
"spec": {
|
||||
"description": "Allow collapsing of flame graph items",
|
||||
|
@ -30,7 +30,6 @@ export const FlameGraphExploreContainer = (props: Props) => {
|
||||
onViewSelected={(view: string) => interaction('view_selected', { view })}
|
||||
onTextAlignSelected={(align: string) => interaction('text_align_selected', { align })}
|
||||
onTableSort={(sort: string) => interaction('table_sort_selected', { sort })}
|
||||
disableCollapsing={!config.featureToggles.flameGraphItemCollapsing}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
|
@ -28,7 +28,6 @@ export const FlameGraphPanel = (props: PanelProps) => {
|
||||
onViewSelected={(view: string) => interaction('view_selected', { view })}
|
||||
onTextAlignSelected={(align: string) => interaction('text_align_selected', { align })}
|
||||
onTableSort={(sort: string) => interaction('table_sort_selected', { sort })}
|
||||
disableCollapsing={!config.featureToggles.flameGraphItemCollapsing}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user