mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* 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
18 lines
436 B
PHP
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
|