prometheus-node-exporter-lua: Fix typos

Signed-off-by: Jack Baldry <jack.baldry@grafana.com>
This commit is contained in:
Jack Baldry 2024-09-24 15:18:13 +01:00 committed by Hannu Nyman
parent 1f17e41e43
commit c9b32b99c0
1 changed files with 3 additions and 3 deletions

View File

@ -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] = {}