This is a port of prometheus-node-exporter-lua to ucode. Signed-off-by: Andre Heider <a.heider@gmail.com>
6 lines
126 B
Ucode
6 lines
126 B
Ucode
const x = ubus.call("dnsmasq", "metrics");
|
|
if (!x)
|
|
return false;
|
|
|
|
for (let i in x)
|
|
gauge(`dnsmasq_${i}_total`)(null, x[i]);
|