summaryrefslogtreecommitdiffstats
path: root/utils/prometheus-node-exporter-lua/files/usr/lib/lua/prometheus-collectors/time.lua
blob: 2cd68c02f1a45e415b542ba19e91e5d0b05840a9 (plain)
1
2
3
4
5
6
local function scrape()
  -- current time
  metric("node_time_seconds", "gauge", nil, os.time())
end

return { scrape = scrape }