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

update project

parent cccf0be1
No related branches found
No related tags found
No related merge requests found
......@@ -78,7 +78,7 @@ def parse_inv_cisco_bgp_peer(string_table: List[StringByteTable]):
'local_as': local_as,
'local_id': local_id,
'bgp_type': get_bgp_type(local_as, remote_as),
'fsm_established_time': int(fsm_established_time),
'fsm_established_time': int(fsm_established_time) if fsm_established_time.isdigit() else None,
'peer_state': 1 if state == '6' else 2, # adjust to match if_oper_status for inventory painter
'last_error_code': bgp_error_code_as_hex(last_error),
'last_error': bgp_error_as_string(last_error),
......
No preview for this file type
......@@ -26,7 +26,7 @@
'name': 'cisco_bgp_peer',
'num_files': 3,
'title': 'Cisco BGP Peer',
'version': '20220511.v.0.8',
'version': '20220910.v.0.8a',
'version.min_required': '2.0.0',
'version.packaged': '2021.09.20',
'version.usable_until': None}
\ No newline at end of file
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