mirror of
https://github.com/openwrt/packages.git
synced 2025-07-13 23:04:47 +00:00
This is a port of prometheus-node-exporter-lua to ucode. Signed-off-by: Andre Heider <a.heider@gmail.com>
8 lines
173 B
Ucode
8 lines
173 B
Ucode
const x = wsplit(oneline("/proc/sys/fs/file-nr"));
|
|
|
|
if (length(x) < 3)
|
|
return false;
|
|
|
|
gauge("node_filefd_allocated")(null, x[0]);
|
|
gauge("node_filefd_maximum")(null, x[2]);
|