Makefile.am 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. # SPDX-License-Identifier: GPL-3.0-or-later
  2. AUTOMAKE_OPTIONS = subdir-objects
  3. MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
  4. SUBDIRS = \
  5. notifications \
  6. $(NULL)
  7. CLEANFILES = \
  8. $(NULL)
  9. dist_noinst_DATA = \
  10. README.md \
  11. $(NULL)
  12. userhealthconfigdir=$(configdir)/health.d
  13. dist_userhealthconfig_DATA = \
  14. $(NULL)
  15. # Explicitly install directories to avoid permission issues due to umask
  16. install-exec-local:
  17. $(INSTALL) -d $(DESTDIR)$(userhealthconfigdir)
  18. healthconfigdir=$(libconfigdir)/health.d
  19. dist_healthconfig_DATA = \
  20. health.d/adaptec_raid.conf \
  21. health.d/anomalies.conf \
  22. health.d/apcupsd.conf \
  23. health.d/bcache.conf \
  24. health.d/beanstalkd.conf \
  25. health.d/bind_rndc.conf \
  26. health.d/boinc.conf \
  27. health.d/btrfs.conf \
  28. health.d/ceph.conf \
  29. health.d/cgroups.conf \
  30. health.d/cpu.conf \
  31. health.d/cockroachdb.conf \
  32. health.d/consul.conf \
  33. health.d/disks.conf \
  34. health.d/dnsmasq_dhcp.conf \
  35. health.d/dns_query.conf \
  36. health.d/docker.conf \
  37. health.d/elasticsearch.conf \
  38. health.d/entropy.conf \
  39. health.d/exporting.conf \
  40. health.d/file_descriptors.conf \
  41. health.d/geth.conf \
  42. health.d/ioping.conf \
  43. health.d/gearman.conf \
  44. health.d/go.d.plugin.conf \
  45. health.d/haproxy.conf \
  46. health.d/hdfs.conf \
  47. health.d/httpcheck.conf \
  48. health.d/ipc.conf \
  49. health.d/ipfs.conf \
  50. health.d/ipmi.conf \
  51. health.d/isc_dhcpd.conf \
  52. health.d/kubelet.conf \
  53. health.d/linux_power_supply.conf \
  54. health.d/load.conf \
  55. health.d/mdstat.conf \
  56. health.d/megacli.conf \
  57. health.d/memcached.conf \
  58. health.d/memory.conf \
  59. health.d/ml.conf \
  60. health.d/mysql.conf \
  61. health.d/net.conf \
  62. health.d/netfilter.conf \
  63. health.d/nvme.conf \
  64. health.d/nut.conf \
  65. health.d/pihole.conf \
  66. health.d/plugin.conf \
  67. health.d/ping.conf \
  68. health.d/postgres.conf \
  69. health.d/portcheck.conf \
  70. health.d/processes.conf \
  71. health.d/python.d.plugin.conf \
  72. health.d/qos.conf \
  73. health.d/ram.conf \
  74. health.d/redis.conf \
  75. health.d/retroshare.conf \
  76. health.d/riakkv.conf \
  77. health.d/scaleio.conf \
  78. health.d/softnet.conf \
  79. health.d/synchronization.conf \
  80. health.d/swap.conf \
  81. health.d/systemdunits.conf \
  82. health.d/timex.conf \
  83. health.d/tcp_conn.conf \
  84. health.d/tcp_listen.conf \
  85. health.d/tcp_mem.conf \
  86. health.d/tcp_orphans.conf \
  87. health.d/tcp_resets.conf \
  88. health.d/udp_errors.conf \
  89. health.d/unbound.conf \
  90. health.d/upsd.conf \
  91. health.d/vcsa.conf \
  92. health.d/vernemq.conf \
  93. health.d/vsphere.conf \
  94. health.d/web_log.conf \
  95. health.d/whoisquery.conf \
  96. health.d/windows.conf \
  97. health.d/x509check.conf \
  98. health.d/zfs.conf \
  99. health.d/dbengine.conf \
  100. $(NULL)