Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[change] Added the name of the metric to the label #311 #621

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 12 additions & 8 deletions openwisp_monitoring/monitoring/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,12 +471,14 @@ def _get_access_tech():
'type': 'scatter',
'fill': 'none',
'yaxis': {'zeroline': False},
'title': _('Signal Strength'),
'title': _('Signal Strength (RSSI)'),
'colors': (DEFAULT_COLORS[3], DEFAULT_COLORS[0]),
'description': _('Signal Strength and Signal Power, measured in dBm.'),
'description': _(
'Signal Strength (RSSI) and Signal Power (RSRP), measured in dBm.'
),
'summary_labels': [
_('Average Signal Power'),
_('Average Signal Strength'),
_('Average Signal Power (RSRP)'),
_('Average Signal Strength (RSSI)'),
],
'unit': _(' dBm'),
'order': 205,
Expand All @@ -495,14 +497,16 @@ def _get_access_tech():
'type': 'scatter',
'fill': 'none',
'yaxis': {'zeroline': False},
'title': _('Signal Quality'),
'title': _('Signal Quality (RSRQ)'),
'colors': (DEFAULT_COLORS[3], DEFAULT_COLORS[0]),
'description': _(
_('Signal Quality and Signal to Noise Ratio (SNR), measured in dB.')
_(
'Signal Quality (RSRQ) and Signal to Noise Ratio (SNR), measured in dB.'
)
),
'summary_labels': [
_('Average Signal Quality'),
_('Average Signal to Noise Ratio'),
_('Average Signal Quality (RSRQ)'),
_('Average Signal to Noise Ratio (SNR)'),
],
'unit': _(' dB'),
'order': 206,
Expand Down
Loading