summaryrefslogtreecommitdiffstats
path: root/collectors/python.d.plugin/logind/logind.chart.py
diff options
context:
space:
mode:
Diffstat (limited to 'collectors/python.d.plugin/logind/logind.chart.py')
-rw-r--r--collectors/python.d.plugin/logind/logind.chart.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/collectors/python.d.plugin/logind/logind.chart.py b/collectors/python.d.plugin/logind/logind.chart.py
index bfc486c7f..708668649 100644
--- a/collectors/python.d.plugin/logind/logind.chart.py
+++ b/collectors/python.d.plugin/logind/logind.chart.py
@@ -8,7 +8,13 @@ from bases.FrameworkServices.ExecutableService import ExecutableService
priority = 59999
disabled_by_default = True
-ORDER = ['sessions', 'users', 'seats']
+LOGINCTL_COMMAND = 'loginctl list-sessions --no-legend'
+
+ORDER = [
+ 'sessions',
+ 'users',
+ 'seats',
+]
CHARTS = {
'sessions': {
@@ -39,9 +45,9 @@ CHARTS = {
class Service(ExecutableService):
def __init__(self, configuration=None, name=None):
ExecutableService.__init__(self, configuration=configuration, name=name)
- self.command = 'loginctl list-sessions --no-legend'
self.order = ORDER
self.definitions = CHARTS
+ self.command = LOGINCTL_COMMAND
def _get_data(self):
ret = {