mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
20 lines
571 B
PHP
20 lines
571 B
PHP
@extends('poller.index')
|
|
|
|
@section('title', __('Poller Performance'))
|
|
|
|
@section('content')
|
|
|
|
@parent
|
|
|
|
<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>
|
|
|
|
@endsection
|