2020-03-13 20:58:37 +01:00
|
|
|
@extends('poller.index')
|
|
|
|
|
|
|
|
|
|
@section('title', __('Poller Performance'))
|
|
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
|
|
|
|
|
@parent
|
|
|
|
|
|
2020-07-24 06:13:00 +02:00
|
|
|
<x-panel title="{{ __('Total Poller Time') }}">
|
|
|
|
|
<?php \LibreNMS\Util\Html::graphRow(['type' => 'global_poller_perf',
|
|
|
|
|
'legend' => 'yes', 'height' => 100], true); ?>
|
|
|
|
|
</x-panel>
|
|
|
|
|
|
|
|
|
|
<x-panel title="{{ __('Total Poller Time Per Module') }}">
|
|
|
|
|
<?php \LibreNMS\Util\Html::graphRow(['type' => 'global_poller_modules_perf',
|
|
|
|
|
'legend' => 'yes', 'height' => 100], true); ?>
|
|
|
|
|
</x-panel>
|
2020-03-13 20:58:37 +01:00
|
|
|
|
|
|
|
|
@endsection
|