forked from signalfx/collectd-haproxy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhaproxy.py
219 lines (185 loc) · 6.71 KB
/
haproxy.py
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
# haproxy-collectd-plugin - haproxy.py
#
# Author: Michael Leinartas
# Description: This is a collectd plugin which runs under the Python plugin to
# collect metrics from haproxy.
# Plugin structure and logging func taken from
# https://github.com/phrawzty/rabbitmq-collectd-plugin
#
# Modified by "Warren Turkal" <[email protected]>
import cStringIO as StringIO
import socket
import csv
import collectd
PLUGIN_NAME = 'haproxy'
RECV_SIZE = 1024
METRIC_TYPES = {
'MaxConn': ('max_connections', 'gauge'),
'CumConns': ('connections', 'derive'),
'CumReq': ('requests', 'derive'),
'MaxConnRate': ('max_connection_rate', 'gauge'),
'MaxSessRate': ('max_session_rate', 'gauge'),
'MaxSslConns': ('max_ssl_connections', 'gauge'),
'CumSslConns': ('ssl_connections', 'derive'),
'MaxPipes': ('max_pipes', 'gauge'),
'Idle_pct': ('idle_pct', 'gauge'),
'Tasks': ('tasks', 'gauge'),
'Run_queue': ('run_queue', 'gauge'),
'PipesUsed': ('pipes_used', 'gauge'),
'PipesFree': ('pipes_free', 'gauge'),
'Uptime_sec': ('uptime_seconds', 'derive'),
'bin': ('bytes_in', 'derive'),
'bout': ('bytes_out', 'derive'),
'chkfail': ('failed_checks', 'derive'),
'downtime': ('downtime', 'derive'),
'dresp': ('denied_response', 'derive'),
'dreq': ('denied_request', 'derive'),
'econ': ('error_connection', 'derive'),
'ereq': ('error_request', 'derive'),
'eresp': ('error_response', 'derive'),
'hrsp_1xx': ('response_1xx', 'derive'),
'hrsp_2xx': ('response_2xx', 'derive'),
'hrsp_3xx': ('response_3xx', 'derive'),
'hrsp_4xx': ('response_4xx', 'derive'),
'hrsp_5xx': ('response_5xx', 'derive'),
'hrsp_other': ('response_other', 'derive'),
'qcur': ('queue_current', 'gauge'),
'rate': ('session_rate', 'gauge'),
'req_rate': ('request_rate', 'gauge'),
'req_tot': ('request_total', 'derive'),
'act': ('active_servers', 'gauge'),
'bck': ('backup_servers', 'gauge'),
'scur': ('session_current', 'gauge'),
'slim': ('session_limit', 'gauge'),
'wredis': ('redistributed', 'derive'),
'wretr': ('retries', 'derive'),
}
METRIC_TYPES = dict((k.lower(), v) for k, v in METRIC_TYPES.items())
METRIC_DELIM = '.' # for the frontend/backend stats
DEFAULT_SOCKET = '/var/lib/haproxy/stats'
VERBOSE_LOGGING = False
HAPROXY_SOCKET = None
class Logger(object):
def error(self, msg):
collectd.error('{name}: {msg}'.format(name=PLUGIN_NAME, msg=msg))
def notice(self, msg):
collectd.warning('{name}: {msg}'.format(name=PLUGIN_NAME, msg=msg))
def warning(self, msg):
collectd.notice('{name}: {msg}'.format(name=PLUGIN_NAME, msg=msg))
def verbose(self, msg):
if VERBOSE_LOGGING:
collectd.info('{name}: {msg}'.format(name=PLUGIN_NAME, msg=msg))
log = Logger()
class HAProxySocket(object):
def __init__(self, socket_file=DEFAULT_SOCKET):
self.socket_file = socket_file
def connect(self):
stat_sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
stat_sock.connect(self.socket_file)
return stat_sock
def communicate(self, command):
'''Get response from single command.
Args:
command: string command to send to haproxy stat socket
Returns:
a string of the response data
'''
if not command.endswith('\n'):
command += '\n'
stat_sock = self.connect()
stat_sock.sendall(command)
result_buf = StringIO.StringIO()
buf = stat_sock.recv(RECV_SIZE)
while buf:
result_buf.write(buf)
buf = stat_sock.recv(RECV_SIZE)
stat_sock.close()
return result_buf.getvalue()
def get_server_info(self):
result = {}
output = self.communicate('show info')
for line in output.splitlines():
try:
key, val = line.split(':', 1)
except ValueError:
continue
result[key.strip()] = val.strip()
return result
def get_server_stats(self):
output = self.communicate('show stat')
#sanitize and make a list of lines
output = output.lstrip('# ').strip()
output = [l.strip(',') for l in output.splitlines()]
csvreader = csv.DictReader(output)
result = [d.copy() for d in csvreader]
return result
def get_stats():
if HAPROXY_SOCKET is None:
return
stats = {}
haproxy = HAProxySocket(HAPROXY_SOCKET)
try:
server_info = haproxy.get_server_info()
server_stats = haproxy.get_server_stats()
except socket.error:
log.warning(
'status err Unable to connect to HAProxy socket at %s' %
HAPROXY_SOCKET)
return stats
for key, val in server_info.iteritems():
try:
stats[key] = int(val)
except (TypeError, ValueError):
pass
included_svnames = set(['BACKEND', 'FRONTEND'])
for statdict in server_stats:
if statdict['svname'] not in included_svnames:
continue
for key, val in statdict.items():
metricname = METRIC_DELIM.join(
[statdict['svname'].lower(), statdict['pxname'].lower(), key])
try:
stats[metricname] = int(val)
except (TypeError, ValueError):
pass
return stats
def configure_callback(conf):
global HAPROXY_SOCKET, VERBOSE_LOGGING
HAPROXY_SOCKET = DEFAULT_SOCKET
VERBOSE_LOGGING = False
for node in conf.children:
if node.key == "Socket":
HAPROXY_SOCKET = node.values[0]
elif node.key == "Verbose":
VERBOSE_LOGGING = bool(node.values[0])
else:
log.warning('Unknown config key: %s' % node.key)
def read_callback():
log.verbose('beginning read_callback')
info = get_stats()
if not info:
log.warning('%s: No data received' % PLUGIN_NAME)
return
for key, value in info.iteritems():
key_prefix = ''
key_root = key
if not value in METRIC_TYPES:
try:
key_prefix, key_root = key.rsplit(METRIC_DELIM, 1)
except ValueError:
pass
if not key_root.lower() in METRIC_TYPES:
continue
key_root, val_type = METRIC_TYPES[key_root.lower()]
if key_prefix == '':
key_name = key_root
else:
key_name = METRIC_DELIM.join([key_prefix, key_root])
log.verbose('{0}: {1}'.format(key_name, value))
val = collectd.Values(plugin=PLUGIN_NAME, type=val_type)
val.type_instance = key_name
val.values = [value]
val.meta = {'bug_workaround': True}
val.dispatch()
collectd.register_config(configure_callback)
collectd.register_read(read_callback)