diff --git a/cisco_bgp_peer.mkp b/cisco_bgp_peer.mkp index 3eaaaaf107a4babd445587b9626d80b715129f7a..8df4c7fc898218caedef13f06ff025c471176907 100644 Binary files a/cisco_bgp_peer.mkp and b/cisco_bgp_peer.mkp differ diff --git a/packages/cisco_bgp_peer b/packages/cisco_bgp_peer index e8b8f66a5c358aeac7eb05954c32ee1948b785b1..06258558dfd46344952df81b3cf25d1f286cd233 100644 --- a/packages/cisco_bgp_peer +++ b/packages/cisco_bgp_peer @@ -9,4 +9,5 @@ 'title': u'Cisco BGP Peer', 'version': '20200604.v.0.2c', 'version.min_required': '1.2.8b8', - 'version.packaged': '1.4.0p38'} \ No newline at end of file + 'version.packaged': '1.6.0p15', + 'version.usable_until': None} \ No newline at end of file diff --git a/web/plugins/metrics/cisco_bgp_peer.py b/web/plugins/metrics/cisco_bgp_peer.py index affb5cebc7ca929e59b02a5c231d394bd7512d00..7aefd7fd06c93bb8a2c37a2f0f48ec3319e5077e 100644 --- a/web/plugins/metrics/cisco_bgp_peer.py +++ b/web/plugins/metrics/cisco_bgp_peer.py @@ -3,10 +3,11 @@ # # Cisco BGP Peer metrics plugin # -# Author: Th.L. +# Author: thl-cmk[at]outlook[dot]com / thl-cmk.hopto.org # Date : 2017-12-26 # -# 25.05.2018: cleanup +# 2018-05-25: cleanup +# 2020-09-10: fixed typo (MS --> FSM (Thanks martin[dot]pechstein[at]posteo[dot]de) # ##################################################################################################################### @@ -69,12 +70,12 @@ metric_info['cisco_bgp_peer_outtotalmessages'] = { 'color': '13/a', } metric_info['cisco_bgp_peer_fsmestablishedtransitions'] = { - 'title': _('FMS transitions'), + 'title': _('FSM transitions'), 'unit': 'count', 'color': '23/a', } metric_info['cisco_bgp_peer_fsmestablishedtime'] = { - 'title': _('FMS last change'), + 'title': _('FSM last change'), 'unit': 's', 'color': '26/a', # 26 } @@ -150,14 +151,14 @@ graph_info.append({ }) graph_info.append({ - 'title': _('FMS transitions from/to established'), + 'title': _('FSM transitions from/to established'), 'metrics': [ ('cisco_bgp_peer_fsmestablishedtransitions', 'line'), ], }) graph_info.append({ - 'title': _('FMS established last change'), + 'title': _('FSM established last change'), 'metrics': [ ('cisco_bgp_peer_fsmestablishedtime', 'line'), ]