mirror of
https://github.com/openwrt/packages.git
synced 2025-07-19 05:04:30 +00:00
This is a port of prometheus-node-exporter-lua to ucode. Signed-off-by: Andre Heider <a.heider@gmail.com>
7 lines
126 B
Ucode
7 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]);
|