summaryrefslogtreecommitdiffstats
path: root/collectors/python.d.plugin/hpssa/hpssa.chart.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-08-17 10:46:15 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-08-17 10:46:15 +0000
commit0d479e33a8ebe206dc5b62135f90880e54b6c117 (patch)
tree272c5ddc92ae1e568e6df554e94894ee66a2dfd1 /collectors/python.d.plugin/hpssa/hpssa.chart.py
parentReleasing debian version 1.42.0-1. (diff)
downloadnetdata-0d479e33a8ebe206dc5b62135f90880e54b6c117.tar.xz
netdata-0d479e33a8ebe206dc5b62135f90880e54b6c117.zip
Merging upstream version 1.42.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'collectors/python.d.plugin/hpssa/hpssa.chart.py')
-rw-r--r--collectors/python.d.plugin/hpssa/hpssa.chart.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/collectors/python.d.plugin/hpssa/hpssa.chart.py b/collectors/python.d.plugin/hpssa/hpssa.chart.py
index 4da73dc56..66be00837 100644
--- a/collectors/python.d.plugin/hpssa/hpssa.chart.py
+++ b/collectors/python.d.plugin/hpssa/hpssa.chart.py
@@ -182,7 +182,7 @@ class HPSSA(object):
break
elif array_regex.match(line):
self.parse_array(adapter)
- elif line == 'Unassigned' or line == 'HBA Drives':
+ elif line in ('Unassigned', 'unassigned') or line == 'HBA Drives':
self.parse_physical_drives(adapter)
elif ignored_sections_regex.match(line):
self.parse_ignored_section()