mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
28 lines
587 B
PHP
28 lines
587 B
PHP
<?php
|
|
$no_refresh = TRUE;
|
|
?>
|
|
<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="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>
|