mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Chore: No longer refer to Node Graph as being in beta (#61775)
This commit is contained in:
parent
60ef88c918
commit
f28a437eb2
@ -99,7 +99,7 @@ Each linked query consists of:
|
||||
|
||||
### 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.
|
||||
|
||||
|
@ -120,7 +120,7 @@ Optionally configure the **Hide search** setting to hide the search query option
|
||||
|
||||
### 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.
|
||||
|
||||
|
@ -97,7 +97,7 @@ Each linked query consists of:
|
||||
|
||||
### 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.
|
||||
|
||||
|
@ -15,8 +15,6 @@ weight: 850
|
||||
|
||||
# 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.
|
||||
|
||||

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