mirror of
				https://github.com/zulip/zulip.git
				synced 2025-10-31 20:13:46 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			372 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			372 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| set -e
 | |
| 
 | |
| queue=$1
 | |
| 
 | |
| if [ -z "$queue" ]; then
 | |
|     echo "Usage: $0 <queue-name>"
 | |
|     exit 2
 | |
| fi
 | |
| 
 | |
| ZULIP_DIR=/home/zulip/deployments/current
 | |
| STATE_DIR=/var/lib/nagios_state
 | |
| STATE_FILE=$STATE_DIR/check-rabbitmq-consumers-$queue
 | |
| 
 | |
| "$ZULIP_DIR/scripts/nagios/check-rabbitmq-consumers" "--queue=$queue" &> "${STATE_FILE}-tmp";
 | |
| mv "${STATE_FILE}-tmp" "$STATE_FILE"
 |