You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

405 lines
12 KiB

  1. #
  2. # Copyright (C) 2006-2016 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=collectd
  9. PKG_VERSION:=5.8.0
  10. PKG_RELEASE:=6
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
  12. PKG_SOURCE_URL:=https://collectd.org/files/ \
  13. https://github.com/collectd/collectd/releases/download/collectd-$(PKG_VERSION)
  14. PKG_HASH:=b06ff476bbf05533cb97ae6749262cc3c76c9969f032bd8496690084ddeb15c9
  15. PKG_FIXUP:=autoreconf
  16. PKG_REMOVE_FILES:=aclocal.m4 libltdl/aclocal.m4
  17. PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>, Hannu Nyman <hannu.nyman@iki.fi>
  18. PKG_INSTALL:=1
  19. PKG_BUILD_PARALLEL:=1
  20. PKG_USE_MIPS16:=0
  21. COLLECTD_PLUGINS_DISABLED:= \
  22. amqp \
  23. apple_sensors \
  24. aquaero \
  25. barometer \
  26. battery \
  27. ceph \
  28. cgroups \
  29. cpusleep \
  30. curl_json \
  31. curl_xml \
  32. dbi \
  33. dpdkevents \
  34. dpdkstat \
  35. drbd \
  36. ethstat \
  37. fhcount \
  38. genericjmx \
  39. gmond \
  40. gps \
  41. grpc \
  42. hddtemp \
  43. hugepages \
  44. intel_pmu \
  45. intel_rdt \
  46. ipc \
  47. ipmi \
  48. ipvs \
  49. java \
  50. log_logstash \
  51. lua \
  52. lvm \
  53. lpar \
  54. madwifi \
  55. mbmon \
  56. mcelog \
  57. md \
  58. memcachec \
  59. memcached \
  60. mic \
  61. monitorus \
  62. multimeter \
  63. netapp \
  64. nfs \
  65. notify_desktop \
  66. notify_email \
  67. notify_nagios \
  68. numa \
  69. openldap \
  70. openvz \
  71. oracle \
  72. ovs_events \
  73. ovs_stats \
  74. perl \
  75. pf \
  76. pinba \
  77. python \
  78. redis \
  79. routeros \
  80. rrdcached \
  81. serial \
  82. sigrok \
  83. smart \
  84. snmp_agent \
  85. statsd \
  86. swap \
  87. synproxy \
  88. tape \
  89. tokyotyrant \
  90. turbostat \
  91. uuid \
  92. varnish \
  93. virt \
  94. vserver \
  95. write_kafka \
  96. write_log \
  97. write_mongodb \
  98. write_prometheus \
  99. write_redis \
  100. write_riemann \
  101. write_sensu \
  102. write_tsdb \
  103. xencpu \
  104. xmms \
  105. zfs_arc \
  106. zone \
  107. zookeeper
  108. COLLECTD_PLUGINS_SELECTED:= \
  109. apache \
  110. apcups \
  111. ascent \
  112. bind \
  113. chrony \
  114. conntrack \
  115. contextswitch \
  116. cpu \
  117. cpufreq \
  118. csv \
  119. curl \
  120. df \
  121. disk \
  122. dns \
  123. email \
  124. entropy \
  125. exec \
  126. filecount \
  127. fscache \
  128. interface \
  129. iptables \
  130. irq \
  131. iwinfo \
  132. load \
  133. logfile \
  134. match_empty_counter \
  135. match_hashed \
  136. match_regex \
  137. match_timediff \
  138. match_value \
  139. memory \
  140. modbus \
  141. mqtt \
  142. mysql \
  143. netlink \
  144. network \
  145. nginx \
  146. ntpd \
  147. nut \
  148. olsrd \
  149. onewire \
  150. openvpn \
  151. ping \
  152. postgresql \
  153. powerdns \
  154. processes \
  155. protocols \
  156. rrdtool \
  157. sensors \
  158. snmp \
  159. syslog \
  160. table \
  161. tail \
  162. tail_csv \
  163. tcpconns \
  164. teamspeak2 \
  165. ted \
  166. thermal \
  167. unixsock \
  168. uptime \
  169. users \
  170. vmem \
  171. wireless \
  172. write_graphite \
  173. write_http \
  174. PKG_CONFIG_DEPENDS:= \
  175. $(patsubst %,CONFIG_PACKAGE_collectd-mod-%,$(subst _,-,$(COLLECTD_PLUGINS_SELECTED))) \
  176. include $(INCLUDE_DIR)/package.mk
  177. include $(INCLUDE_DIR)/kernel.mk
  178. # collectd-mod-mysql needs iconv
  179. include $(INCLUDE_DIR)/nls.mk
  180. define Package/collectd/Default
  181. SECTION:=utils
  182. CATEGORY:=Utilities
  183. TITLE:=Lightweight system statistics collection daemon
  184. URL:=https://collectd.org/
  185. endef
  186. define Package/collectd
  187. $(call Package/collectd/Default)
  188. DEPENDS:= +libpthread +zlib +libltdl +libip4tc
  189. MENU:=1
  190. endef
  191. define Package/collectd/description
  192. collectd is a small daemon which collects system information periodically
  193. and provides mechanismns to store the values in a variety of ways.
  194. endef
  195. define Package/collectd/config
  196. config PACKAGE_COLLECTD_ENCRYPTED_NETWORK
  197. bool "Enable ability to use encrypted networking"
  198. default n
  199. depends on PACKAGE_collectd
  200. select PACKAGE_collectd-mod-network
  201. endef
  202. ifneq ($(CONFIG_avr32),)
  203. TARGET_CFLAGS += -fsigned-char
  204. endif
  205. # common configure args
  206. CONFIGURE_ARGS+= \
  207. --disable-werror \
  208. --disable-debug \
  209. --enable-daemon \
  210. --with-nan-emulation \
  211. --with-libyajl=no \
  212. --without-perl-bindings \
  213. --without-libudev
  214. CONFIGURE_VARS+= \
  215. CFLAGS="$$$$CFLAGS $(FPIC)" \
  216. LDFLAGS="$$$$LDFLAGS -lm -lz" \
  217. KERNEL_DIR="$(LINUX_DIR)" \
  218. ifneq ($(CONFIG_PACKAGE_COLLECTD_ENCRYPTED_NETWORK),)
  219. CONFIGURE_ARGS+= \
  220. --with-libgcrypt=$(STAGING_DIR)/usr
  221. CONFIGURE_VARS+= \
  222. GCRYPT_LIBS="-lgcrypt"
  223. else
  224. CONFIGURE_ARGS+= \
  225. --without-libgcrypt
  226. endif
  227. CONFIGURE_PLUGIN= \
  228. $(foreach m, $(1), \
  229. $(if $(CONFIG_PACKAGE_collectd-mod-$(subst _,-,$(m))),--enable-$(m),--disable-$(m)) \
  230. )
  231. CONFIGURE_ARGS+= \
  232. $(call CONFIGURE_PLUGIN,$(COLLECTD_PLUGINS_SELECTED)) \
  233. $(call CONFIGURE_PLUGIN,$(COLLECTD_PLUGINS_DISABLED)) \
  234. # exception: mod-ascent needs libxml2
  235. ifneq ($(CONFIG_PACKAGE_collectd-mod-ascent),)
  236. CONFIGURE_VARS+= \
  237. CPPFLAGS="$$$$CPPFLAGS -I$(STAGING_DIR)/usr/include/libxml2"
  238. endif
  239. ifneq ($(CONFIG_BIG_ENDIAN),)
  240. CONFIGURE_ARGS+= --with-fp-layout=endianflip
  241. else
  242. CONFIGURE_ARGS+= --with-fp-layout=nothing
  243. endif
  244. ifneq ($(CONFIG_PACKAGE_collectd-mod-postgresql),)
  245. CONFIGURE_ARGS+= --with-libpq="$(STAGING_DIR)/usr/"
  246. endif
  247. ifneq ($(CONFIG_PACKAGE_collectd-mod-mysql),)
  248. CONFIGURE_ARGS+= --with-libmysql="$(STAGING_DIR)/usr/"
  249. endif
  250. # exception: mod-netlink needs libnetlink from iproute
  251. ifneq ($(CONFIG_PACKAGE_collectd-mod-netlink),)
  252. CONFIGURE_ARGS+= --with-libnetlink="$(STAGING_DIR)/usr"
  253. endif
  254. # exception: mod-modbus needs libmodbus
  255. ifneq ($(CONFIG_PACKAGE_collectd-mod-modbus),)
  256. CONFIGURE_ARGS+= --with-libmodbus="$(STAGING_DIR)/usr"
  257. endif
  258. # exception: mod-onewire needs libow-capi
  259. ifneq ($(CONFIG_PACKAGE_collectd-mod-onewire),)
  260. CONFIGURE_ARGS+= --with-libowcapi="$(STAGING_DIR)/usr"
  261. endif
  262. # exception: mod-rrdtool needs rrdtool-1.0.x
  263. ifneq ($(CONFIG_PACKAGE_collectd-mod-rrdtool),)
  264. CONFIGURE_ARGS+= --with-librrd="$(STAGING_DIR)/usr/lib/rrdtool-1.0"
  265. endif
  266. define Package/collectd/conffiles
  267. /etc/collectd.conf
  268. endef
  269. define Package/collectd/install
  270. $(INSTALL_DIR) $(1)/usr/sbin
  271. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/collectd $(1)/usr/sbin/
  272. $(INSTALL_DIR) $(1)/usr/share/collectd
  273. $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/collectd/types.db $(1)/usr/share/collectd/
  274. $(INSTALL_DIR) $(1)/etc
  275. $(INSTALL_CONF) ./files/collectd.conf $(1)/etc/
  276. $(INSTALL_DIR) $(1)/etc/init.d
  277. $(INSTALL_BIN) ./files/collectd.init $(1)/etc/init.d/collectd
  278. $(INSTALL_DIR) $(1)/etc/collectd/conf.d
  279. endef
  280. # 1: plugin name
  281. # 2: plugin title/description
  282. # 3: files
  283. # 4: extra dependency
  284. define BuildPlugin
  285. PKG_CONFIG_DEPENDS+= CONFIG_PACKAGE_collectd-mod-$(1)
  286. define Package/collectd-mod-$(1)
  287. $$(call Package/collectd/Default)
  288. TITLE:=$(2) plugin
  289. DEPENDS:= collectd $(4)
  290. endef
  291. define Package/collectd-mod-$(1)/install
  292. $(INSTALL_DIR) $$(1)/usr/lib/collectd
  293. for m in $(3); do \
  294. $(CP) \
  295. $(PKG_INSTALL_DIR)/usr/lib/collectd/$$$$$$$${m}.so \
  296. $$(1)/usr/lib/collectd/ ; \
  297. done
  298. endef
  299. $$(eval $$(call BuildPackage,collectd-mod-$(1)))
  300. endef
  301. $(eval $(call BuildPackage,collectd))
  302. #$(eval $(call BuildPlugin,NAME,DESCRIPTION,FILES,DEPENDENCIES))
  303. $(eval $(call BuildPlugin,apache,apache status input,apache,+PACKAGE_collectd-mod-apache:libcurl))
  304. $(eval $(call BuildPlugin,apcups,apcups status input,apcups,))
  305. $(eval $(call BuildPlugin,ascent,ascent status input,ascent,+PACKAGE_collectd-mod-ascent:libcurl +PACKAGE_collectd-mod-ascent:libxml2))
  306. $(eval $(call BuildPlugin,bind,BIND server/zone input,bind,+PACKAGE_collectd-mod-bind:libcurl +PACKAGE_collectd-mod-bind:libxml2))
  307. $(eval $(call BuildPlugin,chrony,chrony status input,chrony,))
  308. $(eval $(call BuildPlugin,conntrack,connection tracking table size input,conntrack,))
  309. $(eval $(call BuildPlugin,contextswitch,context switch input,contextswitch,))
  310. $(eval $(call BuildPlugin,cpu,CPU input,cpu,))
  311. $(eval $(call BuildPlugin,cpufreq,CPU Freq input,cpufreq,@(TARGET_x86||TARGET_x86_64||TARGET_mvebu||TARGET_ipq806x||TARGET_armvirt))) # Only enable on x86 mvebu ipq806x armvirt
  312. $(eval $(call BuildPlugin,csv,CSV output,csv,))
  313. $(eval $(call BuildPlugin,curl,cURL input,curl,+PACKAGE_collectd-mod-curl:libcurl))
  314. #$(eval $(call BuildPlugin,dbi,relational database input,dbi,+PACKAGE_collectd-mod-dbi:libdbi))
  315. $(eval $(call BuildPlugin,df,disk space input,df,))
  316. $(eval $(call BuildPlugin,disk,disk usage/timing input,disk,))
  317. $(eval $(call BuildPlugin,dns,DNS traffic input,dns,+PACKAGE_collectd-mod-dns:libpcap))
  318. $(eval $(call BuildPlugin,email,email output,email,))
  319. $(eval $(call BuildPlugin,entropy,Entropy amount input,entropy,))
  320. $(eval $(call BuildPlugin,exec,process exec input,exec,))
  321. $(eval $(call BuildPlugin,filecount,file count input,filecount,))
  322. $(eval $(call BuildPlugin,fscache,file-system based caching framework input,fscache,))
  323. $(eval $(call BuildPlugin,interface,network interfaces input,interface,))
  324. $(eval $(call BuildPlugin,iptables,iptables status input,iptables,+PACKAGE_collectd-mod-iptables:iptables +libiptc))
  325. $(eval $(call BuildPlugin,irq,interrupt usage input,irq,))
  326. $(eval $(call BuildPlugin,iwinfo,libiwinfo wireless statistics,iwinfo,+PACKAGE_collectd-mod-iwinfo:libiwinfo))
  327. $(eval $(call BuildPlugin,load,system load input,load,))
  328. $(eval $(call BuildPlugin,logfile,log files output,logfile,))
  329. $(eval $(call BuildPlugin,match-empty-counter,empty-counter match,match_empty_counter,))
  330. $(eval $(call BuildPlugin,match-hashed,hashed match,match_hashed,))
  331. $(eval $(call BuildPlugin,match-regex,regex match,match_regex,))
  332. $(eval $(call BuildPlugin,match-timediff,timediff match,match_timediff,))
  333. $(eval $(call BuildPlugin,match-value,value match,match_value,))
  334. $(eval $(call BuildPlugin,mysql,MySQL status input,mysql,+PACKAGE_collectd-mod-mysql:libmysqlclient-r))
  335. $(eval $(call BuildPlugin,memory,physical memory usage input,memory,))
  336. $(eval $(call BuildPlugin,modbus,read variables through libmodbus,modbus,+PACKAGE_collectd-mod-modbus:libmodbus))
  337. $(eval $(call BuildPlugin,mqtt,transmit data with MQTT,mqtt,+PACKAGE_collectd-mod-mqtt:libmosquitto))
  338. $(eval $(call BuildPlugin,netlink,netlink input,netlink,+PACKAGE_collectd-mod-netlink:libmnl))
  339. $(eval $(call BuildPlugin,network,network input/output,network,+PACKAGE_COLLECTD_ENCRYPTED_NETWORK:libgcrypt))
  340. $(eval $(call BuildPlugin,nginx,nginx status input,nginx,+PACKAGE_collectd-mod-nginx:libcurl))
  341. $(eval $(call BuildPlugin,ntpd,NTP daemon status input,ntpd,))
  342. $(eval $(call BuildPlugin,nut,UPS monitoring input,nut,+PACKAGE_collectd-mod-nut:nut-common))
  343. $(eval $(call BuildPlugin,olsrd,OLSRd status input,olsrd,))
  344. $(eval $(call BuildPlugin,onewire,onewire sensor input,onewire,+PACKAGE_collectd-mod-onewire:libow-capi @BROKEN))
  345. $(eval $(call BuildPlugin,openvpn,OpenVPN traffic/compression input,openvpn,))
  346. $(eval $(call BuildPlugin,ping,ping status input,ping,+PACKAGE_collectd-mod-ping:liboping))
  347. $(eval $(call BuildPlugin,postgresql,PostgreSQL status input,postgresql,+PACKAGE_collectd-mod-postgresql:libpq))
  348. $(eval $(call BuildPlugin,powerdns,PowerDNS server status input,powerdns,))
  349. $(eval $(call BuildPlugin,processes,process status input,processes,))
  350. $(eval $(call BuildPlugin,protocols,network protocols input,protocols,))
  351. $(eval $(call BuildPlugin,rrdtool,RRDtool output,rrdtool,+PACKAGE_collectd-mod-rrdtool:librrd1))
  352. $(eval $(call BuildPlugin,sensors,lm_sensors input,sensors,+PACKAGE_collectd-mod-sensors:libsensors))
  353. $(eval $(call BuildPlugin,snmp,SNMP input,snmp,+PACKAGE_collectd-mod-snmp:libnetsnmp))
  354. $(eval $(call BuildPlugin,syslog,syslog output,syslog,))
  355. $(eval $(call BuildPlugin,tail,tail input,tail,))
  356. $(eval $(call BuildPlugin,tail-csv,tail CSV input,tail_csv,))
  357. $(eval $(call BuildPlugin,table,table-like structured file input,table,))
  358. $(eval $(call BuildPlugin,teamspeak2,TeamSpeak2 input,teamspeak2,))
  359. $(eval $(call BuildPlugin,ted,The Energy Detective input,ted,@((!TARGET_avr32)||BROKEN))) # fails on avr32 because of warnings treated as errors
  360. $(eval $(call BuildPlugin,tcpconns,TCP connection tracking input,tcpconns,))
  361. $(eval $(call BuildPlugin,thermal,system temperatures input,thermal,))
  362. $(eval $(call BuildPlugin,unixsock,unix socket output,unixsock,))
  363. $(eval $(call BuildPlugin,uptime,uptime status input,uptime,))
  364. $(eval $(call BuildPlugin,users,user logged in status input,users,))
  365. $(eval $(call BuildPlugin,vmem,virtual memory usage input,vmem,))
  366. $(eval $(call BuildPlugin,wireless,wireless status input,wireless,))
  367. $(eval $(call BuildPlugin,write-graphite,Carbon/Graphite output,write_graphite,+PACKAGE_collectd-mod-write-graphite:libpthread))
  368. $(eval $(call BuildPlugin,write-http,HTTP POST output,write_http,+PACKAGE_collectd-mod-write-http:libcurl))