summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIlya Mashchenko <ilya@netdata.cloud>2021-07-02 14:26:05 +0300
committerGitHub <noreply@github.com>2021-07-02 14:26:05 +0300
commit180ace8264c21ae77635965edd21e369ad45701e (patch)
tree21648ba4cb168f3da157e654754543d24560d804
parent8b78803a4edbb52764f5d2ade7c11c2d746545a1 (diff)
fix various python modules charts contexts (#11310)
-rw-r--r--collectors/python.d.plugin/mysql/mysql.chart.py4
-rw-r--r--collectors/python.d.plugin/smartd_log/smartd_log.chart.py2
-rw-r--r--collectors/python.d.plugin/zscores/zscores.chart.py4
3 files changed, 5 insertions, 5 deletions
diff --git a/collectors/python.d.plugin/mysql/mysql.chart.py b/collectors/python.d.plugin/mysql/mysql.chart.py
index 1737e16b4d..e8c03cb00e 100644
--- a/collectors/python.d.plugin/mysql/mysql.chart.py
+++ b/collectors/python.d.plugin/mysql/mysql.chart.py
@@ -398,7 +398,7 @@ CHARTS = {
]
},
'innodb_os_log_fsync_writes': {
- 'options': [None, 'InnoDB OS Log Operations', 'operations/s', 'innodb', 'mysql.innodb_os_log', 'line'],
+ 'options': [None, 'InnoDB OS Log Operations', 'operations/s', 'innodb', 'mysql.innodb_os_log_fsyncs', 'line'],
'lines': [
['Innodb_os_log_fsyncs', 'fsyncs', 'incremental'],
]
@@ -445,7 +445,7 @@ CHARTS = {
},
'innodb_buffer_pool_flush_pages_requests': {
'options': [None, 'InnoDB Buffer Pool Flush Pages Requests', 'requests/s', 'innodb',
- 'mysql.innodb_buffer_pool_pages', 'line'],
+ 'mysql.innodb_buffer_pool_pages_flushed', 'line'],
'lines': [
['Innodb_buffer_pool_pages_flushed', 'flush pages', 'incremental'],
]
diff --git a/collectors/python.d.plugin/smartd_log/smartd_log.chart.py b/collectors/python.d.plugin/smartd_log/smartd_log.chart.py
index 402035f14b..75b8c8c400 100644
--- a/collectors/python.d.plugin/smartd_log/smartd_log.chart.py
+++ b/collectors/python.d.plugin/smartd_log/smartd_log.chart.py
@@ -154,7 +154,7 @@ CHARTS = {
'algo': INCREMENTAL,
},
'write_total_err_corrected': {
- 'options': [None, 'Write Error Corrected', 'errors', 'errors', 'smartd_log.read_total_err_corrected', 'line'],
+ 'options': [None, 'Write Error Corrected', 'errors', 'errors', 'smartd_log.write_total_err_corrected', 'line'],
'lines': [],
'attrs': [ATTR_WRITE_ERR_COR],
'algo': INCREMENTAL,
diff --git a/collectors/python.d.plugin/zscores/zscores.chart.py b/collectors/python.d.plugin/zscores/zscores.chart.py
index 48397d8dd9..1099b9376a 100644
--- a/collectors/python.d.plugin/zscores/zscores.chart.py
+++ b/collectors/python.d.plugin/zscores/zscores.chart.py
@@ -24,11 +24,11 @@ ORDER = [
CHARTS = {
'z': {
- 'options': ['z', 'Z Score', 'z', 'Z Score', 'z', 'line'],
+ 'options': ['z', 'Z Score', 'z', 'Z Score', 'zscores.z', 'line'],
'lines': []
},
'3stddev': {
- 'options': ['3stddev', 'Z Score >3', 'count', '3 Stddev', '3stddev', 'stacked'],
+ 'options': ['3stddev', 'Z Score >3', 'count', '3 Stddev', 'zscores.3stddev', 'stacked'],
'lines': []
},
}