-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck_cassandra_cfstats.lua
124 lines (112 loc) · 3.41 KB
/
check_cassandra_cfstats.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
--
-- Copyright (c) 2010, Cloudkick, Inc.
-- All right reserved.
--
module(..., package.seeall);
local alien = require 'alien'
local util = require 'util'
local Check = util.Check
local log = util.log
local io = require 'io'
local cassandra = require 'cassandra'
local ints = {["Space used (live)"]=1, ["Space used (total)"]=1, ["Read Latency"]=1,
["Write Latency"]=1, ["Row cache"]=1, ["Pending Tasks"]=1,
["Key cache hit rate"]=1, ["Key cache capacity"]=1, ["Key cache size"]=1,
["Row cache hit rate"]=1, ["Row cache capacity"]=1, ["Row cache size"]=1,
["Memtable Data Size"]=1, ["Compacted row minimum size"]=1, ["Compacted row maximum size"]=1,
["Compacted row mean size"]=1}
local rid_suffix = {["Read Latency"]=" ms.", ["Write Latency"]=" ms."}
local function getvalue(path, args)
local r = {}
local c = nil
local i = 0
local name, num
stream = io.popen(path .. ' 2>&1')
local lines = stream:lines()
for line in lines do
if cassandra.failed_connecting(line) then
return r, i, true
end
i = i + 1
if i > 1 then
line = string.gsub(line, '^[%s]+', '')
local l = util.split(line, "[^:]+")
name = l[1]
if name == "Column Family" then
-- print("starting new CF")
-- for i,v in ipairs(l) do print(i,v) end
l[2] = string.gsub(l[2], '^[%s]+', '')
r[l[2]] = {}
c = r[l[2]]
else
if c ~= nil and name ~= nil then
if rid_suffix[name] then
l[2] = string.gsub(l[2], " ms.", "")
end
num = tonumber(l[2])
if num == nil then
table.insert(c, {name, l[2], Check.enum.string})
else
if ints[name] ~= nil then
table.insert(c, {name, tonumber(l[2]), Check.enum.int64})
else
table.insert(c, {name, tonumber(l[2]), Check.enum.gauge})
end
end
end
end
end
end
i = (i - 1) * 3
return r, i
end
function run(rcheck, args)
-- Normalize the path
args.path = args.path[1]
args.cf = args.cf[1]
if args.host then
host = args.host[1]
else
host = '127.0.0.1'
end
if args.port then
port = args.port[1]
else
port = "8080"
end
if args.path == nil then
args.path = '/'
end
args.path = util.normalize_path(args.path)
local nt_path = string.format("%sbin/nodetool", args.path)
local realized_path = string.format("%s -host %s -port %s cfstats",
nt_path, host, port)
if not util.file_exists(nt_path) then
rcheck:set_error("Unable to run nodetool: \"%s\" not found.", nt_path)
return rcheck
end
local rv, r, i, failed_connecting = pcall(getvalue, realized_path, args)
if rv then
-- There has got to be a better way
if i > 0 then
if r[args.cf] == nil then
rcheck:set_error("Unable to find column family \"%s\"", args.cf)
return rcheck
end
for k,v in pairs(r[args.cf]) do
rcheck:add_metric(v[1], v[2], v[3])
end
rcheck:set_status('Tracking column family \"%s\"', args.cf)
else
if failed_connecting then
rcheck:set_error("Unable to connect to the remote JMX agent (invalid hostname or port?)", nt_path)
else
rcheck:set_error("Parsing nodetool response failed")
end
end
else
log.err("cassandra column family check failed: %s", r)
rcheck:set_error("%s", r)
end
return rcheck
end