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 28d27147 authored by thl-cmk's avatar thl-cmk :flag_na:
Browse files

update project

parent 594fe247
No related branches found
No related tags found
No related merge requests found
[PACKAGE]: ../../raw/master/mkp/cisco_meraki-1.3.4-20240802.mkp "cisco_meraki-1.3.4-20240802.mkp"
[PACKAGE]: ../../raw/2.2.x/mkp/cisco_meraki-1.3.5-20240807.mkp "cisco_meraki-1.3.5-20240807.mkp"
[SDK]: ../../raw/2.2.x/mkp/MerakiSDK-1.46.0-20240516.mkp "MerakiSDK-1.46.0-20240516.mkpp"
# Cisco Meraki special agent
......
File added
......@@ -12,7 +12,7 @@
# 2024-06-23: fixed crash on empty json_data
# moved data parsing in to SSID class
# 2024-07-13: fixed crash on missing metrics (device dormant) ThX to Leon Buhleier
# 2024-08-07: fixed crash on missin power value (unit only) ThX to Leon Buhleier
from dataclasses import dataclass
from _collections_abc import Mapping
......@@ -132,7 +132,7 @@ def check_wireless_device_status(
try:
power = int(ssid.power.split(' ')[0])
except AttributeError:
except (AttributeError, ValueError):
power = None
for metric, value in [
......
......@@ -60,7 +60,7 @@
'plugins/wato/agent_cisco_meraki.py']},
'name': 'cisco_meraki',
'title': 'Cisco Meraki special agent',
'version': '1.3.4-20240802',
'version': '1.3.5-20240807',
'version.min_required': '2.2.0b1',
'version.packaged': '2.2.0p27',
'version.usable_until': '2.3.0b1'}
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