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

update project

parent aa8bc06c
No related branches found
No related tags found
No related merge requests found
......@@ -177,21 +177,21 @@ def check_ospfv3_neighbor(item, params, section: Dict[str, OspfV3Neighbor]) -> C
# default monitoring states for ospfNbrState
neighbor_states = {
'1': 2, # down
'2': 1, # attempt
'3': 1, # init
'4': 0, # twoWay
'5': 1, # exchangeStart
'6': 1, # exchange
'7': 1, # loading
'8': 0, # full
1: 2, # down
2: 1, # attempt
3: 1, # init
4: 0, # twoWay
5: 1, # exchangeStart
6: 1, # exchange
7: 1, # loading
8: 0, # full
}
neighbor_states.update(params.get('neighbor_states', neighbor_states)) # update neighbor_states with params
yield Result(state=State.OK, summary=f'Neighbor ID: {neighbor.nbrRtrId}')
# yield Result(state=State.OK, summary=f'On interface: {neighbor.nbrLocalInterface}')
neighbor_states.update(params.get('neighbor_states', neighbor_states)) # update neighbor_states with params
yield Result(
state=State(neighbor_states.get(neighbor.nbrState, 3)),
summary=f'Status: {ospf_nbr_state(neighbor.nbrState)}'
......@@ -247,6 +247,7 @@ register.check_plugin(
discovery_function=discovery_ospfv3_neighbor,
check_function=check_ospfv3_neighbor,
check_default_parameters={
'state_not_found': 3,
},
check_ruleset_name='ospfv3_neighbor',
)
......@@ -174,14 +174,14 @@ def check_ospfv3_virtuallink(item, params, section: Dict[str, OspfV3VirtualLink]
# default monitoring states for ospfNbrState
neighbor_states = {
'1': 2, # down
'2': 1, # attempt
'3': 1, # init
'4': 0, # twoWay
'5': 1, # exchangeStart
'6': 1, # exchange
'7': 1, # loading
'8': 0, # full
1: 2, # down
2: 1, # attempt
3: 1, # init
4: 0, # twoWay
5: 1, # exchangeStart
6: 1, # exchange
7: 1, # loading
8: 0, # full
}
neighbor_states.update(params.get('neighbor_states', neighbor_states)) # update neighbor_states with params
......@@ -246,6 +246,7 @@ register.check_plugin(
discovery_function=discovery_ospfv3_virtuallink,
check_function=check_ospfv3_virtuallink,
check_default_parameters={
'state_not_found': 3,
},
check_ruleset_name='ospfv3_virtuallink',
)
No preview for this file type
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