summaryrefslogtreecommitdiff
path: root/t/proxyustats.lua
blob: e0302cb8cf4c78df3be8ea1ca1a84050320ad780 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
-- get some information about the test being run from an external file
-- so we can modify ourselves.
local config = dofile("/tmp/proxyustats.lua")

local idx = 1

function mcp_config_pools(old)
    mcp.backend_read_timeout(4)
    mcp.backend_connect_timeout(5)
    local pfx, f, l = string.match(config, "(%S+)%s*(%S+)%s*(%S+)")
    local first = tonumber(f)
    local last = tonumber(l)
    while first <= last do
        mcp.add_stat(first, pfx .. first)
        first = first + 1
    end

    return {}
end

function route_fn(zones)
    return function(r)
        local key = r:key()
        mcp.stat(math.abs(tonumber(key)), tonumber(key))
        return "HD\r\n"
    end
end

function mcp_config_routes(zones)
    mcp.attach(mcp.CMD_MG, route_fn(zones))
end