prometheus-node-exporter-lua: Fix typos
Signed-off-by: Jack Baldry <jack.baldry@grafana.com>
This commit is contained in:
parent
1f17e41e43
commit
c9b32b99c0
|
@ -1,10 +1,10 @@
|
|||
local function scrape()
|
||||
-- documetation about nf_conntrack:
|
||||
-- documentation about nf_conntrack:
|
||||
-- https://www.frozentux.net/iptables-tutorial/chunkyhtml/x1309.html
|
||||
|
||||
-- two dimesional table to sum bytes for the pair (src/dest)
|
||||
-- two dimensional table to sum bytes for the pair (src/dest)
|
||||
local nat = {}
|
||||
-- default constructor to init unknow pairs
|
||||
-- default constructor to initialize unknown pairs
|
||||
setmetatable(nat, {
|
||||
__index = function (t, addr)
|
||||
t[addr] = {}
|
||||
|
|
Loading…
Reference in New Issue