summaryrefslogtreecommitdiffstats
path: root/python.d/exim.chart.py
diff options
context:
space:
mode:
authorpaulfantom <paulfantom@gmail.com>2016-07-07 12:36:44 +0200
committerpaulfantom <paulfantom@gmail.com>2016-07-07 12:36:44 +0200
commitb41774a194082eb532c1d6f796c6ec014f4a5c5d (patch)
tree6f4df6f7bcecbfc2551bcaed07eb2e3b041a585f /python.d/exim.chart.py
parentf862e71a06e593fed7a3fcaffde7d5f0f5d50f36 (diff)
search for command + exim.chart.py
Diffstat (limited to 'python.d/exim.chart.py')
-rw-r--r--python.d/exim.chart.py41
1 files changed, 41 insertions, 0 deletions
diff --git a/python.d/exim.chart.py b/python.d/exim.chart.py
new file mode 100644
index 0000000000..a267c2396e
--- /dev/null
+++ b/python.d/exim.chart.py
@@ -0,0 +1,41 @@
+# -*- coding: utf-8 -*-
+# Description: exim netdata python.d module
+# Author: Pawel Krupa (paulfantom)
+
+from base import ExecutableService
+
+# default module values (can be overridden per job in `config`)
+# update_every = 2
+priority = 60000
+retries = 5
+
+# charts order (can be overridden if you want less charts, or different order)
+ORDER = ['qemails']
+
+CHARTS = {
+ 'qemails': {
+ 'options': [None, "Exim Queue Emails", "emails", 'queue', 'exim.queued.emails', 'line'],
+ 'lines': [
+ ['emails', None, 'absolute']
+ ]}
+}
+
+
+class Service(ExecutableService):
+ def __init__(self, configuration=None, name=None):
+ ExecutableService.__init__(self, configuration=configuration, name=name)
+ self.command = "exim -bpc"
+ self.order = ORDER
+ self.definitions = CHARTS
+
+ def _get_data(self):
+ """
+ Format data received from shell command
+ :return: dict
+ """
+ try:
+ raw = self._get_raw_data()[-1].split(' ')
+ return {'emails': raw[4],
+ 'size': raw[1]}
+ except (ValueError, AttributeError):
+ return None