We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 462e6a0 commit 4fc9899Copy full SHA for 4fc9899
1 file changed
check-plugins/procs/procs
@@ -33,7 +33,7 @@ except ImportError:
33
34
35
__author__ = 'Linuxfabrik GmbH, Zurich/Switzerland'
36
-__version__ = '2026040801'
+__version__ = '2026040802'
37
38
DESCRIPTION = """Prints the number of currently running processes and warns on metrics like process
39
counts, process memory usage or CPU usage. You may filter the process list by
@@ -518,7 +518,7 @@ def main():
518
args.USERNAME or '',
519
args.STATUS or '',
520
)
521
- filter_hash = hashlib.md5(filter_key.encode()).hexdigest()
+ filter_hash = hashlib.sha256(filter_key.encode()).hexdigest()
522
523
conn = lib.base.coe(lib.db_sqlite.connect(
524
filename='linuxfabrik-monitoring-plugins-procs.db',
0 commit comments