This repository has been archived by the owner on Dec 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 48
/
check_graphite_data
executable file
·203 lines (179 loc) · 6.83 KB
/
check_graphite_data
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
#!/usr/bin/python
import getopt
import sys
import urllib
STATE_OK = 0
STATE_WARNING = 1
STATE_CRITICAL = 2
STATE_UNKNOWN = 3
STATE_DEPENDENT = 4
def usage():
print 'Usage:'
print '\tcheck_graphite_data <options>'
print 'Options:'
print '\t-c <num> --crit=<num>\t\tCritical threshold'
print '\t-w <num> --warn=<num>\t\tWarning threshold'
print '\t-u <url> --url=<url>\t\tGraphite graph URL'
print '\t-r\t\t\t\tReverse - Alert when the value is UNDER warn/crit instead of OVER'
print '\t-s <secs> --seconds=<secs>\tAverage over the last N seconds of data'
print '\t--d1 <url> --d2 <url>\t\tDiff the latest values between two graphs'
print '\t-W --holt-winters\t\tPerform a Holt-Winters check'
print '\t-U --critupper\t\t\tUpper Holt-Winters band breach causes a crit,'
print '\t\t\t\t\t- breaching lower band causes a warn'
print '\t-L --critlower\t\t\tLower Holt-Winters band breach causes a crit,'
print '\t\t\t\t\t- breaching upper band causes a warn'
print '\t(If -W, but neither -U nor -L are given, we will always warn)'
print '\t--scale=<multiplier>\t\tscale, eg 8 to treat bytes as bits'
print '\t--scale-invert=<divisor>\tscale, eg 1073741824 to treat bytes as GiB'
print '\t\t\t\t\t- --scale{-invert} lets you give thresholds in sane units'
def pull_graphite_data(url):
"""Pull down raw data from Graphite"""
# Make sure the url ends with '&rawData'
if not url.endswith('&rawData'):
url = url + '&rawData'
# Catch URL errors
try:
data = urllib.urlopen(url).read()
if len(data) == 0:
print "Error: No data was returned. Did you specify an existing metric? - " + url
sys.exit(STATE_UNKNOWN)
return data
except Exception,e:
print "Error: "+ str(e) +" - " + url
sys.exit(STATE_UNKNOWN)
def eval_graphite_data(data, seconds):
"""Get the most recent correct value from the data"""
sample_period = int(data.split('|')[0].split(',')[-1])
all_data_points = data.split('|')[-1].split(',')
# Evaluate what graphite returned, should either be a float, or None
# First, if the number of seconds of data we want to examine is smaller or
# equals the graphite sample period, just grab the latest data point.
# If that data point is None, grab the one before it.
# If that is None too, return 0.0.
if seconds <= sample_period:
if not all_data_points[-1].startswith("None"):
data_value = float(all_data_points[-1])
elif not all_data_points[-2].startswith("None"):
data_value = float(all_data_points[-2])
else:
data_value = 0.0
else:
# Second, if we requested more than on graphite sample period, work out how
# many sample periods we wanted (python always rounds division *down*)
data_points = (seconds/sample_period)
data_set = [ float(x) for x in all_data_points[-data_points:]
if not x.startswith("None") ]
if data_set:
data_value = float( sum(data_set) / len(data_set) )
else:
data_value = 0.0
return data_value
def get_hw_value(url, seconds=0):
"""Get the Holt-Winters value from a Graphite graph"""
data = pull_graphite_data(url)
for line in data.split():
if line.startswith('holtWintersConfidenceUpper'):
graphite_upper = eval_graphite_data(line, seconds)
elif line.startswith('holtWintersConfidenceLower'):
graphite_lower = eval_graphite_data(line, seconds)
else:
graphite_data = eval_graphite_data(line, seconds)
return graphite_data, graphite_lower, graphite_upper
def get_value(url, seconds=0):
"""Get the value from a Graphite graph"""
data = pull_graphite_data(url)
data_value = eval_graphite_data(data, seconds)
return data_value
def main(argv):
try:
opts, args = getopt.getopt(argv, 'hWULru:c:w:s:',
['help', 'holt-winters', 'critupper',
'critlower', 'url=', 'crit=', 'warn=',
'seconds=', 'd1=', 'd2='
,'scale=' ,'scale-invert='
])
except getopt.GetoptError, err:
print str(err)
sys.exit(STATE_UNKNOWN)
url = None
warn = None
crit = None
seconds = 0
diff1 = None
diff2 = None
reverse = False
hw = None
critupper = None
critlower = None
scale = 1
for opt, arg in opts:
if opt in ('-h', '--help'):
usage()
sys.exit()
elif opt in ('-u', '--url'):
url = arg
elif opt in ('-w', '--warn'):
warn = float(arg)
elif opt in ('-c', '--crit'):
crit = float(arg)
elif opt in ('-s', '--seconds'):
seconds = int(arg)
elif opt in ('-r'):
reverse = True
elif opt in ('--d1'):
diff1 = arg
elif opt in ('--d2'):
diff2 = arg
elif opt in ('-W', '--holtwinters'):
hw = True
elif opt in ('-U', '--critupper'):
critupper = True
elif opt in ('-L', '--critlower'):
critlower = True
elif opt in ('--scale'):
scale = float(arg)
elif opt in ('--scale-invert'):
scale = 1 / float(arg)
if not hw and ((url == None) or (warn == None) or (crit == None)) \
and not diff1 and not diff2:
usage()
sys.exit(STATE_UNKNOWN)
if (diff1 == None and diff2 != None) or (diff1 != None and diff2 == None):
usage()
sys.exit(STATE_UNKNOWN)
if hw:
graphite_data, graphite_lower, graphite_upper = get_hw_value(url, seconds)
print 'Current value: %s, lower band: %s, upper band: %s' % \
(graphite_data, graphite_lower, graphite_upper)
if (graphite_data > graphite_upper) or (graphite_data < graphite_lower):
if critupper or critlower:
sys.exit(STATE_CRITICAL)
else:
sys.exit(STATE_WARNING)
else:
sys.exit(STATE_OK)
elif diff1 or diff2:
graphite_data1 = get_value(diff1, seconds)
graphite_data2 = get_value(diff2, seconds)
graphite_data = abs(graphite_data1 - graphite_data2)
else:
graphite_data = get_value(url, seconds)
graphite_data *= scale
print 'Current value: %s, warn threshold: %s, crit threshold: %s' % \
(graphite_data, warn, crit)
if reverse == True:
if crit >= graphite_data:
sys.exit(STATE_CRITICAL)
elif warn >= graphite_data:
sys.exit(STATE_WARNING)
else:
sys.exit(STATE_OK)
else:
if graphite_data >= crit:
sys.exit(STATE_CRITICAL)
elif graphite_data >= warn:
sys.exit(STATE_WARNING)
else:
sys.exit(STATE_OK)
if __name__ == '__main__':
main(sys.argv[1:])