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

fixed crash in params.get("max_age")

parent 528d1cd2
No related branches found
No related tags found
No related merge requests found
[PACKAGE]: ../../raw/master/mkp/curl-0.3.2-20241124.mkp "curl-0.3.2-20241124.mkp"
[PACKAGE]: ../../raw/master/mkp/curl-0.3.1-20241129.mkp "curl-0.3.1-20241129.mkp"
[EXECUTABLE]: ../../raw/master/mkp/curl_executable-20220410.v7.82.0.mkp "curl_executable-20220410.v7.82.0.mkp"
# cURL agent plugin for Linux and Windows
......
File added
......@@ -33,6 +33,7 @@
# removed work around for render negative timespan
# 2024-11-23: fixed http_error_code_to_ignore and curl_error_code_to_ignore not working (compare int with str)
# 2024-11-24: removed empty default parameters
# 2024-11-29: fixed crash in params.get("max_age")
# Example output from agent:
#
......@@ -390,7 +391,7 @@ def check_curl(item, params, section: Dict[str, Any]) -> CheckResult:
elif not _data.get('regex'): # missing info
yield Result(state=State(regex_missing), notice='Regex state: missing pattern match info')
max_age_warn, max_age_crit, max_age_state = params.get('max_age', None, None, None)
max_age_warn, max_age_crit, max_age_state = params.get('max_age', (None, None, None))
if max_age_warn:
max_age = None
if _data.get('RESPONSE_HEADER'):
......
......@@ -28,7 +28,7 @@
'lib': ['python3/cmk/base/cee/plugins/bakery/curl.py']},
'name': 'curl',
'title': 'cURL agent plugin',
'version': '0.3.2-20241124',
'version': '0.3.1-20241129',
'version.min_required': '2.3.0b1',
'version.packaged': 'cmk-mkp-tool 0.2.0',
'version.usable_until': '2.4.0b1'}
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