From e9e46d2d71bb6e2881206939b29548ee811b2a90 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Mon, 22 Feb 2021 14:06:02 +0100 Subject: [PATCH] Menu: Fix limits --- configuration.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configuration.php b/configuration.php index 79a0c294..35178341 100644 --- a/configuration.php +++ b/configuration.php @@ -4,8 +4,8 @@ /** @var \Icinga\Application\Modules\MenuItemContainer $section */ $section = $this->menuSection(N_('Graphite'), ['icon' => 'chart-area']); -$section->add(N_('Hosts'), ['url' => 'graphite/list/hosts?graphs_limit=2']); -$section->add(N_('Services'), ['url' => 'graphite/list/services?graphs_limit=2']); +$section->add(N_('Hosts'), ['url' => 'graphite/list/hosts?limit=2']); +$section->add(N_('Services'), ['url' => 'graphite/list/services?limit=2']); $this->provideConfigTab('backend', array( 'title' => $this->translate('Configure the Graphite Web backend'),