File tree Expand file tree Collapse file tree 1 file changed +12
-13
lines changed Expand file tree Collapse file tree 1 file changed +12
-13
lines changed Original file line number Diff line number Diff line change 1111"""See the check's README for more details.
1212"""
1313
14- import argparse # pylint: disable=C0413
15- import sys # pylint: disable=C0413
14+ import argparse
15+ import sys
1616
17- import lib .args # pylint: disable=C0413
18- import lib .base # pylint: disable=C0413
19- import lib .shell # pylint: disable=C0413
20- import lib .lftest # pylint: disable=C0413
21- import lib .time # pylint: disable=C0413
22- from lib .globals import (STATE_CRIT , STATE_OK , # pylint: disable=C0413
23- STATE_UNKNOWN , STATE_WARN )
17+ import lib .args
18+ import lib .base
19+ import lib .shell
20+ import lib .lftest
21+ import lib .time
22+ from lib .globals import (STATE_CRIT , STATE_OK , STATE_UNKNOWN , STATE_WARN )
2423
2524try :
26- import psutil # pylint: disable=C0413
25+ import psutil
2726except ImportError :
2827 print ('Python module "psutil" is not installed.' )
2928 sys .exit (STATE_UNKNOWN )
3029
3130
3231__author__ = 'Linuxfabrik GmbH, Zurich/Switzerland'
33- __version__ = '2025021501 '
32+ __version__ = '2025090701 '
3433
3534DESCRIPTION = """A working Linuxfabrik monitoring plugin, written in Python 3, as a basis for
36- further development, and much more text to help admins get this check up and
37- running."""
35+ further development, and much more text to help admins get this check up and
36+ running."""
3837
3938DEFAULT_WARN = 80
4039DEFAULT_CRIT = 90
You can’t perform that action at this time.
0 commit comments