Collection of CheckMK checks (see https://checkmk.com/). All checks and plugins are provided as is. Absolutely no warranty. Send any comments to thl-cmk[at]outlook[dot]com

Skip to content
Snippets Groups Projects
Commit e5f531ee authored by thl-cmk's avatar thl-cmk :flag_na:
Browse files

update project

parent 123c642c
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,7 @@
#
# 2022-09-20: added WATO options
# 2022-11-10: added upper_levels to perfdata for scalars in metrics
# 2022-11-16: added band as metric on special request
#
# sample snmpwalk
#
......@@ -63,6 +64,7 @@ from cmk.base.plugins.agent_based.agent_based_api.v1 import (
get_rate,
GetRateError,
get_value_store,
Metric,
)
......@@ -283,7 +285,6 @@ def discovery_cisco_cellular_lte(params, section: Dict[str, CiscoCellularInterfa
def check_cisco_cellular_lte(item, params, section: Dict[str, CiscoCellularInterface]) -> Optional[CheckResult]:
try:
interface = section[item]
except KeyError:
......@@ -412,6 +413,11 @@ def check_cisco_cellular_lte(item, params, section: Dict[str, CiscoCellularInter
state=State(params['state_not_expected_band']),
summary=f'Band: {_cisco_gsm_band.get(interface.modem.band)} (expected: {_cisco_gsm_band.get(expected_band)})'
)
if params['band_as_metric']:
yield Metric(
name=f'{metric_prefix}band',
value=int(interface.modem.band) + 1,
)
yield Result(state=State.OK, notice=f'Channel: {interface.modem.channel}')
yield Result(state=State.OK, notice=f'Service type: {_cisco_gsm_service_type.get(interface.modem.service_type)}')
......@@ -509,6 +515,7 @@ register.check_plugin(
'expected_band': '12',
'state_not_expected_band': 1,
'CSCvt55347_fixed': False,
'band_as_metric': False
},
check_ruleset_name='cisco_cellular_lte',
)
No preview for this file type
......@@ -11,7 +11,7 @@
'name': 'cisco_cellular_lte',
'num_files': 6,
'title': 'Cisco cellular LTE',
'version': '20221110.v0.0.1a',
'version': '20221116.v0.0.2',
'version.min_required': '2.0.0',
'version.packaged': '2021.09.20',
'version.usable_until': None}
\ No newline at end of file
......@@ -13,14 +13,22 @@
# 2022-11-10: fixed range for RSRP and RSRQ
# added range for RSSI
# added scalars for all
# 2022-11-16: added graph for current band
#
from cmk.gui.i18n import _
from cmk.gui.plugins.metrics import (
metric_info,
graph_info,
perfometer_info
perfometer_info,
check_metrics,
)
check_metrics['check_mk-cisco_cellular'] = {
'cisco_cellular_rsrp': {'auto_graph': False},
'cisco_cellular_rsrq': {'auto_graph': False},
'cisco_cellular_rssi': {'auto_graph': False},
'cisco_cellular_band': {'auto_graph': False},
}
metric_info['cisco_cellular_rsrp'] = {
'title': _('RSRP'),
......@@ -35,9 +43,16 @@ metric_info['cisco_cellular_rsrq'] = {
metric_info['cisco_cellular_rssi'] = {
'title': _('RSSI'),
'unit': 'dbm',
# 'unit': 'count',
'color': '42/a',
}
metric_info['cisco_cellular_band'] = {
'title': _('Band'),
'unit': 'count',
'color': '12/b',
}
graph_info['cisco_cellular.rsrp'] = {
'title': _('Reference Signal Received Power'),
'metrics': [
......@@ -73,3 +88,26 @@ graph_info['cisco_cellular.rssi'] = {
],
'range': ('cisco_cellular_rssi:max,-', 1)
}
graph_info['cisco_cellular.band'] = {
'title': _('Band'),
'metrics': [
('cisco_cellular_band', 'area'),
],
'scalars': [
('13#2196F3', 'LTE'),
('12#558B2F', 'WCDMA-2100'),
('11#689F38', 'WCDMA-1900'),
('10#7CB342', 'WCDMA-850'),
('9#8BC34A', 'WCDMA-800'),
('8#2E7D32', 'GSM-1900'),
('7#388E3C', 'GSM-1800'),
('6#43A047', 'GSM-900'),
('5#4CAF50', 'GSM-850'),
('4#F9A825', 'none'),
('3#FFA000', 'invalid'),
('2#FFB300', 'unknown'),
('1#00ACC1', 'UMTS'),
],
'range': (0, 15)
}
......@@ -83,6 +83,17 @@ def _parameter_valuespec_cisco_cellular_lte():
help=_('Monitoring state if the current band is not the expected band. Default is WARN.'),
default_value=1,
)),
('band_as_metric',
FixedValue(
True,
title=_('Show the current band as graph'),
help=_(
'This will output the current band as performance data. Then you get a graph where you can '
'follow the band changes of the monitored device. Scalars are used to create a kind of '
'legend for this graph'
),
totext=_('')
)),
('roaming_state',
MonitoringState(
title=_('Monitoring state if the device is roaming'),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment