Skip to content

Commit 1f08757

Browse files
committed
bumps version to 2.0.0
1 parent ce780bc commit 1f08757

3 files changed

Lines changed: 11 additions & 6 deletions

File tree

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ It will also create a inventory of all components of a system.
7171
7272
R.I.P. IPMI
7373
74-
Version: 1.12.1 (2025-08-07)
74+
Version: 2.0.0 (2025-10-15)
7575
7676
mandatory arguments:
7777
-H HOST, --host HOST define the host to request. To change the port just
@@ -235,6 +235,11 @@ WARNING and CRITICAL values can only be used properly if used with **ONE** query
235235
If for example **--all** or **--mel** and **--storage** are used in the same command then you will
236236
get inconsistent results/alarms.
237237

238+
Sometimes it is helpful to prioritize CRITICAL and WARNING status over UNKNOWN status results.
239+
In this case it is possible to use the `--ignore_unknown_on_critical_or_warning` cli option
240+
which returns for example `CRITICAL` if the plugin encountered an `UNKNONW` and a `CRITICAL` issue.
241+
see: https://github.com/bb-Ricardo/check_redfish/issues/174
242+
238243
#### Event Logs
239244
**--mel** and **--sel** (values are passed as "days")<br>
240245
define after how many days' event log entries which have a != OK severity shouldn't
@@ -410,8 +415,8 @@ suggestions for changes/improvements then please create a GitHub issue.
410415
"host_that_collected_inventory": "inventory-collector.example.com",
411416
"inventory_id": null,
412417
"inventory_name": null,
413-
"inventory_layout_version": "1.12.0",
414-
"script_version": "1.12.0",
418+
"inventory_layout_version": "2.0.0",
419+
"script_version": "2.0.0",
415420
"start_of_data_collection": "2024-02-13T19:09:07+02:00"
416421
}
417422
}

check_redfish.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
R.I.P. IPMI
1717
"""
1818

19-
__version__ = "1.12.1"
20-
__version_date__ = "2025-08-07"
19+
__version__ = "2.0.0"
20+
__version_date__ = "2025-10-15"
2121
__author__ = "Ricardo Bartels <ricardo@bitchbrothers.com>"
2222
__description__ = "Check Redfish Plugin"
2323
__license__ = "MIT"

setup.py

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

33
setup(
44
name='check_redfish',
5-
version='1.11.0',
5+
version='2.0.0',
66
author='bb-Ricardo',
77
author_email='ricardo@bitchbrothers.com',
88
description='A monitoring/inventory plugin to check components and health status of systems which support Redfish.',

0 commit comments

Comments
 (0)