You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
203 B
17 lines
203 B
10 years ago
|
#!/bin/bash
|
||
|
|
||
|
case $1 in
|
||
|
queue_local)
|
||
|
/usr/bin/qmqtool -QL
|
||
|
;;
|
||
|
queue_remote)
|
||
|
/usr/bin/qmqtool -QR
|
||
|
;;
|
||
|
queue_total)
|
||
|
/usr/bin/qmqtool -Ql
|
||
|
;;
|
||
|
*)
|
||
|
echo 'ZBX_NOTSUPPORTED'
|
||
|
;;
|
||
|
esac
|