mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-22 10:01:45 +00:00
Bullseye and higher has version 239 or higher. Tests: - From performance app, launch the web interface in a testing container. Web interface shows up properly. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
15 lines
305 B
Python
15 lines
305 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||
"""
|
||
FreedomBox app for System Monitoring (cockpit-pcp) in ‘System’.
|
||
"""
|
||
|
||
from django.utils.translation import gettext_lazy as _
|
||
|
||
clients = [{
|
||
'name': _('Cockpit'),
|
||
'platforms': [{
|
||
'type': 'web',
|
||
'url': '/_cockpit/metrics'
|
||
}]
|
||
}]
|