aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornico <nico@magicbroccoli.de>2019-12-28 22:37:07 +0100
committernico <nico@magicbroccoli.de>2019-12-28 22:37:07 +0100
commit7200131614a27a58a62eac4bd520fbc0c50fa32b (patch)
treea46d89f0c8e866288b7f1ab2b7f3de4bb9d3bf86
parentee25eb6e2382c4c0699338bba851eba13ba03eaf (diff)
alignment changes
* update influx plugin use the rest interface * align influx.py to ejabberdrpc changes * replace format with f-strings * minor performance improvements
-rw-r--r--config_example.json2
-rw-r--r--influx.py65
-rw-r--r--requirements.txt3
3 files changed, 36 insertions, 34 deletions
diff --git a/config_example.json b/config_example.json
index 9f9e3d0..ad984aa 100644
--- a/config_example.json
+++ b/config_example.json
@@ -10,7 +10,7 @@
"--comment": "influxdb",
"influxdb_host": "localhost",
"influxdb_port": 8086,
- "database": "ejabberd",
+ "influxdb_db": "ejabberd",
"--comment": "prometheus",
"prometheus_port": 8080,
diff --git a/influx.py b/influx.py
index b267e23..a2d5bfc 100644
--- a/influx.py
+++ b/influx.py
@@ -2,8 +2,8 @@
# -*- coding: utf-8 -*-
import json
-import time
import os
+import time
from influxdb import InfluxDBClient
@@ -11,19 +11,19 @@ from ejabberdrpc import EjabberdMetrics
class Influx:
- def __init__(self, metrics, client):
- self._metrics = metrics
- self.client = client
+ def __init__(self, data, cld):
+ self._metrics = data
+ self.client = cld
@staticmethod
def _timestamp():
return int(time.time() * 1000)
@staticmethod
- def _rmspace(key: str = None, value=None):
+ def _rmspace(key: str = None, value: (str, int) = None):
try:
- key = key.replace(" ", "\ ")
- value = value.replace(" ","\ ")
+ key = key.replace(' ', '\ ')
+ value = value.replace(' ', '\ ')
except (TypeError, AttributeError):
pass
@@ -37,73 +37,74 @@ class Influx:
# create tag_key=tag_value pairs for all elements and append them to name
for k, v in tags.items():
- output += ",{}={}".format(*self._rmspace(k, v))
+ output += ',{}={}'.format(*self._rmspace(k, v))
# append key=value to name
output += ' {}={}i {}'.format(*self._rmspace(key, value), ts)
return output
- def writeMetrics(self):
- name = "ejabberd"
+ def write_metrics(self):
data = list()
# global values
cur_ts = self._timestamp()
- data.append("{m} s2s_in={v}i {ts}".format(m=name, v=self._metrics.get_s2s_in(), ts=cur_ts))
- data.append("{m} s2s_out={v}i {ts}".format(m=name, v=self._metrics.get_s2s_out(), ts=cur_ts))
+ data.append(f'ejabberd s2s_in={self._metrics.get_s2s_in()}i, {cur_ts}')
+ data.append(f'ejabberd s2s_out={self._metrics.get_s2s_out()}i, {cur_ts}')
# vhost values
for vhost in self._metrics.get_vhosts():
cur_ts = self._timestamp()
- data.append("{m},vhost={vh} registered={v}i {ts}".format(m=name, vh= vhost, v=self._metrics.get_registered(vhost),ts=cur_ts))
- data.append("{m},vhost={vh} muc={v}i {ts}".format(m=name, vh= vhost, v=self._metrics.get_muc(vhost), ts=cur_ts))
+ data.append(f'ejabberd,vhost={vhost} registered={self._metrics.get_registered(vhost)}i {cur_ts}')
+ data.append(f'ejabberd,vhost={vhost} muc={self._metrics.get_muc(vhost)}i {cur_ts}')
# vhost statistics on their respective node
for node in self._metrics.get_nodes():
cur_ts = self._timestamp()
for k, v in self._metrics.get_online_by_status(node=node, vhost=vhost).items():
- data.append(self._parse("ejabberd_online_status", k, v, cur_ts, {"node": node, "vhost": vhost}))
+ data.append(self._parse('ejabberd_online_status', k, v, cur_ts, {'node': node, 'vhost': vhost}))
for k, v in self._metrics.get_online_by_client(node=node, vhost=vhost).items():
- data.append(self._parse("ejabberd_online_client", k, v, cur_ts, {"node": node, "vhost": vhost}))
+ data.append(self._parse('ejabberd_online_client', k, v, cur_ts, {'node': node, 'vhost': vhost}))
for k, v in self._metrics.get_online_by_ipversion(node=node, vhost=vhost).items():
- data.append(self._parse("ejabberd_online_ipversion", k, v, cur_ts, {"node": node, "vhost": vhost}))
+ data.append(self._parse('ejabberd_online_ipversion', k, v, cur_ts, {'node': node, 'vhost': vhost}))
for k, v in self._metrics.get_online_by_connection(node=node, vhost=vhost).items():
- data.append(self._parse("ejabberd_online_connection", k, v, cur_ts, {"node": node, "vhost": vhost}))
+ data.append(self._parse('ejabberd_online_connection', k, v, cur_ts, {'node': node, 'vhost': vhost}))
for cl, ipv in self._metrics.get_online_client_by_ipversion(node=node, vhost=vhost).items():
for k, v in ipv.items():
- data.append(self._parse("ejabberd_online_client_ipversion", k, v, cur_ts, {"vhost": vhost, "node": node, "ipversion": k, "client": cl}))
+ data.append(self._parse('ejabberd_online_client_ipversion', k, v, cur_ts,
+ {'vhost': vhost, 'node': node, 'ipversion': k, 'client': cl}))
# write output to database
self.client.write_points(data, time_precision='ms', batch_size=10000, protocol='line')
-if __name__ == "__main__":
+if __name__ == '__main__':
# load config
path = os.path.dirname(__file__)
- with open("/".join([path, "config.json"]), "r", encoding="utf-8") as f:
+ with open('/'.join([path, 'config.json']), 'r', encoding='utf-8') as f:
config = json.load(f)
- url = config['url'] if "url" in config else "http://localhost:4560"
- login = config['login'] if "login" in config else None
- api = config['api'] if "api" in config else "rpc"
-
+ # creds and params
+ url = config['url'] if 'url' in config else 'http://localhost:5280/api'
+ login = config['login'] if 'login' in config else None
+ api = config['api'] if 'api' in config else 'rest'
+
# config influxdb
- influxdb_host = config['influxdb_host'] if "influxdb_host" in config else "localhost"
- influxdb_port = config['influxdb_port'] if "influxdb_port" in config else 8086
- influxdb_database = config['database'] if "database" in config else "ejabberd"
+ influx_host = config['influxdb_host'] if 'influxdb_host' in config else 'localhost'
+ influx_port = config['influxdb_port'] if 'influxdb_port' in config else 8086
+ influx_dbname = config['influxdb_db'] if 'influxdb_db' in config else 'ejabberd'
- # init global handler
+ # init handler
metrics = EjabberdMetrics(url, login, api)
- client = InfluxDBClient(host=influxdb_host, port=influxdb_port, database=influxdb_database, retries=5)
+ client = InfluxDBClient(host=influx_host, port=influx_port, database=influx_dbname, retries=5)
# create database only once
- client.create_database(influxdb_database)
+ client.create_database(influx_dbname)
# init influx class
influx = Influx(metrics, client)
while True:
metrics.update()
- influx.writeMetrics()
+ influx.write_metrics()
time.sleep(10)
diff --git a/requirements.txt b/requirements.txt
index d923c8d..d91f184 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1 +1,2 @@
-influxdb>=5.2.0 \ No newline at end of file
+influxdb>=5.2.0
+requests>=2.21.0