aboutsummaryrefslogtreecommitdiff
path: root/utils/prometheus-node-exporter-ucode/files/base/filefd.uc
blob: 359cffd4ebc059059cea5363c7a30f1531a5ea2f (plain)
1
2
3
4
5
6
7
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]);