mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-31 03:14:31 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			305 B
		
	
	
	
		
			PHTML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			305 B
		
	
	
	
		
			PHTML
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| if ($object->is_flapping) {
 | |
|     printf(
 | |
|         "<tr><th>%s</th><td>%s %s</td></tr>\n",
 | |
|         'Flapping',
 | |
|         $this->icon('flapping', 'Flapping'),
 | |
|         sprintf(
 | |
|             'Currently flapping with a %.2f%% state change rate',
 | |
|             $object->percent_state_change
 | |
|         )
 | |
|     );
 | |
| }
 | |
| 
 |