????
Current Path : /usr/local/lib/python3.9/site-packages/agent360/plugins/ |
Current File : //usr/local/lib/python3.9/site-packages/agent360/plugins/asterisk.py |
#!/usr/bin/env python # -*- coding: utf-8 -*- import plugins import subprocess class Plugin(plugins.BasePlugin): __name__ = 'asterisk' def run(self, config): ip = config.get(__name__, 'sbcip') p = subprocess.Popen("sudo asterisk -rx 'core show calls' | grep 'active' | cut -f1 -d ' '", stdout=subprocess.PIPE, shell=True) p = p.communicate()[0].decode('utf-8').replace("\n", "") incoming = subprocess.Popen("sudo asterisk -rx 'core show channels verbose' | cut -c1-15 | grep 'pstn_' | wc -l", stdout=subprocess.PIPE, shell=True) incoming = incoming.communicate()[0].decode('utf-8').replace("\n", "") devices = subprocess.Popen("sudo asterisk -rx 'sip show peers' | grep '%s' | wc -l" % (ip), stdout=subprocess.PIPE, shell=True) devices = devices.communicate()[0].decode('utf-8').replace("\n", "") res = { "calls": p, "incomingcalls": incoming, "devices": devices } return res if __name__ == '__main__': Plugin().execute()