openwrt-packages/utils/prometheus-node-exporter-lua/files/usr/lib/lua/prometheus-collectors/time.lua

7 lines
123 B
Lua

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