Merge pull request #14634 from neheb/a
[feed/packages.git] / utils / collectd / Makefile
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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=collectd
11 PKG_VERSION:=5.12.0
12 PKG_RELEASE:=7
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=https://collectd.org/files/ \
16 https://github.com/collectd/collectd/releases/download/collectd-$(PKG_VERSION)
17 PKG_HASH:=5bae043042c19c31f77eb8464e56a01a5454e0b39fa07cf7ad0f1bfc9c3a09d6
18
19 PKG_FIXUP:=autoreconf
20 PKG_REMOVE_FILES:=aclocal.m4 libltdl/aclocal.m4
21 PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>, Hannu Nyman <hannu.nyman@iki.fi>
22 PKG_CPE_ID:=cpe:/a:collectd:collectd
23
24 PKG_INSTALL:=1
25 PKG_BUILD_PARALLEL:=1
26 PKG_USE_MIPS16:=0
27
28 COLLECTD_PLUGINS_DISABLED:= \
29 amqp \
30 ampq1 \
31 apple_sensors \
32 aquaero \
33 barometer \
34 battery \
35 buddyinfo \
36 capabilities \
37 ceph \
38 cgroups \
39 cpusleep \
40 curl_jolokia \
41 curl_json \
42 curl_xml \
43 dbi \
44 dcpmm \
45 dpdkevents \
46 dpdkstat \
47 dpdk_telemetry \
48 drbd \
49 fhcount \
50 genericjmx \
51 gmond \
52 gps \
53 gpu_nvidia \
54 grpc \
55 hddtemp \
56 hugepages \
57 infiniband \
58 intel_pmu \
59 intel_rdt \
60 ipc \
61 ipmi \
62 ipstats \
63 ipvs \
64 java \
65 logparser \
66 log_logstash \
67 lvm \
68 lpar \
69 madwifi \
70 mbmon \
71 mcelog \
72 md \
73 mdevents \
74 memcachec \
75 memcached \
76 mic \
77 monitorus \
78 multimeter \
79 netapp \
80 netstat_udp \
81 nfs \
82 notify_desktop \
83 notify_email \
84 notify_nagios \
85 numa \
86 onewire \
87 openldap \
88 openvz \
89 oracle \
90 ovs_events \
91 ovs_stats \
92 pcie_errors \
93 perl \
94 pf \
95 pinba \
96 procevent \
97 python \
98 redfish \
99 redis \
100 rrdcached \
101 serial \
102 sigrok \
103 slurm \
104 smart \
105 snmp_agent \
106 statsd \
107 synproxy \
108 sysevent \
109 tape \
110 tokyotyrant \
111 turbostat \
112 uuid \
113 varnish \
114 virt \
115 vserver \
116 write_influxdb_udp \
117 write_kafka \
118 write_log \
119 write_mongodb \
120 write_prometheus \
121 write_redis \
122 write_riemann \
123 write_sensu \
124 write_stackdriver \
125 write_syslog \
126 write_tsdb \
127 xencpu \
128 xmms \
129 zfs_arc \
130 zone \
131 zookeeper
132
133 COLLECTD_PLUGINS_SELECTED:= \
134 apache \
135 apcups \
136 ascent \
137 bind \
138 chrony \
139 conntrack \
140 contextswitch \
141 cpu \
142 cpufreq \
143 csv \
144 curl \
145 df \
146 dhcpleases \
147 disk \
148 dns \
149 email \
150 entropy \
151 ethstat \
152 exec \
153 filecount \
154 fscache \
155 interface \
156 ipstatistics \
157 iptables \
158 irq \
159 iwinfo \
160 load \
161 logfile \
162 lua \
163 match_empty_counter \
164 match_hashed \
165 match_regex \
166 match_timediff \
167 match_value \
168 memory \
169 modbus \
170 mqtt \
171 mysql \
172 netlink \
173 network \
174 nginx \
175 ntpd \
176 nut \
177 olsrd \
178 openvpn \
179 ping \
180 postgresql \
181 powerdns \
182 processes \
183 protocols \
184 routeros \
185 rrdtool \
186 sensors \
187 snmp \
188 snmp6 \
189 swap \
190 syslog \
191 table \
192 tail \
193 tail_csv \
194 tcpconns \
195 teamspeak2 \
196 ted \
197 thermal \
198 threshold \
199 ubi \
200 unixsock \
201 uptime \
202 users \
203 vmem \
204 wireless \
205 write_graphite \
206 write_http \
207
208 PKG_CONFIG_DEPENDS:= \
209 $(patsubst %,CONFIG_PACKAGE_collectd-mod-%,$(subst _,-,$(COLLECTD_PLUGINS_SELECTED))) \
210
211 include $(INCLUDE_DIR)/package.mk
212 include $(INCLUDE_DIR)/kernel.mk
213 # collectd-mod-mysql needs iconv
214 include $(INCLUDE_DIR)/nls.mk
215
216 define Package/collectd/Default
217 SECTION:=utils
218 CATEGORY:=Utilities
219 TITLE:=Lightweight system statistics collection daemon
220 URL:=https://collectd.org/
221 endef
222
223 define Package/collectd
224 $(call Package/collectd/Default)
225 DEPENDS:= +libpthread \
226 +zlib \
227 +libltdl \
228 +libip4tc \
229 +jshn \
230 +PACKAGE_collectd-mod-lua:liblua
231 MENU:=1
232 endef
233
234 define Package/collectd/description
235 collectd is a small daemon which collects system information periodically
236 and provides mechanismns to store the values in a variety of ways.
237 endef
238
239 define Package/collectd/config
240 config PACKAGE_COLLECTD_ENCRYPTED_NETWORK
241 bool "Enable ability to use encrypted networking"
242 default n
243 depends on PACKAGE_collectd
244 select PACKAGE_collectd-mod-network
245 endef
246
247 # common configure args
248 CONFIGURE_ARGS+= \
249 --disable-werror \
250 --disable-debug \
251 --enable-daemon \
252 --with-nan-emulation \
253 --with-libyajl=no \
254 --without-perl-bindings \
255 --without-libudev
256
257 CONFIGURE_VARS+= \
258 CFLAGS="$$$$CFLAGS $(FPIC)" \
259 LDFLAGS="$$$$LDFLAGS -lm -lz" \
260 KERNEL_DIR="$(LINUX_DIR)"
261
262 ifneq ($(CONFIG_PACKAGE_collectd-mod-lua),)
263 CONFIGURE_VARS+= \
264 LDFLAGS="$$$$LDFLAGS -llua"
265 endif
266
267 ifneq ($(CONFIG_PACKAGE_COLLECTD_ENCRYPTED_NETWORK),)
268 CONFIGURE_ARGS+= \
269 --with-libgcrypt=$(STAGING_DIR)/usr
270 CONFIGURE_VARS+= \
271 GCRYPT_LIBS="-lgcrypt"
272 else
273 CONFIGURE_ARGS+= \
274 --without-libgcrypt
275 endif
276
277 CONFIGURE_PLUGIN= \
278 $(foreach m, $(1), \
279 $(if $(CONFIG_PACKAGE_collectd-mod-$(subst _,-,$(m))),--enable-$(m),--disable-$(m)) \
280 )
281
282 CONFIGURE_ARGS+= \
283 $(call CONFIGURE_PLUGIN,$(COLLECTD_PLUGINS_SELECTED)) \
284 $(call CONFIGURE_PLUGIN,$(COLLECTD_PLUGINS_DISABLED)) \
285
286 # exception: mod-ascent needs libxml2
287 ifneq ($(CONFIG_PACKAGE_collectd-mod-ascent),)
288 CONFIGURE_VARS+= \
289 CPPFLAGS="$$$$CPPFLAGS -I$(STAGING_DIR)/usr/include/libxml2"
290 endif
291
292 ifneq ($(CONFIG_BIG_ENDIAN),)
293 CONFIGURE_ARGS+= --with-fp-layout=endianflip
294 else
295 CONFIGURE_ARGS+= --with-fp-layout=nothing
296 endif
297
298 ifneq ($(CONFIG_PACKAGE_collectd-mod-postgresql),)
299 CONFIGURE_ARGS+= --with-libpq="$(STAGING_DIR)/usr/"
300 endif
301
302 ifneq ($(CONFIG_PACKAGE_collectd-mod-mysql),)
303 CONFIGURE_ARGS+= --with-libmysql="$(STAGING_DIR)/usr/"
304 endif
305
306 # exception: mod-netlink needs libnetlink from iproute
307 ifneq ($(CONFIG_PACKAGE_collectd-mod-netlink),)
308 CONFIGURE_ARGS+= --with-libnetlink="$(STAGING_DIR)/usr"
309 endif
310
311 # exception: mod-modbus needs libmodbus
312 ifneq ($(CONFIG_PACKAGE_collectd-mod-modbus),)
313 CONFIGURE_ARGS+= --with-libmodbus="$(STAGING_DIR)/usr"
314 endif
315
316 # exception: mod-rrdtool needs rrdtool-1.0.x
317 ifneq ($(CONFIG_PACKAGE_collectd-mod-rrdtool),)
318 CONFIGURE_ARGS+= --with-librrd="$(STAGING_DIR)/usr/lib/rrdtool-1.0"
319 endif
320
321 define Package/collectd/conffiles
322 /etc/collectd.conf
323 /etc/config/collectd
324 endef
325
326 define Package/collectd/install
327 $(INSTALL_DIR) $(1)/usr/sbin
328 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/collectd $(1)/usr/sbin/
329
330 $(INSTALL_DIR) $(1)/usr/share/collectd
331 $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/collectd/types.db $(1)/usr/share/collectd/
332
333 $(INSTALL_DIR) $(1)/etc/init.d
334 $(INSTALL_BIN) ./files/collectd.init $(1)/etc/init.d/collectd
335
336 $(INSTALL_DIR) $(1)/etc/config
337 $(INSTALL_CONF) files/collectd.uci $(1)/etc/config/collectd
338 endef
339
340 # 1: plugin name
341 # 2: plugin title/description
342 # 3: files
343 # 4: extra dependency
344 define BuildPlugin
345
346 PKG_CONFIG_DEPENDS+= CONFIG_PACKAGE_collectd-mod-$(1)
347
348 define Package/collectd-mod-$(1)
349 $$(call Package/collectd/Default)
350 TITLE:=$(2) plugin
351 DEPENDS:= collectd $(4)
352 endef
353
354 define Package/collectd-mod-$(1)/install
355 $(INSTALL_DIR) $$(1)/usr/lib/collectd
356 for m in $(3); do \
357 $(CP) \
358 $(PKG_INSTALL_DIR)/usr/lib/collectd/$$$$$$$${m}.so \
359 $$(1)/usr/lib/collectd/ ; \
360 done
361 if [ -f ./files/usr/share/collectd/plugin/$(1).json ]; then \
362 $(INSTALL_DIR) $$(1)/usr/share/collectd/plugin ; \
363 $(INSTALL_DATA) ./files/usr/share/collectd/plugin/$(1).json \
364 $$(1)/usr/share/collectd/plugin/$(1).json ; \
365 fi
366 endef
367
368 $$(eval $$(call BuildPackage,collectd-mod-$(1)))
369
370 endef
371
372 define BuildScriptPlugin
373 PKG_CONFIG_DEPENDS+= CONFIG_PACKAGE_collectd-mod-$(1)
374
375 define Package/collectd-mod-$(1)
376 $$(call Package/collectd/Default)
377 TITLE:=$(2) plugin
378 DEPENDS:= $(4)
379 endef
380
381 define Package/collectd-mod-$(1)/install
382 $(INSTALL_DIR) $$(1)/usr/libexec/collectd
383 for m in $(3); do \
384 ${INSTALL_BIN} \
385 ./files/exec-scripts/$$$$$$$${m}.sh $$(1)/usr/libexec/collectd/ ; \
386 done
387 if [ -f ./files/usr/share/collectd/plugin/$(1).json ]; then \
388 $(INSTALL_DIR) $$(1)/usr/share/collectd/plugin ; \
389 $(INSTALL_DATA) ./files/usr/share/collectd/plugin/$(1).json \
390 $$(1)/usr/share/collectd/plugin/$(1).json ; \
391 fi
392 endef
393
394 $$(eval $$(call BuildPackage,collectd-mod-$(1)))
395
396 endef
397
398 $(eval $(call BuildPackage,collectd))
399
400 #$(eval $(call BuildPlugin,NAME,DESCRIPTION,FILES,DEPENDENCIES))
401 $(eval $(call BuildPlugin,apache,apache status input,apache,+PACKAGE_collectd-mod-apache:libcurl))
402 $(eval $(call BuildPlugin,apcups,apcups status input,apcups,))
403 $(eval $(call BuildPlugin,ascent,ascent status input,ascent,+PACKAGE_collectd-mod-ascent:libcurl +PACKAGE_collectd-mod-ascent:libxml2))
404 $(eval $(call BuildPlugin,bind,BIND server/zone input,bind,+PACKAGE_collectd-mod-bind:libcurl +PACKAGE_collectd-mod-bind:libxml2))
405 $(eval $(call BuildPlugin,chrony,chrony status input,chrony,))
406 $(eval $(call BuildPlugin,conntrack,connection tracking table size input,conntrack,))
407 $(eval $(call BuildPlugin,contextswitch,context switch input,contextswitch,))
408 $(eval $(call BuildPlugin,cpu,CPU input,cpu,))
409 $(eval $(call BuildPlugin,cpufreq,CPU Freq input,cpufreq,@(TARGET_x86||TARGET_x86_64||TARGET_mvebu||TARGET_ipq806x||TARGET_armvirt||TARGET_ipq40xx||TARGET_bcm27xx_bcm2709))) # Only enable on targets with CPUs supporting frequency scaling
410 $(eval $(call BuildPlugin,csv,CSV output,csv,))
411 $(eval $(call BuildPlugin,curl,cURL input,curl,+PACKAGE_collectd-mod-curl:libcurl))
412 #$(eval $(call BuildPlugin,dbi,relational database input,dbi,+PACKAGE_collectd-mod-dbi:libdbi))
413 $(eval $(call BuildPlugin,df,disk space input,df,))
414 $(eval $(call BuildPlugin,dhcpleases,show dhcpleases,dhcpleases,))
415 $(eval $(call BuildPlugin,disk,disk usage/timing input,disk,))
416 $(eval $(call BuildPlugin,dns,DNS traffic input,dns,+PACKAGE_collectd-mod-dns:libpcap))
417 $(eval $(call BuildPlugin,email,email output,email,))
418 $(eval $(call BuildPlugin,entropy,Entropy amount input,entropy,))
419 $(eval $(call BuildPlugin,ethstat,Ethernet adapter statistics input,ethstat,))
420 $(eval $(call BuildPlugin,exec,process exec input,exec,))
421 $(eval $(call BuildPlugin,filecount,file count input,filecount,))
422 $(eval $(call BuildPlugin,fscache,file-system based caching framework input,fscache,))
423 $(eval $(call BuildPlugin,interface,network interfaces input,interface,))
424 $(eval $(call BuildPlugin,ipstatistics,ipstatistics input,ipstatistics,))
425 $(eval $(call BuildPlugin,iptables,iptables status input,iptables,+PACKAGE_collectd-mod-iptables:iptables +libip4tc +libip6tc))
426 $(eval $(call BuildPlugin,irq,interrupt usage input,irq,))
427 $(eval $(call BuildPlugin,iwinfo,libiwinfo wireless statistics,iwinfo,+PACKAGE_collectd-mod-iwinfo:libiwinfo))
428 $(eval $(call BuildPlugin,load,system load input,load,))
429 $(eval $(call BuildPlugin,logfile,log files output,logfile,))
430 $(eval $(call BuildPlugin,lua,lua input/output,lua,+PACKAGE_collectd-mod-lua:liblua))
431 $(eval $(call BuildPlugin,match-empty-counter,empty-counter match,match_empty_counter,))
432 $(eval $(call BuildPlugin,match-hashed,hashed match,match_hashed,))
433 $(eval $(call BuildPlugin,match-regex,regex match,match_regex,))
434 $(eval $(call BuildPlugin,match-timediff,timediff match,match_timediff,))
435 $(eval $(call BuildPlugin,match-value,value match,match_value,))
436 $(eval $(call BuildPlugin,mysql,MySQL status input,mysql,+PACKAGE_collectd-mod-mysql:libmysqlclient-r))
437 $(eval $(call BuildPlugin,memory,physical memory usage input,memory,))
438 $(eval $(call BuildPlugin,modbus,read variables through libmodbus,modbus,+PACKAGE_collectd-mod-modbus:libmodbus))
439 $(eval $(call BuildPlugin,mqtt,transmit data with MQTT,mqtt,+PACKAGE_collectd-mod-mqtt:libmosquitto))
440 $(eval $(call BuildPlugin,netlink,netlink input,netlink,+PACKAGE_collectd-mod-netlink:libmnl))
441 $(eval $(call BuildPlugin,network,network input/output,network,+PACKAGE_COLLECTD_ENCRYPTED_NETWORK:libgcrypt))
442 $(eval $(call BuildPlugin,nginx,nginx status input,nginx,+PACKAGE_collectd-mod-nginx:libcurl))
443 $(eval $(call BuildPlugin,ntpd,NTP daemon status input,ntpd,))
444 $(eval $(call BuildPlugin,nut,UPS monitoring input,nut,+PACKAGE_collectd-mod-nut:nut-common))
445 $(eval $(call BuildPlugin,olsrd,OLSRd status input,olsrd,))
446 $(eval $(call BuildPlugin,openvpn,OpenVPN traffic/compression input,openvpn,))
447 $(eval $(call BuildPlugin,ping,ping status input,ping,+PACKAGE_collectd-mod-ping:liboping))
448 $(eval $(call BuildPlugin,postgresql,PostgreSQL status input,postgresql,+PACKAGE_collectd-mod-postgresql:libpq))
449 $(eval $(call BuildPlugin,powerdns,PowerDNS server status input,powerdns,))
450 $(eval $(call BuildPlugin,processes,process status input,processes,+PACKAGE_collectd-mod-processes:libmnl))
451 $(eval $(call BuildPlugin,protocols,network protocols input,protocols,))
452 $(eval $(call BuildPlugin,routeros,MikroTik RouterOS input,routeros,+PACKAGE_collectd-mod-routeros:librouteros))
453 $(eval $(call BuildPlugin,rrdtool,RRDtool output,rrdtool,+PACKAGE_collectd-mod-rrdtool:librrd1))
454 $(eval $(call BuildPlugin,sensors,lm_sensors input,sensors,+PACKAGE_collectd-mod-sensors:libsensors))
455 $(eval $(call BuildPlugin,snmp,SNMP input,snmp,+PACKAGE_collectd-mod-snmp:libnetsnmp))
456 $(eval $(call BuildPlugin,snmp6,snmp6 input,snmp6,))
457 $(eval $(call BuildPlugin,swap,swap input,swap,))
458 $(eval $(call BuildPlugin,syslog,syslog output,syslog,))
459 $(eval $(call BuildPlugin,tail,tail input,tail,))
460 $(eval $(call BuildPlugin,tail-csv,tail CSV input,tail_csv,))
461 $(eval $(call BuildPlugin,table,table-like structured file input,table,))
462 $(eval $(call BuildPlugin,teamspeak2,TeamSpeak2 input,teamspeak2,))
463 $(eval $(call BuildPlugin,ted,The Energy Detective input,ted,))
464 $(eval $(call BuildPlugin,tcpconns,TCP connection tracking input,tcpconns,))
465 $(eval $(call BuildPlugin,thermal,system temperatures input,thermal,))
466 $(eval $(call BuildPlugin,threshold,Notifications and thresholds,threshold,))
467 $(eval $(call BuildPlugin,ubi,Unsorted block images,ubi,@NAND_SUPPORT))
468 $(eval $(call BuildPlugin,unixsock,unix socket output,unixsock,))
469 $(eval $(call BuildPlugin,uptime,uptime status input,uptime,))
470 $(eval $(call BuildPlugin,users,user logged in status input,users,))
471 $(eval $(call BuildPlugin,vmem,virtual memory usage input,vmem,))
472 $(eval $(call BuildPlugin,wireless,wireless status input,wireless,))
473 $(eval $(call BuildPlugin,write-graphite,Carbon/Graphite output,write_graphite,+PACKAGE_collectd-mod-write-graphite:libpthread))
474 $(eval $(call BuildPlugin,write-http,HTTP POST output,write_http,+PACKAGE_collectd-mod-write-http:libcurl))
475
476 $(eval $(call BuildScriptPlugin,sqm,SQM/qdisc collection,sqm_collectd,+PACKAGE_collectd-mod-sqm:collectd-mod-exec))