mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			677 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			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>
 |