mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
300645388f
* Poller settings WIP * Poller settings WIP2 * working on SettingMultiple * setting multiple working * settings sent with all required info * fix translation * Fix keys * fix groups setting * Apply settings to service fixes and validations for setting * don't error when no poller_cluster entry exists * hid tab when no poller cluster entries * Authorization * make prod * daily maintenance toggle should be advanced * Update schema def
29 lines
825 B
PHP
29 lines
825 B
PHP
@extends('poller.index')
|
|
|
|
@section('title', __('Poller Performance'))
|
|
|
|
@section('content')
|
|
|
|
@parent
|
|
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">Total Poller Time</h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
<?php \LibreNMS\Util\Html::graphRow(['type' => 'global_poller_perf',
|
|
'legend' => 'yes', 'height' => 100], true); ?>
|
|
</div>
|
|
</div>
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">Total Poller Time Per Module</h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
<?php \LibreNMS\Util\Html::graphRow(['type' => 'global_poller_modules_perf',
|
|
'legend' => 'yes', 'height' => 100], true); ?>
|
|
</div>
|
|
</div>
|
|
|
|
@endsection
|