Files
librenms-librenms/resources/views/widgets/alertlog_stats.blade.php
louis-oui 6931df8990 Alertlog stats dashboard widget (#10967)
* Dashboard for alertlog stats

* Dashboard for alertlog stats

* Dashboard for alertlog stats

* Dashboard for alertlog stats

* Dashboard for alertlog stats

* Cleanup

* Cleanup

* Cleanup

* date selection

* date selection

* fix js rule details

* cleanup js

* dummy commit to reload CI/CD

* dummy commit to reload CI/CD
2020-01-23 08:16:30 -06:00

32 lines
884 B
PHP

<div class="row">
<div class="col-sm-12">
<span id="message"></span>
</div>
</div>
<div class="table-responsive">
<table id="alertlog-stats_{{ $id }}" class="table table-hover table-condensed table-striped">
<thead>
<tr>
<th data-column-id="count">Count</th>
<th data-column-id="hostname">Device</th>
<th data-column-id="alert_rule">Alert rule</th>
</tr>
</thead>
</table>
</div>
<script>
$("#alertlog-stats_{{ $id }}").bootgrid({
ajax: true,
rowCount: [50, 100, 250, -1],
post: function () {
return {
id: "alertlog-stats",
device_id: "",
min_severity: '{{ $min_severity }}',
time_interval: '{{ $time_interval }}'
};
},
url: "ajax_table.php"
});
</script>