summaryrefslogtreecommitdiffstats
path: root/collectors/python.d.plugin/adaptec_raid
diff options
context:
space:
mode:
authorIlya Mashchenko <ilya@netdata.cloud>2019-06-25 19:14:23 +0300
committerGitHub <noreply@github.com>2019-06-25 19:14:23 +0300
commit00d91c0368f7ebfb8501b1a494460d750ed2fe60 (patch)
treeffa570490e74f0ffcd2037e7d738b49a908f0615 /collectors/python.d.plugin/adaptec_raid
parentb27f0c65342cee0463eaf62d7e53112aaa1fdbb0 (diff)
adaptec_raid: logical device regex fix (#6338)
Diffstat (limited to 'collectors/python.d.plugin/adaptec_raid')
-rw-r--r--collectors/python.d.plugin/adaptec_raid/adaptec_raid.chart.py4
1 files changed, 2 insertions, 2 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 052c931444..3fcb5fda8d 100644
--- a/collectors/python.d.plugin/adaptec_raid/adaptec_raid.chart.py
+++ b/collectors/python.d.plugin/adaptec_raid/adaptec_raid.chart.py
@@ -56,8 +56,8 @@ GOOD_PD_STATUS = (
)
RE_LD = re.compile(
- r'Logical device number\s+([0-9]+).*?'
- r'Status of logical device\s+: ([a-zA-Z]+)'
+ r'Logical [dD]evice number\s+([0-9]+).*?'
+ r'Status of [lL]ogical [dD]evice\s+: ([a-zA-Z]+)'
)