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

update project

parent 67d5fc4e
No related branches found
No related tags found
No related merge requests found
......@@ -27,6 +27,7 @@
# 2022-04-06: removed .replace('://', ': //')) from json.loads() so service name is without space
# 2022-04-26: made http(s) URLs clickable
# 2022-05-15: added workaround for raise ValueError("Cannot render negative timespan")
# 2022-05-17: fixed wrong import path for _TIME_UNITS and _gen_timespan_chunks
#
# Example output from agent:
......@@ -81,7 +82,7 @@ from cmk.base.plugins.agent_based.agent_based_api.v1 import (
#
# start workaround for : raise ValueError("Cannot render negative timespan")
#
from cmk.base.plugins.agent_based.agent_based_api.v1.render import (
from cmk.base.api.agent_based.render import (
_TIME_UNITS,
_gen_timespan_chunks,
)
......
No preview for this file type
......@@ -26,7 +26,7 @@
'name': 'curl',
'num_files': 6,
'title': 'cURL agent plugin',
'version': '20220515.v0.1.8b',
'version': '20220515.v0.1.8c',
'version.min_required': '2.0.0',
'version.packaged': '2021.09.20',
'version.usable_until': None}
\ No newline at end of file
......@@ -12,6 +12,7 @@
# 2022-02-15: rewritten form cmk 2.0, based on the work by doc[at]snowheaven[dot]de
# 2022-02-20: added num_connects, num_redirects, size_download, size_header and speed_download
# 2022-03-13: moved cert time left graph to the end of graphs
# 2022-05-17: added scalars to cert_time_left
from cmk.gui.i18n import _
......@@ -193,6 +194,10 @@ graph_info['curl_cert_time'] = {
'metrics': [
('cert_time_left', 'area'),
],
'scalars': [
('cert_time_left:crit', _('crit')),
('cert_time_left:warn', _('warn')),
],
}
perfometer_info.append(
......
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