From f74ca9044a40acdbee96130edfd4e7886e1809a5 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Tue, 12 May 2020 11:19:20 -0700 Subject: [PATCH] performance: Launch the Cockpit graphs directly if possible Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- plinth/modules/performance/manifest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plinth/modules/performance/manifest.py b/plinth/modules/performance/manifest.py index 4d0c87e6d..22b616c51 100644 --- a/plinth/modules/performance/manifest.py +++ b/plinth/modules/performance/manifest.py @@ -4,12 +4,13 @@ FreedomBox app for System Monitoring (cockpit-pcp) in ‘System’. """ from django.utils.translation import ugettext_lazy as _ + from plinth.clients import validate clients = validate([{ 'name': _('Cockpit'), 'platforms': [{ 'type': 'web', - 'url': '/_cockpit/' + 'url': '/_cockpit/system/graphs' }] }])