summaryrefslogtreecommitdiffstats
path: root/collectors/python.d.plugin/python.d.plugin.in
diff options
context:
space:
mode:
authorIlya Mashchenko <ilyamaschenko@gmail.com>2019-03-13 20:39:50 +0300
committerGitHub <noreply@github.com>2019-03-13 20:39:50 +0300
commit6bc05c42b12b03ee570e4ada4a5e898e07f8dd2c (patch)
tree65aa4023bcd000b3499031a08814cff9d7f57320 /collectors/python.d.plugin/python.d.plugin.in
parente73ab183a77356746f301e52819bb145292c5b0f (diff)
Remove ssl check module (#5626)
##### Summary Fixes: #5624 > memory leak in SSLSocket.getpeercert() https://bugs.python.org/issue29738 ##### Component Name [collectors/python.d.plugin/sslcheck](https://github.com/netdata/netdata/tree/master/collectors/python.d.plugin/sslcheck) ##### Additional Information
Diffstat (limited to 'collectors/python.d.plugin/python.d.plugin.in')
-rw-r--r--collectors/python.d.plugin/python.d.plugin.in7
1 files changed, 4 insertions, 3 deletions
diff --git a/collectors/python.d.plugin/python.d.plugin.in b/collectors/python.d.plugin/python.d.plugin.in
index cca7346a1e..dc6c5be9f8 100644
--- a/collectors/python.d.plugin/python.d.plugin.in
+++ b/collectors/python.d.plugin/python.d.plugin.in
@@ -99,12 +99,13 @@ MODULE_SUFFIX = '.chart.py'
OBSOLETED_MODULES = (
'apache_cache', # replaced by web_log
+ 'cpuidle', # rewritten in C
+ 'cpufreq', # rewritten in C
'gunicorn_log', # replaced by web_log
+ 'linux_power_supply', # rewritten in C
'nginx_log', # replaced by web_log
- 'cpufreq', # rewritten in C
- 'cpuidle', # rewritten in C
'mdstat', # rewritten in C
- 'linux_power_supply', # rewritten in C
+ 'sslcheck', # memory leak bug https://github.com/netdata/netdata/issues/5624
)