firmware/general/package/node-exporter/files/prometheus-collectors/time.lua

7 lines
129 B
Lua

local function scrape()
-- current time
metric("node_time_seconds", "gauge", nil, os.time())
end
return { scrape = scrape }