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.

348 lines
10 KiB

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