作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 Grafana 中绘制网络图。
我的数据在一个两列的表中:一列是源节点的 id;另一列是指目标节点。例如。:
+--------+--------+
| source | target |
+--------+--------+
| 00 | 21 |
| 00 | 23 |
| 00 | 28 |
| 01 | 21 |
| 02 | 21 |
| 02 | 22 |
| 02 | 23 |
+--------+--------+
visjs
添加了以下 HTML 代码网络图书馆。
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/vis/4.21.0/vis.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/vis/4.21.0/vis.min.css" rel="stylesheet" type="text/css" />
<style type="text/css">
#mynetwork {
height: 400px;
border: 1px solid lightgray;
}
</style>
<div id="mynetwork"></div>
<script type="text/javascript">
// create an array with nodes
var nodes = new vis.DataSet([
{id: '00', label: '00', group: 'producers'},
{id: '01', label: '01', group: 'producers'},
{id: '02', label: '02', group: 'producers'},
{id: '21', label: '21', group: 'consumers'},
{id: '22', label: '22', group: 'consumers'},
{id: '23', label: '23', group: 'consumers'},
{id: '28', label: '28', group: 'consumers'}
]);
// create an array with edges
var edges = new vis.DataSet([
{from: '00', to: '21'},
{from: '00', to: '23'},
{from: '00', to: '28'},
{from: '01', to: '21'},
{from: '02', to: '21'},
{from: '02', to: '22'},
{from: '02', to: '23'}
]);
// create a network
var container = document.getElementById('mynetwork');
// provide the data in the vis format
var data = {
nodes: nodes,
edges: edges
};
var options = {
nodes: {
shape: 'dot',
size: 20,
font: {
size: 20,
color: '#ffffff'
},
borderWidth: 2
},
edges: {
width: 2
},
groups: {
producers: {
color: {background:'red',border:'orange'},
shape: 'diamond'
},
consumers: {
shape: 'dot',
color: {background: 'cyan',border:'blue'}
}
}
};
// initialize your network!
var network = new vis.Network(container, data, options);
最佳答案
现在有一个 grafana 图表插件:https://grafana.com/grafana/plugins/jdbranham-diagram-panel
您可以使用 Mermaid JS绘制图表并将度量与图表的每个节点相关联的语法。
在您的情况下,配置将是这样的:
00 --> 21
00 --> 23
00 --> 28
01 --> 21
02 --> 21
02 --> 22
02 --> 23
00
、
21
、
01
...)都是特定的 grafana 指标
关于diagram - 如何在 Grafana 中绘制网络图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50033085/
我是一名优秀的程序员,十分优秀!