]> arthur.barton.de Git - netdata.git/commitdiff
sort makefile + minor change in comments
authorpaulfantom <paulfantom@gmail.com>
Thu, 7 Jul 2016 10:23:15 +0000 (12:23 +0200)
committerpaulfantom <paulfantom@gmail.com>
Thu, 7 Jul 2016 10:23:15 +0000 (12:23 +0200)
12 files changed:
python.d/Makefile.am
python.d/apache.chart.py
python.d/apache_cache.chart.py
python.d/cpufreq.chart.py
python.d/example.chart.py
python.d/hddtemp.chart.py
python.d/mysql.chart.py
python.d/nginx.chart.py
python.d/phpfpm.chart.py
python.d/postfix.chart.py
python.d/squid.chart.py
python.d/tomcat.chart.py

index 7f14bffa0ea840246992f483f8d0af171f9c7cc3..529e9d62167d9fd719a2477674df8d394601c4c3 100644 (file)
@@ -8,13 +8,15 @@ include $(top_srcdir)/build/subst.inc
 SUFFIXES = .in
 
 dist_python_SCRIPTS = \
-       example.chart.py \
-       mysql.chart.py \
-       phpfpm.chart.py \
        apache.chart.py \
-       nginx.chart.py \
        apache_cache.chart.py \
+       cpufreq.chart.py \
+       example.chart.py \
        hddtemp.chart.py \
+       mysql.chart.py \
+       nginx.chart.py \
+       phpfpm.chart.py \
+       postfix.chart.py \
        squid.chart.py \
        tomcat.chart.py \
        python-modules-installer.sh \
index f0f4fe2e13c53db0d2d0fdae85e07a7eae720e2a..b8ce614f1a3f7ac658d94428bf410f6af6984024 100644 (file)
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-# Description: apache netdata python.d plugin
+# Description: apache netdata python.d module
 # Author: Pawel Krupa (paulfantom)
 
 from base import UrlService
index 026d612da539495caf838ba45382fccc02a2bd0d..85b0ee170ee089608f43af513a273acde0596367 100644 (file)
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-# Description: apache cache netdata python.d plugin
+# Description: apache cache netdata python.d module
 # Author: Pawel Krupa (paulfantom)
 
 from base import LogService
index 5d61713a23539e1e519b51db87b774f2a320c904..8677de544b99a5b8cd9f083c3addb70df87c4b98 100644 (file)
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-# Description: cpufreq netdata python.d plugin
+# Description: cpufreq netdata python.d module
 # Author: Pawel Krupa (paulfantom)
 
 import os
index bc1846b76daf90f00feae715d04d16b985a1feaa..3d5cf8e0289c21185b2444ac887bbc0cb3024c47 100644 (file)
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-# Description: example netdata python.d plugin
+# Description: example netdata python.d module
 # Author: Pawel Krupa (paulfantom)
 
 import os
index 2a549e7312f26f1139c03ea63d8110121a027e93..fac2ec6a167c93862d636922a732645cbdb6b79c 100644 (file)
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-# Description: hddtemp netdata python.d plugin
+# Description: hddtemp netdata python.d module
 # Author: Pawel Krupa (paulfantom)
 
 from base import NetSocketService
index 951daf2d2321db046cb1d0d9c56cc648c5f435f7..31bfbfbe948cf3a63ae1f266125ee4627921a88a 100644 (file)
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-# Description: MySQL netdata python.d plugin
+# Description: MySQL netdata python.d module
 # Author: Pawel Krupa (paulfantom)
 
 from base import SimpleService
index c50d0b72c675990e16c054e9980ac4f0111f71bd..8b7aab79227cbd648b4f1dba6a1e93d91e2267ed 100644 (file)
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-# Description: nginx netdata python.d plugin
+# Description: nginx netdata python.d module
 # Author: Pawel Krupa (paulfantom)
 
 from base import UrlService
index 024e6f5c7383afda668a15629708fa302b77efaa..5e5801103963afb1310c2a07795a1cbd2e411646 100755 (executable)
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-# Description: PHP-FPM netdata python.d plugin
+# Description: PHP-FPM netdata python.d module
 # Author: Pawel Krupa (paulfantom)
 
 from base import UrlService
index 70d65062ce61aefaeacc4e6ed7c8edcd45166567..3f82715dfb769ededab767bebe881217c531a564 100644 (file)
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-# Description: postfix netdata python.d plugin
+# Description: postfix netdata python.d module
 # Author: Pawel Krupa (paulfantom)
 
 from base import ExecutableService
@@ -9,14 +9,6 @@ from base import ExecutableService
 priority = 60000
 retries = 5
 
-# default job configuration (overridden by python.d.plugin)
-# config = {'local': {
-#             'update_every': update_every,
-#             'retries': retries,
-#             'priority': priority,
-#             'url': 'http://localhost/stub_status'
-#          }}
-
 # charts order (can be overridden if you want less charts, or different order)
 ORDER = ['qemails', 'qsize']
 
index a179dd9e19852a167d17b0fd24fc327990c7af36..f68ce7e57c9950d1223be0fc628a4a9481cf8b18 100644 (file)
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-# Description: squid netdata python.d plugin
+# Description: squid netdata python.d module
 # Author: Pawel Krupa (paulfantom)
 
 from base import NetSocketService
index a4b2e7104346f465558afa7c427e507b0e8469f0..060331cdcc12c20ba076b4d7a2048443963fbb3a 100644 (file)
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-# Description: tomcat netdata python.d plugin
+# Description: tomcat netdata python.d module
 # Author: Pawel Krupa (paulfantom)
 
 from base import UrlService