Files
librenms-librenms/resources/views/poller/performance.blade.php
Tony Murray d69674b36e Correct graph row component responsive layout for linked graphs (#13587)
* Correct graph row component responsive layout for linked graphs
Enable pass through height and legend.  Probably need more, but this is just for a start.
Switch Poller performance page

* revert accidental change

* Update Graph.php
2021-11-30 19:21:41 -06:00

18 lines
436 B
PHP

@extends('poller.index')
@section('title', __('Poller Performance'))
@section('content')
@parent
<x-panel title="{{ __('Total Poller Time') }}">
<x-graph-row type="global_poller_perf" columns="responsive" legend="yes"></x-graph-row>
</x-panel>
<x-panel title="{{ __('Total Poller Time Per Module') }}">
<x-graph-row type="global_poller_modules_perf" columns="responsive" legend="yes"></x-graph-row>
</x-panel>
@endsection