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