10 lines
208 B
Python
10 lines
208 B
Python
|
import psutil
|
||
|
class User:
|
||
|
interval = 10;
|
||
|
loopCount = 0
|
||
|
def __init__(self, exporter):
|
||
|
self.exporter = exporter
|
||
|
|
||
|
def run(self):
|
||
|
self.exporter.gauge("users", len(psutil.users()))
|