2021-05-31 19:40:45 +02:00
|
|
|
<h4>Top {{ $interface_count }} errored interfaces polled within {{ $time_interval }} minutes</h4>
|
|
|
|
|
<div class="table-responsive">
|
|
|
|
|
<table class="table table-hover table-condensed table-striped bootgrid-table">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
2021-11-28 21:17:11 -06:00
|
|
|
<th class="text-left">{{ __('Device') }}</th>
|
|
|
|
|
<th class="text-left">{{ __('Interface') }}</th>
|
|
|
|
|
<th class="text-left">{{ __('Error Rate') }}</th>
|
2021-05-31 19:40:45 +02:00
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
@foreach($ports as $port)
|
|
|
|
|
<tr>
|
2021-09-10 08:07:08 -05:00
|
|
|
<td class="text-left"><x-device-link :device="$port->device">{{$port->device->shortDisplayName() }}</x-device-link></td>
|
|
|
|
|
<td class="text-left"><x-port-link :port="$port">{{ $port->getShortLabel() }}</x-port-link></td>
|
2022-03-21 01:26:08 +00:00
|
|
|
<td class="text-left"><x-port-link :port="$port"><x-graph :port="$port" type="port_errors" width="150" height="21"></x-graph></x-port-link></td>
|
2021-05-31 19:40:45 +02:00
|
|
|
</tr>
|
|
|
|
|
@endforeach
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|