blob: 7e2ff6391961d0fae6bc64ab767b424cf691f4f1 (
plain)
1
2
3
4
5
6
7
8
|
local function scrape()
local file_nr = space_split(get_contents("/proc/sys/fs/file-nr"))
metric("node_filefd_allocated", "gauge", nil, file_nr[1])
metric("node_filefd_maximum", "gauge", nil, file_nr[3])
end
return { scrape = scrape }
|