blob: 066744cab721b9c3dad5ab5c56fa0814971d8a24 (
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
|
#
# Copyright (C) 2015 Alon Bar-Lev <alon.barlev@gmail.com>
#
MAINTAINERCLEANFILES= $(srcdir)/Makefile.in
dist_config_DATA = \
apps_groups.conf \
charts.d.conf \
python.d.conf \
health_alarm_notify.conf \
health_email_recipients.conf \
$(NULL)
chartsconfigdir=$(configdir)/charts.d
dist_chartsconfig_DATA = \
$(NULL)
nodeconfigdir=$(configdir)/node.d
dist_nodeconfig_DATA = \
$(NULL)
pythonconfigdir=$(configdir)/python.d
dist_pythonconfig_DATA = \
python.d/apache.conf \
python.d/apache_cache.conf \
python.d/cpufreq.conf \
python.d/dovecot.conf \
python.d/example.conf \
python.d/exim.conf \
python.d/hddtemp.conf \
python.d/ipfs.conf \
python.d/memcached.conf \
python.d/mysql.conf \
python.d/nginx.conf \
python.d/nginx_log.conf \
python.d/phpfpm.conf \
python.d/postfix.conf \
python.d/redis.conf \
python.d/retroshare.conf \
python.d/sensors.conf \
python.d/squid.conf \
python.d/tomcat.conf \
$(NULL)
healthconfigdir=$(configdir)/health.d
dist_healthconfig_DATA = \
health.d/apache.conf \
health.d/cpu.conf \
health.d/disks.conf \
health.d/entropy.conf \
health.d/tcp_resets.conf \
health.d/memcached.conf \
health.d/mysql.conf \
health.d/named.conf \
health.d/net.conf \
health.d/nginx.conf \
health.d/qos.conf \
health.d/ram.conf \
health.d/redis.conf \
health.d/retroshare.conf \
health.d/softnet.conf \
health.d/swap.conf \
health.d/squid.conf \
$(NULL)
|