| Server IP : 199.250.200.62 / Your IP : 216.73.217.89 Web Server : Apache System : Linux vps37394.inmotionhosting.com 3.10.0-1160.119.1.vz7.224.4 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64 User : jasonp18 ( 1000) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /usr/local/ssl/share/dstat/ |
Upload File : |
### Author: Dag Wieers <dag$wieers,com>
class dstat_plugin(dstat):
"""
Number of active dbus sessions.
"""
def __init__(self):
self.name = 'dbus'
self.nick = ('sys', 'ses')
self.vars = ('system', 'session')
self.type = 'd'
self.width = 3
self.scale = 100
def check(self):
# dstat.info(1, 'The dbus module is an EXPERIMENTAL module.')
try:
global dbus
import dbus
except:
raise Exception, 'Needs python-dbus module'
try:
self.sysbus = dbus.Interface(dbus.SystemBus().get_object('org.freedesktop.DBus', '/org/freedesktop/DBus'), 'org.freedesktop.DBus')
except:
raise Exception, 'Unable to connect to dbus message bus'
try:
self.sesbus = dbus.Interface(dbus.SessionBus().get_object('org.freedesktop.DBus', '/org/freedesktop/DBus'), 'org.freedesktop.DBus')
except:
self.sesbus = None
return True
def extract(self):
self.val['system'] = len(self.sysbus.ListNames()) - 1
try:
self.val['session'] = len(self.sesbus.ListNames()) - 1
except:
self.val['session'] = -1
# print dir(b); print dir(s); print dir(d); print d.ListServices()
# print dir(d)
# print d.ListServices()
# vim:ts=4:sw=4:et