aboutsummaryrefslogtreecommitdiffstats
path: root/control.py
diff options
context:
space:
mode:
Diffstat (limited to 'control.py')
-rw-r--r--control.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/control.py b/control.py
index f865444..ecf3994 100644
--- a/control.py
+++ b/control.py
@@ -73,6 +73,16 @@ class EjabberdCtl(EjabberdApi):
return result
return result["s2s_outgoing"]
+ def fetch_uptime(self):
+ result = self.cmd("stats", {"name": "uptimeseconds"})
+ if "stat" in result:
+ return result["stat"]
+
+ def fetch_processes(self):
+ result = self.cmd("stats", {"name": "processes"})
+ if "stat" in result:
+ return result["stat"]
+
def fetch_registered_count(self, vhost=None):
if vhost is None:
result = self.cmd("stats", {"name":"registeredusers"})