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

update project

parent c0712e0b
No related branches found
No related tags found
No related merge requests found
......@@ -4,3 +4,4 @@
2022-05-11: changed bgp_get_peer_entry to get proper parameters instead of Nontransparent list
added remote_as to BgpPeerItem
2023-01-25: fixed routing instance in item
2023-02-20: fixed crash no missing input data (i.e. in_prefixes_active)
......@@ -16,6 +16,8 @@
# 2022-05-11: changed bgp_get_peer_entry to get proper parameters instead of Nontransparent list
# added remote_as to BgpPeerItem
# 2023-01-25: fixed routing instance in item
# 2023-02-20: fixed crash no missing input data (i.e. in_prefixes_active)
#
import copy
from typing import List, Dict, Optional, Tuple
......@@ -61,17 +63,17 @@ def parse_juniper_bgp_peer(string_table: List[StringByteTable]) -> Optional[Dict
for entry in jnxBgpM2PrefixCountersEntry:
oid_end, in_prefixes, in_prefixes_accepted, in_prefixes_rejected, out_prefixes, in_prefixes_active = entry
index, afi, safi = oid_end.split('.') # peer index, afi, safi
prefixes = JuniperPrefixes(
afi=afi,
safi=safi,
accepted_prefixes=int(in_prefixes_accepted),
accepted_prefixes=int(in_prefixes_accepted) if in_prefixes_accepted.isdigit() else None,
metric_rate=[],
metric_count=[
('in_prefixes', int(in_prefixes)),
# ('in_prefixes_accepted', int(in_prefixes_accepted)),
('in_prefixes_rejected', int(in_prefixes_rejected)),
('out_prefixes', int(out_prefixes)),
('in_prefixes_active', int(in_prefixes_active)),
('in_prefixes', int(in_prefixes) if in_prefixes.isdigit() else None),
('in_prefixes_rejected', int(in_prefixes_rejected) if in_prefixes_rejected.isdigit() else None),
('out_prefixes', int(out_prefixes) if out_prefixes.isdigit() else None),
('in_prefixes_active', int(in_prefixes_active) if in_prefixes_active.isdigit() else None),
],
)
......
No preview for this file type
......@@ -14,9 +14,8 @@
'inv_juniper_bgp_peer.py',
'utils/juniper_bgp_peer.py']},
'name': 'juniper_bgp_peer',
'num_files': 3,
'title': 'Juniper BGP peer',
'version': '20220910.v.0.0.5a',
'version': '20230220.v.0.0.5b',
'version.min_required': '2.0.0',
'version.packaged': '2021.09.20',
'version.packaged': '2.1.0p21',
'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