Grafana 中显示的网络数据指标显示不正确的值
netdata metrics displayed in Grafana shows incorrect values
我正在尝试将网络数据指标获取到 Graphite 并使用 Grafana 绘制历史指标。
但是,度量单位不适用于 Grafana。在绘制 CPU 利用率百分比时,我得到的值如 1000000000% 和 6000000000%,单位设置为百分比 (0-100)。
我是不是漏了什么?
架构如下所示
NetData ---> Graphite ----> Grafana
我认为返回给 Grafana 的值不是百分比,而是数据大小可能在 bits.If 你想显示百分比,你必须使用这样的函数:
asPercent(<your metric>, <maximum of this metrics>, 0)
有关石墨功能的更多详细信息:https://graphite.readthedocs.io/en/latest/functions.html
我正在尝试将网络数据指标获取到 Graphite 并使用 Grafana 绘制历史指标。
但是,度量单位不适用于 Grafana。在绘制 CPU 利用率百分比时,我得到的值如 1000000000% 和 6000000000%,单位设置为百分比 (0-100)。
我是不是漏了什么?
架构如下所示
NetData ---> Graphite ----> Grafana
我认为返回给 Grafana 的值不是百分比,而是数据大小可能在 bits.If 你想显示百分比,你必须使用这样的函数:
asPercent(<your metric>, <maximum of this metrics>, 0)
有关石墨功能的更多详细信息:https://graphite.readthedocs.io/en/latest/functions.html