mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-04 08:13:38 +00:00
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
17 lines
359 B
Python
17 lines
359 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||
"""
|
||
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/system/graphs'
|
||
}]
|
||
}])
|