aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin/Geno <geno+dev@fireorbit.de>2019-12-07 14:48:26 +0100
committerMartin/Geno <geno+dev@fireorbit.de>2019-12-07 14:48:26 +0100
commit6554a1f982b09c4aadf2f6b1d5f110270cfe7def (patch)
tree580d2a3cfe59d67762cbc2a1ceb885a8e615576a
parente3e3222f203d8ec209bd63d1229090472ef7ba49 (diff)
parent9c33cf856b7fc51300f7c803195a8b75f7fa127e (diff)
Merge branch 'customizability' into 'master'
Influxdb plugin changes See merge request sum7/ejabberd-metrics!2
-rw-r--r--contrib/init/linux-systemd/ejabberd-influxdb.service2
-rw-r--r--[-rwxr-xr-x]ejabberdrpc.py8
-rw-r--r--influx.py19
-rw-r--r--requirements.txt1
4 files changed, 20 insertions, 10 deletions
diff --git a/contrib/init/linux-systemd/ejabberd-influxdb.service b/contrib/init/linux-systemd/ejabberd-influxdb.service
index bade80f..4ac487e 100644
--- a/contrib/init/linux-systemd/ejabberd-influxdb.service
+++ b/contrib/init/linux-systemd/ejabberd-influxdb.service
@@ -4,7 +4,7 @@ Description=ejabberd2influxdb
[Service]
Type=simple
User=nobody
-Group=nobody
+Group=nogroup
ExecStart=/opt/ejabberd-metrics/influx.py
Restart=always
RestartSec=5s
diff --git a/ejabberdrpc.py b/ejabberdrpc.py
index cee769b..f1215e9 100755..100644
--- a/ejabberdrpc.py
+++ b/ejabberdrpc.py
@@ -29,10 +29,16 @@ class EjabberdMetrics():
"Conv6ations for Sum7": ["Conversations with IPv6"],
"Conversations": [],
"Pix-Art Messenger": [],
+ "Gajim": ["gajim"],
+ "Psi+": [],
"jitsi": [],
- "dino": [],
+ "Dino": ["dino"],
"poezio": [],
+ "profanity": [],
+ "Xabber": [],
+ "ChatSecure": ["chatsecure"]
}
+
for client, names in clientmap.items():
for c in names:
if c in resource:
diff --git a/influx.py b/influx.py
index fcf2f41..049bef0 100644
--- a/influx.py
+++ b/influx.py
@@ -3,6 +3,7 @@
import json
import time
+import os
from influxdb import InfluxDBClient
@@ -57,7 +58,7 @@ class Influx:
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))
- # vhost statistics on their repsective node
+ # 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():
@@ -73,24 +74,26 @@ class Influx:
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, database='custom', time_precision='ms', batch_size=10000, protocol='line')
+ self.client.write_points(data, time_precision='ms', batch_size=10000, protocol='line')
+
if __name__ == "__main__":
- with open("config.json", "r", encoding="utf-8") as f:
- login = json.load(f)
+ # load config
+ path = os.path.dirname(__file__)
+ with open("/".join([path, "config.json"]), "r", encoding="utf-8") as f:
+ config = json.load(f)
# init global handler
- metrics = EjabberdMetrics("http://localhost:4560", login)
- client = InfluxDBClient(host='localhost', port=8086, database='custom')
+ metrics = EjabberdMetrics("http://localhost:4560", config['login'])
+ client = InfluxDBClient(host='localhost', port=8086, database=config['database'], retries=5)
# create database only once
- client.create_database('custom')
+ client.create_database(config['database'])
# init influx class
influx = Influx(metrics, client)
while True:
- # TODO this will fail when the connection drops try except maybe?
metrics.update()
influx.writeMetrics()
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000..d923c8d
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1 @@
+influxdb>=5.2.0 \ No newline at end of file