mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	DO NOT DELETE THIS TEXT #### Please note > Please read this information carefully. You can run `./scripts/pre-commit.php` to check your code before submitting. - [x] Have you followed our [code guidelines?](http://docs.librenms.org/Developing/Code-Guidelines/) #### Testers If you would like to test this pull request then please run: `./scripts/github-apply <pr_id>`, i.e `./scripts/github-apply 5926`
		
			
				
	
	
		
			40 lines
		
	
	
		
			984 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			984 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env php
 | |
| <?php
 | |
| 
 | |
| $init_modules = ['alerts', 'laravel'];
 | |
| require __DIR__ . '/../includes/init.php';
 | |
| 
 | |
| $options = getopt('t:h:r:p:s:d::');
 | |
| 
 | |
| if (isset($options['r']) && isset($options['h'])) {
 | |
|     set_debug(isset($options['d']));
 | |
| 
 | |
|     $rule_id = (int)$options['r'];
 | |
|     $device_id = ctype_digit($options['h']) ? $options['h'] : getidbyname($options['h']);
 | |
|     $where = "alerts.device_id = $device_id && alerts.rule_id = $rule_id";
 | |
|     $alerts = loadAlerts($where);
 | |
|     if (empty($alerts)) {
 | |
|         echo "No active alert found, please check that you have the correct ids";
 | |
|         exit(2);
 | |
|     }
 | |
|     $alert = $alerts[0];
 | |
| 
 | |
|     $alert['details']['delay'] = 0;
 | |
|     $alert['note'] = 'Testing';
 | |
|     IssueAlert($alert);
 | |
| } else {
 | |
|     c_echo("
 | |
| Info:
 | |
|     Use this to send an actual alert via transports that is currently active.
 | |
| Usage:
 | |
|     -r Is the Rule ID.
 | |
|     -h Is the device ID or hostname
 | |
|     -d Debug
 | |
|     
 | |
| Example:
 | |
| ./scripts/test-alert.php -r 4 -d -h localhost
 | |
| 
 | |
| ");
 | |
|     exit(1);
 | |
| }
 |