librenms-librenms/html/pages/poll-log.inc.php
2015-08-29 21:36:19 +05:30

30 lines
677 B
PHP

<?php
$no_refresh = true;
$pagetitle[] = 'Poll Log';
?>
<table id="poll-log" class="table table-condensed table-hover table-striped">
<thead>
<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>
</tr>
</thead>
</table>
<script>
var grid = $("#poll-log").bootgrid({
ajax: true,
post: function ()
{
return {
id: "poll-log"
};
},
url: "ajax_table.php"
});
</script>