[ Index ] |
PHP Cross Reference of Yamoon 0.9.0 |
[Summary view] [Print] [Text view]
1 <?php 2 require_once ('Yamoon/Global.php'); 3 include ('header.php'); 4 5 $probe_id = $_GET['probe_id']; 6 $probe = new Probe($config, $probe_id); 7 $data = $probe->getStats(); 8 ?> 9 10 <p> 11 <h3>Status for probe number <?php print $probe->id ?></h3> 12 <table> 13 <tr> 14 <td class='title'>Type</td><td class='field'><?php print $probe->service->name ?></td> 15 </tr> 16 <tr> 17 <td class='title'>Host</td><td class='field'><?php print $probe->host->name ?></td> 18 </tr> 19 <tr> 20 <td class='title'>Last Year</td><td class='field'><?php print $data['year_status_percent'] ?> %</td> 21 </tr> 22 <tr> 23 <td class='title'>Last Month</td><td class='field'><?php print $data['month_status_percent'] ?> %</td> 24 </tr> 25 <tr> 26 <td class='title'>Last Day</td><td class='field'><?php print $data['day_status_percent'] ?> %</td> 27 </tr> 28 </table> 29 <p> 30 31 <?php 32 include ('footer.php'); 33 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Sat Feb 19 17:29:53 2005 | Cross-referenced by PHPXref 0.6 |