mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 14:03:30 +00:00 
			
		
		
		
	This new algorithm is designed to avoid monitoring paging when a queue simply has bursty behavior.
		
			
				
	
	
		
			13 lines
		
	
	
		
			288 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			288 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env python3
 | 
						|
 | 
						|
import os
 | 
						|
import sys
 | 
						|
 | 
						|
ZULIP_PATH = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
 | 
						|
sys.path.append(ZULIP_PATH)
 | 
						|
 | 
						|
from scripts.lib.check_rabbitmq_queue import check_rabbitmq_queues
 | 
						|
 | 
						|
if __name__ == "__main__":
 | 
						|
    check_rabbitmq_queues()
 |