mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
Signed-off-by: Joseph Nuthalapati <njoseph@riseup.net> Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
19 lines
377 B
Python
19 lines
377 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'
|
||
}]
|
||
}]
|
||
|
||
backup: dict = {}
|
||
|
||
tags = [_('Monitoring'), _('Resource utilization')]
|