-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmongodb.lua
108 lines (87 loc) · 2.97 KB
/
mongodb.lua
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
--
-- Copyright (c) 2010, Cloudkick, Inc.
-- All right reserved.
--
module(..., package.seeall);
local util = require 'util'
local json = require 'Json'
local Check = util.Check
local log = util.log
local http = require 'socket.http'
local ltn12 = require 'ltn12'
function get_status(url, rcheck)
local body = {}
log.dbg("Hitting url %s", url)
local r, code = http.request{url = url,
sink = ltn12.sink.table(body)}
if r == nil then
rcheck:set_error("GET on %s failed: %s", url, code)
return nil
end
if body == nil then
rcheck:set_error("GET on %s returned no body", url)
else
log.dbg("Response body %s", table.concat(body, ''))
end
if (code >= 300 or code < 200) and code ~= 599 then
rcheck:set_error("GET on %s returned %s", url, code)
return nil
end
return table.concat(body, '')
end
function parse_response(response, rcheck, extrainfo, metrics)
local metric_type, value, value_type
local decoded = json.Decode(response)
local server_status = decoded.serverStatus
local available_metrics = { locks = server_status.globalLock, memory = server_status.mem, bgflushing = server_status.backgroundFlushing, connections = server_status.connections, indexcounters = server_status.indexCounters.btree, opcounters = server_status.opcounters, asserts = server_status.asserts }
local ignored_metrics = { "supported", "last_finished", "note" }
local double_metrics = { "ratio", "missRatio", "total_ms", "average_ms", "last_ms" }
if extrainfo then
metrics["extrainfo"] = server_status.extra_info
end
for metric_name, metric_values in pairs(available_metrics) do
for key, value in pairs(metric_values) do repeat
if table.contains(ignored_metrics, key) or not table.contains(metrics, metric_name) then
break
end
value_type = type(value)
if value_type == "table" then
-- In case we encounter a value of type "table" (new nested value gets
-- added to the MongoDB status page), we just skip this iteration
break
elseif table.contains(double_metrics, key) then
metric_type = Check.enum.double
elseif value_type == "number" then
metric_type = Check.enum.uint64
elseif value_type == "boolean" then
metric_type = Check.enum.string
value = tostring(value)
else
metric_type = Check.enum.guess
end
rcheck:add_metric(metric_name .. "_" .. key, value, metric_type)
until true end
end
end
function run_check(rcheck, args, metrics)
local url, port, extra_info
if args.port then
port = args.port[1]
else
port = 28017
end
if args.extra_info then
extra_info = true
else
extra_info = false
end
if args.ipaddress and port then
url = "http://" .. args.ipaddress[1] .. ":" .. port .. "/_status"
else
url = "http://localhost:28017/_status"
end
local body = get_status(url, rcheck)
if body then
parse_response(body, rcheck, extra_info, metrics)
end
end