]> arthur.barton.de Git - netdata.git/blob - python.d/varnish.chart.py
Merge pull request #1594 from ktsaou/master
[netdata.git] / python.d / varnish.chart.py
1 # -*- coding: utf-8 -*-
2 # Description:  varnish netdata python.d module
3 # Author: l2isbad
4
5 from base import SimpleService
6 from re import compile
7 from os import access as is_executable, X_OK
8 from subprocess import Popen, PIPE
9
10
11 # default module values (can be overridden per job in `config`)
12 # update_every = 2
13 priority = 60000
14 retries = 60
15
16 ORDER = ['session', 'hit_rate', 'chit_rate', 'expunge', 'threads', 'backend_health', 'memory_usage', 'bad', 'uptime']
17
18 CHARTS = {'backend_health': 
19              {'lines': [['backend_conn', 'conn', 'incremental', 1, 1],
20                        ['backend_unhealthy', 'unhealthy', 'incremental', 1, 1],
21                        ['backend_busy', 'busy', 'incremental', 1, 1],
22                        ['backend_fail', 'fail', 'incremental', 1, 1],
23                        ['backend_reuse', 'reuse', 'incremental', 1, 1],
24                        ['backend_recycle', 'resycle', 'incremental', 1, 1],
25                        ['backend_toolate', 'toolate', 'incremental', 1, 1],
26                        ['backend_retry', 'retry', 'incremental', 1, 1],
27                        ['backend_req', 'req', 'incremental', 1, 1]],
28               'options': [None, 'Backend health', 'connections', 'Backend health', 'varnish.backend_traf', 'line']},
29           'bad': 
30              {'lines': [['sess_drop_b', None, 'incremental', 1, 1],
31                        ['backend_unhealthy_b', None, 'incremental', 1, 1],
32                        ['fetch_failed', None, 'incremental', 1, 1],
33                        ['backend_busy_b', None, 'incremental', 1, 1],
34                        ['threads_failed_b', None, 'incremental', 1, 1],
35                        ['threads_limited_b', None, 'incremental', 1, 1],
36                        ['threads_destroyed_b', None, 'incremental', 1, 1],
37                        ['thread_queue_len_b', 'queue_len', 'absolute', 1, 1],
38                        ['losthdr_b', None, 'incremental', 1, 1],
39                        ['esi_errors_b', None, 'incremental', 1, 1],
40                        ['esi_warnings_b', None, 'incremental', 1, 1],
41                        ['sess_fail_b', None, 'incremental', 1, 1],
42                        ['sess_pipe_overflow_b', None, 'incremental', 1, 1]],
43               'options': [None, 'Misbehavior', 'problems', 'Problems summary', 'varnish.bad', 'line']},
44           'expunge':
45              {'lines': [['n_expired', 'expired', 'incremental', 1, 1],
46                        ['n_lru_nuked', 'lru_nuked', 'incremental', 1, 1]],
47               'options': [None, 'Object expunging', 'objects', 'Cache performance', 'varnish.expunge', 'line']},
48           'hit_rate': 
49              {'lines': [['cache_hit_perc', 'hit', 'absolute', 1, 100],
50                        ['cache_miss_perc', 'miss', 'absolute', 1, 100],
51                        ['cache_hitpass_perc', 'hitpass', 'absolute', 1, 100]],
52               'options': [None, 'All history hit rate ratio','percent', 'Cache performance', 'varnish.hit_rate', 'stacked']},
53           'chit_rate': 
54              {'lines': [['cache_hit_cperc', 'hit', 'absolute', 1, 100],
55                        ['cache_miss_cperc', 'miss', 'absolute', 1, 100],
56                        ['cache_hitpass_cperc', 'hitpass', 'absolute', 1, 100]],
57               'options': [None, 'Current poll hit rate ratio','percent', 'Cache performance', 'varnish.chit_rate', 'stacked']},
58           'memory_usage': 
59              {'lines': [['s0.g_space', 'available', 'absolute', 1, 1048576],
60                        ['s0.g_bytes', 'allocated', 'absolute', -1, 1048576]],
61               'options': [None, 'Memory usage', 'megabytes', 'Memory usage', 'varnish.memory_usage', 'stacked']},
62           'session': 
63              {'lines': [['sess_conn', 'sess_conn', 'incremental', 1, 1],
64                        ['client_req', 'client_requests', 'incremental', 1, 1],
65                        ['client_conn', 'client_conn', 'incremental', 1, 1],
66                        ['client_drop', 'client_drop', 'incremental', 1, 1],
67                        ['sess_dropped', 'sess_dropped', 'incremental', 1, 1]],
68               'options': [None, 'Sessions', 'units', 'Client metrics', 'varnish.session', 'line']},
69           'threads': 
70              {'lines': [['threads', None, 'absolute', 1, 1],
71                        ['threads_created', 'created', 'incremental', 1, 1],
72                        ['threads_failed', 'failed', 'incremental', 1, 1],
73                        ['threads_limited', 'limited', 'incremental', 1, 1],
74                        ['thread_queue_len', 'queue_len', 'incremental', 1, 1],
75                        ['sess_queued', 'sess_queued', 'incremental', 1, 1]],
76               'options': [None, 'Thread status', 'threads', 'Thread-related metrics', 'varnish.threads', 'line']},
77           'uptime': 
78              {'lines': [['uptime', None, 'absolute', 1, 1]],
79               'options': [None, 'Varnish uptime', 'seconds', 'Uptime', 'varnish.uptime', 'line']}
80 }
81
82 DIRECTORIES = ['/bin/', '/usr/bin/', '/sbin/', '/usr/sbin/']
83
84
85 class Service(SimpleService):
86     def __init__(self, configuration=None, name=None):
87         SimpleService.__init__(self, configuration=configuration, name=name)
88         try:
89             self.varnish = [''.join([directory, 'varnishstat']) for directory in DIRECTORIES
90                          if is_executable(''.join([directory, 'varnishstat']), X_OK)][0]
91         except IndexError:
92             self.varnish = False
93         self.rgx_all = compile(r'([A-Z]+\.)?([\d\w_.]+)\s+(\d+)')
94         # Could be
95         # VBE.boot.super_backend.pipe_hdrbyte (new)
96         # or
97         # VBE.default2(127.0.0.2,,81).bereq_bodybytes (old)
98         # Regex result: [('super_backend', 'beresp_hdrbytes', '0'), ('super_backend', 'beresp_bodybytes', '0')]
99         self.rgx_bck = (compile(r'VBE.([\d\w_.]+)\(.*?\).(beresp[\w_]+)\s+(\d+)'),
100                         compile(r'VBE\.[\d\w-]+\.([\w\d_]+).(beresp[\w_]+)\s+(\d+)'))
101         self.cache_prev = list()
102
103     def check(self):
104         # Cant start without 'varnishstat' command
105         if not self.varnish:
106             self.error('\'varnishstat\' command was not found in %s or not executable by netdata' % DIRECTORIES)
107             return False
108
109         # If command is present and we can execute it we need to make sure..
110         # 1. STDOUT is not empty
111         reply = self._get_raw_data()
112         if not reply:
113             self.error('No output from \'varnishstat\' (not enough privileges?)')
114             return False
115
116         # 2. Output is parsable (list is not empty after regex findall)
117         is_parsable = self.rgx_all.findall(reply)
118         if not is_parsable:
119             self.error('Cant parse output...')
120             return False
121
122         # We need to find the right regex for backend parse
123         self.backend_list = self.rgx_bck[0].findall(reply)[::2]
124         if self.backend_list:
125             self.rgx_bck = self.rgx_bck[0]
126         else:
127             self.backend_list = self.rgx_bck[1].findall(reply)[::2]
128             self.rgx_bck = self.rgx_bck[1]
129
130         # We are about to start!
131         self.create_charts()
132
133         self.info('Plugin was started successfully')
134         return True
135      
136     def _get_raw_data(self):
137         try:
138             reply = Popen([self.varnish, '-1'], stdout=PIPE, stderr=PIPE, shell=False)
139         except OSError:
140             return None
141
142         raw_data = reply.communicate()[0]
143
144         if not raw_data:
145             return None
146
147         return raw_data
148
149     def _get_data(self):
150         """
151         Format data received from shell command
152         :return: dict
153         """
154         raw_data = self._get_raw_data()
155         data_all = self.rgx_all.findall(raw_data)
156         data_backend = self.rgx_bck.findall(raw_data)
157
158         if not data_all:
159             return None
160
161         # 1. ALL data from 'varnishstat -1'. t - type(MAIN, MEMPOOL etc)
162         to_netdata = {k: int(v) for t, k, v in data_all}
163         
164         # 2. ADD backend statistics
165         to_netdata.update({'_'.join([n, k]): int(v) for n, k, v in data_backend})
166
167         # 3. ADD additional keys to dict
168         # 3.1 Cache hit/miss/hitpass OVERALL in percent
169         cache_summary = sum([to_netdata.get('cache_hit', 0), to_netdata.get('cache_miss', 0),
170                              to_netdata.get('cache_hitpass', 0)])
171         to_netdata['cache_hit_perc'] = find_percent(to_netdata.get('cache_hit', 0), cache_summary, 10000)
172         to_netdata['cache_miss_perc'] = find_percent(to_netdata.get('cache_miss', 0), cache_summary, 10000)
173         to_netdata['cache_hitpass_perc'] = find_percent(to_netdata.get('cache_hitpass', 0), cache_summary, 10000)
174
175         # 3.2 Cache hit/miss/hitpass CURRENT in percent
176         if self.cache_prev:
177             cache_summary = sum([to_netdata.get('cache_hit', 0), to_netdata.get('cache_miss', 0),
178                                  to_netdata.get('cache_hitpass', 0)]) - sum(self.cache_prev)
179             to_netdata['cache_hit_cperc'] = find_percent(to_netdata.get('cache_hit', 0) - self.cache_prev[0], cache_summary, 10000)
180             to_netdata['cache_miss_cperc'] = find_percent(to_netdata.get('cache_miss', 0) - self.cache_prev[1], cache_summary, 10000)
181             to_netdata['cache_hitpass_cperc'] = find_percent(to_netdata.get('cache_hitpass', 0) - self.cache_prev[2], cache_summary, 10000)
182         else:
183             to_netdata['cache_hit_cperc'] = 0
184             to_netdata['cache_miss_cperc'] = 0
185             to_netdata['cache_hitpass_cperc'] = 0
186
187         self.cache_prev = [to_netdata.get('cache_hit', 0), to_netdata.get('cache_miss', 0), to_netdata.get('cache_hitpass', 0)]
188
189         # 3.3 Problems summary chart
190         for elem in ['backend_busy', 'backend_unhealthy', 'esi_errors', 'esi_warnings', 'losthdr', 'sess_drop',
191                      'sess_fail', 'sess_pipe_overflow', 'threads_destroyed', 'threads_failed', 'threads_limited', 'thread_queue_len']:
192             if to_netdata.get(elem) is not None:
193                 to_netdata[''.join([elem, '_b'])] = to_netdata.get(elem)
194
195         # Ready steady go!
196         return to_netdata
197
198     def create_charts(self):
199         # If 'all_charts' is true...ALL charts are displayed. If no only default + 'extra_charts'
200         #if self.configuration.get('all_charts'):
201         #    self.order = EXTRA_ORDER
202         #else:
203         #    try:
204         #        extra_charts = list(filter(lambda chart: chart in EXTRA_ORDER, self.extra_charts.split()))
205         #    except (AttributeError, NameError, ValueError):
206         #        self.error('Extra charts disabled.')
207         #        extra_charts = []
208     
209         self.order = ORDER[:]
210         #self.order.extend(extra_charts)
211
212         # Create static charts
213         #self.definitions = {chart: values for chart, values in CHARTS.items() if chart in self.order}
214         self.definitions = CHARTS
215  
216         # Create dynamic backend charts
217         if self.backend_list:
218             for backend in self.backend_list:
219                 self.order.insert(0, ''.join([backend[0], '_resp_stats']))
220                 self.definitions.update({''.join([backend[0], '_resp_stats']): {
221                     'options': [None,
222                                 '%s response statistics' % backend[0].capitalize(),
223                                 "kilobit/s",
224                                 'Backend response',
225                                 'varnish.backend',
226                                 'area'],
227                     'lines': [[''.join([backend[0], '_beresp_hdrbytes']),
228                                'header', 'incremental', 8, 1000],
229                               [''.join([backend[0], '_beresp_bodybytes']),
230                                'body', 'incremental', -8, 1000]]}})
231
232
233 def find_percent(value1, value2, multiply):
234     # If value2 is 0 return 0
235     if not value2:
236         return 0
237     else:
238         return round(float(value1) / float(value2) * multiply)