From 5d7e49d27f949588b7e77890b81e28fa66a31cb6 Mon Sep 17 00:00:00 2001 From: paulfantom Date: Thu, 7 Jul 2016 12:40:02 +0200 Subject: [PATCH] config files + makefiles --- conf.d/Makefile.am | 3 +++ conf.d/python.d/cpufreq.conf | 4 ++++ conf.d/python.d/exim.conf | 4 ++++ conf.d/python.d/postfix.conf | 4 ++++ python.d/Makefile.am | 1 + 5 files changed, 16 insertions(+) create mode 100644 conf.d/python.d/cpufreq.conf create mode 100644 conf.d/python.d/exim.conf create mode 100644 conf.d/python.d/postfix.conf diff --git a/conf.d/Makefile.am b/conf.d/Makefile.am index faf4ecdf..ea19e0ab 100644 --- a/conf.d/Makefile.am +++ b/conf.d/Makefile.am @@ -21,11 +21,14 @@ pythonconfigdir=$(configdir)/python.d dist_pythonconfig_DATA = \ python.d/apache.conf \ python.d/apache_cache.conf \ + python.d/cpufreq.conf \ python.d/example.conf \ + python.d/exim.conf \ python.d/hddtemp.conf \ python.d/mysql.conf \ python.d/nginx.conf \ python.d/phpfpm.conf \ + python.d/postfix.conf \ python.d/squid.conf \ python.d/tomcat.conf \ $(NULL) diff --git a/conf.d/python.d/cpufreq.conf b/conf.d/python.d/cpufreq.conf new file mode 100644 index 00000000..e25910e3 --- /dev/null +++ b/conf.d/python.d/cpufreq.conf @@ -0,0 +1,4 @@ +# Example configuration of cpufreq.chart.py +# YAML format + +update_every : 2 diff --git a/conf.d/python.d/exim.conf b/conf.d/python.d/exim.conf new file mode 100644 index 00000000..2c131797 --- /dev/null +++ b/conf.d/python.d/exim.conf @@ -0,0 +1,4 @@ +# Example configuration of exim.chart.py +# YAML format + +update_every : 2 diff --git a/conf.d/python.d/postfix.conf b/conf.d/python.d/postfix.conf new file mode 100644 index 00000000..76129947 --- /dev/null +++ b/conf.d/python.d/postfix.conf @@ -0,0 +1,4 @@ +# Example configuration of postfix.chart.py +# YAML format + +update_every : 2 diff --git a/python.d/Makefile.am b/python.d/Makefile.am index 529e9d62..132e551b 100644 --- a/python.d/Makefile.am +++ b/python.d/Makefile.am @@ -12,6 +12,7 @@ dist_python_SCRIPTS = \ apache_cache.chart.py \ cpufreq.chart.py \ example.chart.py \ + exim.chart.py \ hddtemp.chart.py \ mysql.chart.py \ nginx.chart.py \ -- 2.39.2