我正在使用grafana 4和InfluxDB。
我需要通过在URL中构建参数来显示某个主机的CPU使用率图表
http://my_grafana:3000/dashboard/script/scripted.js?name=CPULoad&host=ussd1
我正在尝试使用脚本化仪表板,但我无法弄清楚如何告诉scripted.js在哪里查找CPULoad的数据。
任何人都可以给我一些指示吗?
的问候,
马丁
答案 0 :(得分:1)
我发现它是如何工作的,但我不得不说它在任何地方都没有记录是很奇怪的,它涉及对源代码的一点修改......
首先是一点背景
我有一个名为“Nagios”的涌入数据库。在这个数据库里面,我有几个系列。在Influxdb中的show系列显示以下内容
> show series
key
---
nagios.CPULoad,hostname=cbba.storage,state=OK
nagios.CPULoad,hostname=ussd1,state=OK
nagios.CPULoad,hostname=ussd2,state=OK
nagios.CPULoad,hostname=ussd3,state=OK
nagios.CPULoad,hostname=ussd4,state=OK
CPULoad系列数据的结构就像这样
> select * from "nagios.CPULoad" limit 1
name: nagios.CPULoad
time hostname load1 load15 load5 state
---- -------- ----- ------ ----- -----
1487867813000000000 cbba.storage 0 0 0 OK
我对scripted.js的URL如下:
http://10.72.6.220:3000/dashboard/script/scripted.js?name=CPULoad&field=load1&hostname=ussd3
name indicates the series in influxDB I want to graph
field indicates which field to use
hostname indicates the host to choose
我想要构建的grafana scripted.js的SQL如下
SELECT mean("load1") FROM "nagios.CPULoad" WHERE "hostname" = 'ussd3' AND $timeFilter GROUP BY time($interval) fill(null)
在scripted.js中构建的代码涉及修改dashboard.rows结构中的“targets”参数,结果就是这样(我在完成代码后发现了这个)
targets: [
{
"measurement": "nagios." + ARGS.name,
"metric": ARGS.name,
"tags": {
"hostname": {
operator: "=" ,
value: ARGS.hostname
}
},
"select": [[{
type: "field",
params: [ARGS.field]
}, {
type: "mean",
params: []
}]],
},
],
现在,我不知道为什么,但我必须修改代码才能考虑密钥“主机名”。在函数renderTagCondition中,为方便起见,我在这里复制了
a.prototype.renderTagCondition = function(a, b, c) {
var d = ""
, e = a.operator
, f = a.value;
return b > 0 && (d = (a.condition || "AND") + " "),
e || (e = /^\/.*\/$/.test(f) ? "=~" : "="),
"=~" !== e && "!~" !== e ? (c && (f = this.templateSrv.replace(f, this.scopedVars)),
">" !== e && "<" !== e && (f = "'" + f.replace(/\\/g, "\\\\") + "'")) : c && (f = this.templateSrv.replace(f, this.scopedVars, "regex")),
d + '"' + a.key + '" ' + e + " " + f
}
返回值
d + '"' + a.key + '" ' + e + " " + f
似乎错了......应该是
d + '"' + b + '" ' + e + " " + f
因为b带有“hostname”
在这之后,调用我在开头提到的URL,一切都很顺利
答案 1 :(得分:0)
除了上述@mquevedob答案之外,
像这样更改标签对象
"tags":
[
{
key: "jobId",
operator: "=" ,
value: "340"
}
]
在使用InfluxDB时,这在Grafana中应该可以正常工作。