Skip to content

Commit

Permalink
prometheus-node-exporter-lua: Fix typos
Browse files Browse the repository at this point in the history
Signed-off-by: Jack Baldry <[email protected]>
  • Loading branch information
jdbaldry committed Oct 19, 2024
1 parent dd2e710 commit 40080fd
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -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] = {}
Expand Down

0 comments on commit 40080fd

Please sign in to comment.