Signed-off-by: Jack Baldry <jack.baldry@grafana.com>
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] = {}