@extends('layouts.librenmsv1') @section('title', __('Overview')) @section('content')
@if (Config::get('vertical_summary'))
@else
@endif
@foreach ($devices_down as $device)
{!! \LibreNMS\Util\Url::deviceLink($device, $device->shortDisplayName()) !!}
{{ __('Device Down') }}
{{ \LibreNMS\Util\StringHelpers::shortenText($device->location, 20) }}
@endforeach @foreach ($ports_down as $port)
{!! \LibreNMS\Util\Url::deviceLink($port->device, $port->device->shortDisplayName()) !!}
{{ __('Port Down') }}
{!! \LibreNMS\Util\Url::PortLink($port) !!} @if($port->ifAlias)
{{ \LibreNMS\Util\StringHelpers::shortenText($port->getLabel(), 20) }} @endif
@endforeach @foreach ($services_down as $service)
{!! \LibreNMS\Util\Url::deviceLink($service->device, $service->device->shortDisplayName()) !!} {{ __('Service Down') }} {{ $service->service_type }}
@endforeach @foreach ($bgp_down as $bgp)
{!! \LibreNMS\Util\Url::deviceLink($bgp->device, $bgp->device->shortDisplayName()) !!} {{ __('BGP Down') }} {{ $bgp->bgpPeerIdentifier }}
AS{{ \LibreNMS\Util\StringHelpers::shortenText($bgp->bgpPeerRemoteAs . ' ' . $bgp->astext, 14) }}
@endforeach @foreach ($devices_uptime as $device)
{!! \LibreNMS\Util\Url::deviceLink($device, $device->shortDisplayName()) !!} {{ __('Device Rebooted') }}
{{ $device->formatDownUptime(true) }}
@endforeach @if( empty($devices_down) && empty($ports_down) && empty($services_down) && empty($bgp_down) && empty($devices_uptime) )
Nothing here yet

This is where status notifications about devices and services would normally go. You might have none because you run such a great network, or perhaps you've just started using {{ Config::get('project_name') }} If you're new to {{ Config::get('project_name') }}, you might want to start by adding one or more devices in the Devices menu.

@endif @if (count($syslog))
 
@foreach ($syslog as $entry) @endforeach
{{ $entry->date }} {!! \LibreNMS\Util\Url::deviceLink($entry->device) !!} {{ $entry->program }} : {{ $entry->msg }}
@endif
@endsection