summaryrefslogtreecommitdiffstats
path: root/collectors/python.d.plugin/hpssa/hpssa.chart.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2022-04-14 18:12:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2022-04-14 18:12:10 +0000
commitb5321aff06d6ea8d730d62aec2ffd8e9271c1ffc (patch)
tree36c41e35994786456154f9d3bf88c324763aeea4 /collectors/python.d.plugin/hpssa/hpssa.chart.py
parentAdding upstream version 1.33.1. (diff)
downloadnetdata-c13434eeaa930a509fb022b2e7fb4f2d60319c9d.tar.xz
netdata-c13434eeaa930a509fb022b2e7fb4f2d60319c9d.zip
Adding upstream version 1.34.0.upstream/1.34.0
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.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/collectors/python.d.plugin/hpssa/hpssa.chart.py b/collectors/python.d.plugin/hpssa/hpssa.chart.py
index ce1b43009..4da73dc56 100644
--- a/collectors/python.d.plugin/hpssa/hpssa.chart.py
+++ b/collectors/python.d.plugin/hpssa/hpssa.chart.py
@@ -93,6 +93,7 @@ ignored_sections_regex = re.compile(
re.X
)
mirror_group_regex = re.compile(r'^Mirror Group \d+:$')
+disk_partition_regex = re.compile(r'^Disk Partition Information$')
array_regex = re.compile(r'^Array: (?P<id>[A-Z]+)$')
drive_regex = re.compile(
r'''
@@ -242,7 +243,7 @@ class HPSSA(object):
}
for line in self:
- if mirror_group_regex.match(line):
+ if HPSSA.match_any(line, mirror_group_regex, disk_partition_regex):
self.parse_ignored_section()
continue