librenms-librenms/html/pages/poll-log.inc.php

30 lines
677 B
PHP
Raw Normal View History

2015-03-25 22:05:51 +01:00
<?php
2015-07-13 20:10:26 +02:00
$no_refresh = true;
2015-08-29 21:36:19 +05:30
$pagetitle[] = 'Poll Log';
?>
<table id="poll-log" class="table table-condensed table-hover table-striped">
<thead>
2015-03-25 22:05:51 +01:00
<tr>
<th data-column-id="hostname">Hostname</th>
<th data-column-id="last_polled">Last Polled</th>
<th data-column-id="poller_group">Poller Group</th>
<th data-column-id="last_polled_timetaken" data-order="desc">Polling Duration (Seconds)</th>
2015-03-25 22:05:51 +01:00
</tr>
</thead>
</table>
2015-03-25 22:05:51 +01:00
<script>
2015-03-25 22:05:51 +01:00
var grid = $("#poll-log").bootgrid({
ajax: true,
post: function ()
{
return {
id: "poll-log"
};
},
url: "ajax_table.php"
});
</script>