mirror of
https://github.com/bashclub/check-opnsense.git
synced 2024-11-07 16:31:58 +01:00
Add files via upload
Check_MK Support for Local Path
This commit is contained in:
parent
74ea84fd8f
commit
039d483077
@ -27,7 +27,7 @@
|
|||||||
## * smartdisk - install the mkp from https://github.com/bashclub/checkmk-smart plugins os-smart
|
## * smartdisk - install the mkp from https://github.com/bashclub/checkmk-smart plugins os-smart
|
||||||
## * squid - install the mkp from https://exchange.checkmk.com/p/squid and forwarder -> listen on loopback active
|
## * squid - install the mkp from https://exchange.checkmk.com/p/squid and forwarder -> listen on loopback active
|
||||||
|
|
||||||
__VERSION__ = "1.0.2"
|
__VERSION__ = "1.0.3"
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import os
|
import os
|
||||||
@ -63,7 +63,7 @@ from socketserver import TCPServer,StreamRequestHandler
|
|||||||
|
|
||||||
SCRIPTPATH = os.path.abspath(__file__)
|
SCRIPTPATH = os.path.abspath(__file__)
|
||||||
SYSHOOK_METHOD = re.findall("rc\.syshook\.d\/(start|stop)/",SCRIPTPATH)
|
SYSHOOK_METHOD = re.findall("rc\.syshook\.d\/(start|stop)/",SCRIPTPATH)
|
||||||
BASEDIR = "/usr/local/checkmk_agent"
|
BASEDIR = "/usr/local/check_mk_agent"
|
||||||
CHECKMK_CONFIG = "/usr/local/etc/checkmk.conf"
|
CHECKMK_CONFIG = "/usr/local/etc/checkmk.conf"
|
||||||
MK_CONFDIR = os.path.dirname(CHECKMK_CONFIG)
|
MK_CONFDIR = os.path.dirname(CHECKMK_CONFIG)
|
||||||
LOCALDIR = os.path.join(BASEDIR,"local")
|
LOCALDIR = os.path.join(BASEDIR,"local")
|
||||||
@ -952,7 +952,7 @@ class checkmk_checker(object):
|
|||||||
|
|
||||||
_required_phase2 = len(list(filter(lambda x: x.get("ikeid") == _ikeid,_phase2config)))
|
_required_phase2 = len(list(filter(lambda x: x.get("ikeid") == _ikeid,_phase2config)))
|
||||||
|
|
||||||
if _phase2_up == _required_phase2:
|
if _phase2_up >= _required_phase2:
|
||||||
_ret.append("{status} \"IPsec Tunnel: {remote-name}\" if_in_octets={bytes-received}|if_out_octets={bytes-sent}|lifetime={life-time} {state} {local-id} - {remote-id}({remote-host})".format(**_con))
|
_ret.append("{status} \"IPsec Tunnel: {remote-name}\" if_in_octets={bytes-received}|if_out_octets={bytes-sent}|lifetime={life-time} {state} {local-id} - {remote-id}({remote-host})".format(**_con))
|
||||||
elif _phase2_up == 0:
|
elif _phase2_up == 0:
|
||||||
if _condata.keys():
|
if _condata.keys():
|
||||||
|
Loading…
Reference in New Issue
Block a user