summaryrefslogtreecommitdiffstats
path: root/collectors/python.d.plugin/adaptec_raid/adaptec_raid.chart.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-03-09 13:19:48 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-03-09 13:20:02 +0000
commit58daab21cd043e1dc37024a7f99b396788372918 (patch)
tree96771e43bb69f7c1c2b0b4f7374cb74d7866d0cb /collectors/python.d.plugin/adaptec_raid/adaptec_raid.chart.py
parentReleasing debian version 1.43.2-1. (diff)
downloadnetdata-58daab21cd043e1dc37024a7f99b396788372918.tar.xz
netdata-58daab21cd043e1dc37024a7f99b396788372918.zip
Merging upstream version 1.44.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'collectors/python.d.plugin/adaptec_raid/adaptec_raid.chart.py')
-rw-r--r--collectors/python.d.plugin/adaptec_raid/adaptec_raid.chart.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/collectors/python.d.plugin/adaptec_raid/adaptec_raid.chart.py b/collectors/python.d.plugin/adaptec_raid/adaptec_raid.chart.py
index bb59d88e1..1995ad681 100644
--- a/collectors/python.d.plugin/adaptec_raid/adaptec_raid.chart.py
+++ b/collectors/python.d.plugin/adaptec_raid/adaptec_raid.chart.py
@@ -87,7 +87,7 @@ def find_pds(d):
elif row.startswith('Temperature'):
v = row.split(':')[-1].split()[0]
pd.temperature = v
- elif row.startswith('NCQ status'):
+ elif row.startswith(('NCQ status', 'Device Phy')) or not row:
if pd.id and pd.state and pd.smart_warnings:
pds.append(pd)
pd = PD()