From d6e55de0b618afc85753b49137fcdb70c6931d61 Mon Sep 17 00:00:00 2001 From: Oleh Astappiev Date: Wed, 8 Jun 2022 16:29:21 +0200 Subject: [PATCH] Add `--output-sensor-state` argument to ipmi-sensors command I received an error collection ipmi sensors status, because my output table is missing status column. It can be added by the argument according to `--help` information. --- collector_ipmi.go | 1 + 1 file changed, 1 insertion(+) diff --git a/collector_ipmi.go b/collector_ipmi.go index 4530412..5ecdf02 100644 --- a/collector_ipmi.go +++ b/collector_ipmi.go @@ -139,6 +139,7 @@ func (c IPMICollector) Args() []string { "--no-header-output", "--sdr-cache-recreate", "--output-event-bitmask", + "--output-sensor-state", } }