Skip to content

Commit 8837a2a

Browse files
committed
Merge branch 'develop'
2 parents 80066ec + a75d80b commit 8837a2a

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 1.2.8 - 2022-01-13
9+
10+
* Check: Fixed #189 - Critical threshold / value not transferred to perfdata
11+
812
## 1.2.7 - 2021-12-23
913

1014
* Agent plugin: Fixed a bug in failed test re-execution when the output XML files

agents_plugins/robotmk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949

5050
local_tz = datetime.utcnow().astimezone().tzinfo
5151

52-
ROBOTMK_VERSION = 'v1.2.7'
52+
ROBOTMK_VERSION = 'v1.2.8'
5353

5454
class RMKConfig():
5555
_PRESERVED_WORDS = [

bakery/v1/robotmk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
1919
# Boston, MA 02110-1301 USA.
2020

21-
ROBOTMK_VERSION = 'v1.2.7'
21+
ROBOTMK_VERSION = 'v1.2.8'
2222

2323
import cmk.utils.paths
2424
import os

bakery/v2/robotmk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
1919
# Boston, MA 02110-1301 USA.
2020

21-
ROBOTMK_VERSION = 'v1.2.7'
21+
ROBOTMK_VERSION = 'v1.2.8'
2222

2323
from typing import Iterable, TypedDict, List
2424
from pathlib import Path

checks/v1/robotmk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ from collections import namedtuple
3434
iam = "robotmk"
3535
# DO NOT DELETE
3636
inventory_robotmk_rules = []
37-
ROBOTMK_VERSION = 'v1.2.7'
37+
ROBOTMK_VERSION = 'v1.2.8'
3838
DEFAULT_SVC_PREFIX = 'Robot Framework E2E $SUITEID$SPACE-$SPACE'
3939
HTML_LOG_DIR = "%s/%s" % (os.environ['OMD_ROOT'], 'local/share/addons/robotmk')
4040

checks/v2/robotmk.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
from cmk.base.plugins.agent_based.agent_based_api.v1 import *
3636
from cmk.utils.exceptions import MKGeneralException
3737

38-
ROBOTMK_VERSION = 'v1.2.7'
38+
ROBOTMK_VERSION = 'v1.2.8'
3939
DEFAULT_SVC_PREFIX = 'Robot Framework E2E $SUITEID$SPACE-$SPACE'
4040
HTML_LOG_DIR = "%s/%s" % (os.environ['OMD_ROOT'], 'local/share/addons/robotmk')
4141

@@ -693,7 +693,7 @@ def _eval_node_cmk_perfdata(self, check_params):
693693
float("%.2f" % self.elapsed_time),
694694
levels=(
695695
float("%.2f" % runtime_threshold[0]),
696-
float("%.2f" % runtime_threshold[0]),
696+
float("%.2f" % runtime_threshold[1]),
697697
),
698698
)
699699
else:

0 commit comments

Comments
 (0)