mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-31 19:34:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHTML
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHTML
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /** @var \Icinga\Module\Monitoring\Object\MonitoredObject $object */
 | |
| 
 | |
| if ($object->getType() === $object::TYPE_HOST) {
 | |
|     $reschedule = $this->href(
 | |
|         'monitoring/host/reschedule-check',
 | |
|         array('host' => $object->getName())
 | |
|     );
 | |
|     $checkAttempts = $object->host_current_check_attempt . '/' . $object->host_max_check_attempts;
 | |
|     $stateType = (int) $object->host_state_type;
 | |
| } else {
 | |
|     $reschedule = $this->href(
 | |
|         'monitoring/service/reschedule-check',
 | |
|         array('host' => $object->getHost()->getName(), 'service' => $object->getName())
 | |
|     );
 | |
|     $checkAttempts = $object->service_attempt;
 | |
|     $stateType = (int) $object->service_state_type;
 | |
| }
 | |
| 
 | |
| ?>
 | |
| 
 | |
| <tr>
 | |
|     <th><?= $this->translate('Last check') ?></th>
 | |
|     <td data-base-target="_self">
 | |
|         <?= $checkNowForm ?>
 | |
|         <?= $this->timeSince($object->last_check) ?>
 | |
|     </td>
 | |
| </tr>
 | |
| <tr>
 | |
|   <th><?= $this->translate('Next check') ?></th>
 | |
|   <td>
 | |
|       <a href="<?= $reschedule ?>">
 | |
|           <?= $this->icon('reschedule') ?> <?= $this->translate('Reschedule') ?>
 | |
|       </a>
 | |
|       <?= $this->timeUntil($object->next_check) ?>
 | |
|   </td>
 | |
| </tr>
 | |
| <tr>
 | |
|     <th><?= $this->translate('Check attempts') ?></th>
 | |
|     <?php if ($stateType === 0): ?>
 | |
|     <td><?= $checkAttempts ?> <?= $this->translate('(soft state)') ?></td>
 | |
|     <?php else: ?>
 | |
|     <td><?= $checkAttempts ?> <?= $this->translate('(hard state)') ?></td>
 | |
|     <?php endif; ?>
 | |
| </tr>
 | |
| <?php if ($object->check_execution_time): ?>
 | |
| <tr>
 | |
|   <th><?= $this->translate('Check execution time') ?></th>
 | |
|   <td><?= $object->check_execution_time ?>s</td>
 | |
| </tr>
 | |
| <?php endif ?>
 | |
| <?php if ($object->check_latency): ?>
 | |
| <tr>
 | |
|  <th><?= $this->translate('Check latency') ?></th>
 | |
|  <td><?= $object->check_latency ?>s</td>
 | |
| </tr>
 | |
| <?php endif ?>
 |