mirror of
https://github.com/librenms/librenms-agent.git
synced 2024-05-09 09:54:52 +00:00
* Format with isort * Format with Black * Fix CRLF * Format with shellcheck * Fix some warning * Fix PHP style * Dont modifiy check_mk files * Fixes
14 lines
284 B
Bash
Executable File
14 lines
284 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#Written by Valec 2006. Steal and share.
|
|
#Get postfix queue lengths
|
|
|
|
#extend mailq /opt/observer/scripts/getmailq.sh
|
|
|
|
QUEUES="incoming active deferred hold"
|
|
|
|
for i in $QUEUES; do
|
|
COUNT=$(qshape "$i" | grep TOTAL | awk '{print $2}')
|
|
printf "$COUNT\n"
|
|
done
|