Merge branch 'maint/7.0'
[ninja.git] / application / widgets / monitoring_performance / view.php
blob4239c27c67a3993bbe51cc6d885365dd93c3f800
1 <?php defined('SYSPATH') OR die('No direct access allowed.'); ?>
2 <table class="w-table">
3 <tr>
4 <td class="icon dark"><span class="icon-20 x20-time"></span></td>
5 <td>
6 <?php echo html::anchor('extinfo/performance', _('Service Check Execution Time').':' ) ?><br />
7 <?php echo html::anchor('extinfo/performance', $min_service_execution_time.' / '.$max_service_execution_time.' / '.$average_service_execution_time.' '._('sec')) ?>
8 </td>
9 </tr>
10 <tr>
11 <td class="icon dark"><span class="icon-20 x20-time_latency"></span></td>
12 <td>
13 <?php echo html::anchor('extinfo/performance', _('Service Check Latency').':' ) ?><br />
14 <?php echo html::anchor('extinfo/performance', $min_service_latency.' / '.$max_service_latency.' / '.$average_service_latency.' '._('sec')) ?>
15 </td>
16 </tr>
17 <tr>
18 <td class="icon dark"><span class="icon-20 x20-time"></span></td>
19 <td>
20 <?php echo html::anchor('extinfo/performance', _('Host Check Execution Time').':') ?><br />
21 <?php echo html::anchor('extinfo/performance', $min_host_execution_time.' / '.$max_host_execution_time.' / '.$average_host_execution_time.' '._('sec')) ?>
22 </td>
23 </tr>
24 <tr>
25 <td class="icon dark"><span class="icon-20 x20-time_latency"></span></td>
26 <td>
27 <?php echo html::anchor('extinfo/performance', _('Host Check Latency').':') ?><br />
28 <?php echo html::anchor('extinfo/performance', $min_host_latency.' / '.$max_host_latency.' / '.$average_host_latency.' '._('sec')) ?>
29 </td>
30 </tr>
31 <tr>
32 <td class="icon dark"><span class="icon-20 x20-share"></span></td>
33 <td>
34 <?php echo html::anchor('status/service/?serviceprops='.nagstat::SERVICE_ACTIVE_CHECK, _('# Active Host / Service Checks').':') ?><br />
35 <?php echo html::anchor('status/host/?hostprops='.nagstat::HOST_ACTIVE_CHECK, $total_active_host_checks) ?>
37 <?php echo html::anchor('status/service/?serviceprops='.nagstat::SERVICE_ACTIVE_CHECK, $total_active_service_checks) ?>
38 </td>
39 </tr>
40 <tr>
41 <td class="icon dark"><span class="icon-20 x20-share2"></span></td>
42 <td>
43 <?php echo html::anchor('status/service/?serviceprops='.nagstat::SERVICE_PASSIVE_CHECK, _('# Passive Host / Service Checks').':') ?><br />
44 <?php echo html::anchor('status/host/?hostprops='.nagstat::HOST_PASSIVE_CHECK, $total_passive_host_checks) ?>
46 <?php echo html::anchor('status/host/?hostprops='.nagstat::HOST_PASSIVE_CHECK, $total_passive_service_checks) ?>
47 </td>
48 </tr>
49 </table>