Chore: No longer refer to Node Graph as being in beta (#61775)

This commit is contained in:
Hamas Shafiq
2023-01-19 14:56:39 +00:00
committed by GitHub
parent 60ef88c918
commit f28a437eb2
5 changed files with 5 additions and 12 deletions

View File

@@ -99,7 +99,7 @@ Each linked query consists of:
### Enable Node Graph ### Enable Node Graph
The **Node Graph** setting enables the beta [Node Graph visualization]({{< relref "../../panels-visualizations/visualizations/node-graph/" >}}), which is disabled by default. The **Node Graph** setting enables the [Node Graph visualization]({{< relref "../../panels-visualizations/visualizations/node-graph/" >}}), which is disabled by default.
Once enabled, Grafana displays the Node Graph after loading the trace view. Once enabled, Grafana displays the Node Graph after loading the trace view.

View File

@@ -120,7 +120,7 @@ Optionally configure the **Hide search** setting to hide the search query option
### Enable Node Graph ### Enable Node Graph
The **Node Graph** setting enables the beta [Node Graph visualization]({{< relref "../../panels-visualizations/visualizations/node-graph/" >}}), which is disabled by default. The **Node Graph** setting enables the [Node Graph visualization]({{< relref "../../panels-visualizations/visualizations/node-graph/" >}}), which is disabled by default.
Once enabled, Grafana displays the Node Graph after loading the trace view. Once enabled, Grafana displays the Node Graph after loading the trace view.

View File

@@ -97,7 +97,7 @@ Each linked query consists of:
### Enable Node Graph ### Enable Node Graph
The **Node Graph** setting enables the beta [Node Graph visualization]({{< relref "../../panels-visualizations/visualizations/node-graph/" >}}), which is disabled by default. The **Node Graph** setting enables the [Node Graph visualization]({{< relref "../../panels-visualizations/visualizations/node-graph/" >}}), which is disabled by default.
Once enabled, Grafana displays the Node Graph after loading the trace view. Once enabled, Grafana displays the Node Graph after loading the trace view.

View File

@@ -15,8 +15,6 @@ weight: 850
# Node graph panel # Node graph panel
> **Note:** This panel is currently in beta. Expect changes in future releases.
The _Node graph_ can visualize directed graphs or networks. It uses a directed force layout to effectively position the nodes, so it can display complex infrastructure maps, hierarchies, or execution diagrams. The _Node graph_ can visualize directed graphs or networks. It uses a directed force layout to effectively position the nodes, so it can display complex infrastructure maps, hierarchies, or execution diagrams.
![Node graph panel](/static/img/docs/node-graph/node-graph-8-0.png 'Node graph') ![Node graph panel](/static/img/docs/node-graph/node-graph-8-0.png 'Node graph')

View File

@@ -5,7 +5,7 @@ import { useToggle, useWindowSize } from 'react-use';
import { applyFieldOverrides, DataFrame, GrafanaTheme2, SplitOpen } from '@grafana/data'; import { applyFieldOverrides, DataFrame, GrafanaTheme2, SplitOpen } from '@grafana/data';
import { reportInteraction } from '@grafana/runtime'; import { reportInteraction } from '@grafana/runtime';
import { Badge, Collapse, useStyles2, useTheme2 } from '@grafana/ui'; import { Collapse, useStyles2, useTheme2 } from '@grafana/ui';
import { NodeGraph } from '../../plugins/panel/nodeGraph'; import { NodeGraph } from '../../plugins/panel/nodeGraph';
import { useCategorizeFrames } from '../../plugins/panel/nodeGraph/useCategorizeFrames'; import { useCategorizeFrames } from '../../plugins/panel/nodeGraph/useCategorizeFrames';
@@ -82,12 +82,7 @@ export function UnconnectedNodeGraphContainer(props: Props) {
return ( return (
<Collapse <Collapse
label={ label={<span>Node graph{countWarning} </span>}
<span>
Node graph{countWarning}{' '}
<Badge text={'Beta'} color={'blue'} icon={'rocket'} tooltip={'This visualization is in beta'} />
</span>
}
collapsible={withTraceView} collapsible={withTraceView}
// We allow collapsing this only when it is shown together with trace view. // We allow collapsing this only when it is shown together with trace view.
isOpen={withTraceView ? open : true} isOpen={withTraceView ? open : true}