summaryrefslogtreecommitdiffstats
path: root/conf.d/Makefile.am
blob: efe1f2a6e34d0af98c2153340d809b37f9859543 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#
# Copyright (C) 2015 Alon Bar-Lev <alon.barlev@gmail.com>
#
MAINTAINERCLEANFILES= $(srcdir)/Makefile.in

dist_config_DATA = \
    apps_groups.conf \
    charts.d.conf \
    fping.conf \
    node.d.conf \
    python.d.conf \
    health_alarm_notify.conf \
    health_email_recipients.conf \
    stream.conf \
    $(NULL)

nodeconfigdir=$(configdir)/node.d
dist_nodeconfig_DATA = \
    node.d/README.md \
    node.d/named.conf.md \
    node.d/sma_webbox.conf.md \
    node.d/snmp.conf.md \
    $(NULL)

pythonconfigdir=$(configdir)/python.d
dist_pythonconfig_DATA = \
    python.d/apache.conf \
    python.d/apache_cache.conf \
    python.d/bind_rndc.conf \
    python.d/cpufreq.conf \
    python.d/dovecot.conf \
    python.d/elasticsearch.conf \
    python.d/example.conf \
    python.d/exim.conf \
    python.d/fail2ban.conf \
    python.d/freeradius.conf \
    python.d/haproxy.conf \
    python.d/hddtemp.conf \
    python.d/ipfs.conf \
    python.d/isc_dhcpd.conf \
    python.d/mdstat.conf \
    python.d/memcached.conf \
    python.d/mongodb.conf \
    python.d/mysql.conf \
    python.d/nginx.conf \
    python.d/nsd.conf \
    python.d/ovpn_status_log.conf \
    python.d/phpfpm.conf \
    python.d/postfix.conf \
    python.d/postgres.conf \
    python.d/redis.conf \
    python.d/retroshare.conf \
    python.d/sensors.conf \
    python.d/squid.conf \
    python.d/smartd_log.conf \
    python.d/tomcat.conf \
    python.d/varnish.conf \
    python.d/web_log.conf \
    $(NULL)

healthconfigdir=$(configdir)/health.d

dist_healthconfig_DATA = \
    health.d/apache.conf \
    health.d/backend.conf \
    health.d/bind_rndc.conf \
    health.d/elasticsearch.conf \
    health.d/fping.conf \
    health.d/haproxy.conf \
    health.d/ipfs.conf \
    health.d/ipmi.conf \
    health.d/isc_dhcpd.conf \
    health.d/mdstat.conf \
    health.d/memcached.conf \
    health.d/mysql.conf \
    health.d/named.conf \
    health.d/nginx.conf \
    health.d/postgres.conf \
    health.d/redis.conf \
    health.d/retroshare.conf \
    health.d/squid.conf \
    health.d/varnish.conf \
    health.d/web_log.conf \
    $(NULL)

if LINUX
dist_healthconfig_DATA += \
    health.d/cpu.conf \
    health.d/disks.conf \
    health.d/entropy.conf \
    health.d/ipc.conf \
    health.d/memory.conf \
    health.d/net.conf \
    health.d/netfilter.conf \
    health.d/qos.conf \
    health.d/ram.conf \
    health.d/softnet.conf \
    health.d/swap.conf \
    health.d/tcp_resets.conf \
    health.d/udp_errors.conf \
    $(NULL)
endif LINUX

chartsconfigdir=$(configdir)/charts.d
dist_chartsconfig_DATA = \
    charts.d/apache.conf \
    charts.d/apcupsd.conf \
    charts.d/cpufreq.conf \
    charts.d/exim.conf \
    charts.d/load_average.conf \
    charts.d/mysql.conf \
    charts.d/nut.conf \
    charts.d/phpfpm.conf \
    charts.d/sensors.conf \
    charts.d/tomcat.conf \
    charts.d/ap.conf \
    charts.d/cpu_apps.conf \
    charts.d/example.conf \
    charts.d/hddtemp.conf \
    charts.d/mem_apps.conf \
    charts.d/nginx.conf \
    charts.d/opensips.conf \
    charts.d/postfix.conf \
    charts.d/squid.conf \
    $(NULL)