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

update project

parent 73bf3f10
No related branches found
No related tags found
No related merge requests found
......@@ -6,3 +6,4 @@
2022-05-11: changed bgp_get_peer_entry to get proper parameters instead of Nontransparent list
added remote_as to BgpPeerItem
2022-05-12: changed IPv6 address format to lower case as required by rfc5952 section-4.3 (this affects IPv6 peers)
2023-02-18: moved metrics file from ~/local/share/check_mk/... to ~/local/lib/check_mk/...
......@@ -139,13 +139,13 @@ def parse_huawei_bgp_peer(string_table: List[StringTable]) -> Dict[str, BgpPeer]
remote_as=remote_as,
peer_state=state,
admin_state='2', # admin_state set to not admin_down
in_updates=None, # in_updates
out_updates=None, # out_updates
in_messages=None, # in_messages
out_messages=None, # out_messages
# in_updates=None, # in_updates
# out_updates=None, # out_updates
# in_messages=None, # in_messages
# out_messages=None, # out_messages
fsm_established_transitions=fsm_established_counter,
fsm_established_time=fsm_established_time,
in_update_elapsed_time=None, # in_update_elapsed_time
# in_update_elapsed_time=None, # in_update_elapsed_time
)
if bgp_peer:
afi, safi = oid_end.split('.')[1:3]
......
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# License: GNU General Public License v2
#
# Author: thl-cmk[at]outlook[dot]com
# URL : https://thl-cmk.hopto.org
# Date : 2020-06-22
#
# Huawei BGP Peer
#
# 2020-07-20: added BGP prefix counter
# 2023-02-18: moved metrics file from ~/local/share/check_mk/... to ~/local/lib/check_mk/...
#
from cmk.gui.i18n import _
from cmk.gui.plugins.metrics.utils import (
metric_info,
graph_info,
)
metric_info['bgp_peer_prefixrcvcounter'] = {
'title': _('Prefixes received'),
'unit': 'count',
'color': '11/a',
}
metric_info['bgp_peer_prefixactivecounter'] = {
'title': _('Prefixes active'),
'unit': 'count',
'color': '33/a',
}
metric_info['bgp_peer_prefixadvcounter'] = {
'title': _('Prefixes advertised'),
'unit': 'count',
'color': '43/a',
}
graph_info['huawei_bgp_peer_counter'] = {
'title': _('BGP prefix counter'),
'metrics': [
('bgp_peer_prefixrcvcounter', 'line'),
('bgp_peer_prefixactivecounter', 'line'),
('bgp_peer_prefixadvcounter', 'line'),
]
}
No preview for this file type
......@@ -12,11 +12,10 @@
' \n',
'download_url': 'https://thl-cmk.hopto.org',
'files': {'agent_based': ['huawei_bgp_peer.py'],
'web': ['plugins/metrics/huawei_bgp_peer.py']},
'gui': ['metrics/huawei_bgp_peer.py']},
'name': 'huawei_bgp_peer',
'num_files': 2,
'title': 'Huawei BGP Peer',
'version': '20220910.v.0.4a',
'version.min_required': '2.0.0',
'version.packaged': '2021.09.20',
'version': '20230218.v.0.b',
'version.min_required': '2.1.0',
'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