summaryrefslogtreecommitdiffstats
path: root/collectors/python.d.plugin/adaptec_raid
diff options
context:
space:
mode:
authorIlya Mashchenko <ilya@netdata.cloud>2021-03-22 17:30:02 +0300
committerGitHub <noreply@github.com>2021-03-22 17:30:02 +0300
commit48e0dc53a25354f459294fd60b63307174b19aa2 (patch)
tree9259ea0f79d717e3e3290736be65bf43f5e19f64 /collectors/python.d.plugin/adaptec_raid
parentffb7f94544d7abe00fe1df0f03d8d319348eb567 (diff)
health: add collector prefix to the external collectors alarms/templates (#10830)
Diffstat (limited to 'collectors/python.d.plugin/adaptec_raid')
-rw-r--r--collectors/python.d.plugin/adaptec_raid/adaptec_raid.chart.py8
1 files changed, 4 insertions, 4 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 1833ee116f..bb59d88e1d 100644
--- a/collectors/python.d.plugin/adaptec_raid/adaptec_raid.chart.py
+++ b/collectors/python.d.plugin/adaptec_raid/adaptec_raid.chart.py
@@ -24,21 +24,21 @@ ORDER = [
CHARTS = {
'ld_status': {
'options': [None, 'Status of logical devices (1: Failed or Degraded)', 'bool', 'logical devices',
- 'adapter_raid.ld_status', 'line'],
+ 'adaptec_raid.ld_status', 'line'],
'lines': []
},
'pd_state': {
'options': [None, 'State of physical devices (1: not Online)', 'bool', 'physical devices',
- 'adapter_raid.pd_state', 'line'],
+ 'adaptec_raid.pd_state', 'line'],
'lines': []
},
'pd_smart_warnings': {
'options': [None, 'S.M.A.R.T warnings', 'count', 'physical devices',
- 'adapter_raid.smart_warnings', 'line'],
+ 'adaptec_raid.smart_warnings', 'line'],
'lines': []
},
'pd_temperature': {
- 'options': [None, 'Temperature', 'celsius', 'physical devices', 'adapter_raid.temperature', 'line'],
+ 'options': [None, 'Temperature', 'celsius', 'physical devices', 'adaptec_raid.temperature', 'line'],
'lines': []
},
}