RPM specfile: handle new zone plugin
[collectd.git] / contrib / redhat / collectd.spec
1 #
2 # q: What is this ?
3 # a: A specfile for building RPM packages of current collectd releases, for
4 #    RHEL/CentOS versions 5, 6 and 7. By default all the plugins which are
5 #    buildable based on the libraries available in the distribution + the
6 #    EPEL repository, will be built. Plugins depending on external libs will
7 #    be packaged in separate RPMs.
8 #
9 # q: And how can I do that ?
10 # a: By following these instructions, using mock:
11 #
12 # - install and configure mock (https://fedoraproject.org/wiki/Projects/Mock)
13 #
14 # - enable the EPEL repository (http://dl.fedoraproject.org/pub/epel/) in the
15 #   configuration files for your target systems (/etc/mock/*.cfg).
16 #
17 # - fetch the desired collectd release file from https://collectd.org/files/
18 #   and save it in your ~/rpmbuild/SOURCES/ directory (or build your own out of
19 #   the git repository: ./build.sh && ./configure && make-dist-bz2)
20 #
21 # - copy this file in your ~/rpmbuild/SPECS/ directory. Make sure the
22 #   "Version:" tag matches the version from the tarball.
23 #
24 # - build the SRPM first:
25 #   mock -r centos-6-x86_64 --buildsrpm --spec ~/rpmbuild/SPECS/collectd.spec \
26 #     --sources ~/rpmbuild/SOURCES/
27 #
28 # - then build the RPMs:
29 #   mock -r centos-6-x86_64 --no-clean --rebuild \
30 #     /var/lib/mock/centos-6-x86_64/result/collectd-X.Y.Z-NN.src.rpm
31 #
32 # - you can also optionally enable/disable plugins which are disabled/enabled
33 #   by default:
34 #   mock -r centos-6-x86_64 --no-clean --without=java --with=oracle --rebuild \
35 #     /var/lib/mock/centos-6-x86_64/result/collectd-X.Y.Z-NN.src.rpm
36 #
37
38 %global _hardened_build 1
39 %{?perl_default_filter}
40
41 # plugins only buildable on RHEL6
42 # (NB: %{elN} macro is not available on RHEL < 6)
43 %{?el6:%global _has_libyajl 1}
44 %{?el6:%global _has_recent_libpcap 1}
45 %{?el6:%global _has_recent_sockios_h 1}
46 %{?el6:%global _has_recent_libganglia 1}
47 %{?el6:%global _has_working_libiptc 1}
48 %{?el6:%global _has_ip_vs_h 1}
49 %{?el6:%global _has_lvm2app_h 1}
50 %{?el6:%global _has_libmodbus 1}
51 %{?el6:%global _has_libudev 1}
52 %{?el6:%global _has_iproute 1}
53 %{?el6:%global _has_atasmart 1}
54 %{?el6:%global _has_hiredis 1}
55 %{?el6:%global _has_asm_msr_index 1}
56
57 %{?el7:%global _has_libyajl 1}
58 %{?el7:%global _has_recent_libpcap 1}
59 %{?el7:%global _has_recent_sockios_h 1}
60 %{?el7:%global _has_working_libiptc 1}
61 %{?el7:%global _has_ip_vs_h 1}
62 %{?el7:%global _has_lvm2app_h 1}
63 %{?el7:%global _has_libudev 1}
64 %{?el7:%global _has_recent_librrd 1}
65 %{?el7:%global _has_varnish4 1}
66 %{?el7:%global _has_broken_libmemcached 1}
67 %{?el7:%global _has_iproute 1}
68 %{?el7:%global _has_atasmart 1}
69 %{?el7:%global _has_hiredis 1}
70 %{?el7:%global _has_asm_msr_index 1}
71
72 # plugins enabled by default
73 %define with_aggregation 0%{!?_without_aggregation:1}
74 %define with_amqp 0%{!?_without_amqp:1}
75 %define with_apache 0%{!?_without_apache:1}
76 %define with_apcups 0%{!?_without_apcups:1}
77 %define with_ascent 0%{!?_without_ascent:1}
78 %define with_battery 0%{!?_without_battery:1}
79 %define with_bind 0%{!?_without_bind:1}
80 %define with_ceph 0%{!?_without_ceph:0%{?_has_libyajl}}
81 %define with_cgroups 0%{!?_without_cgroups:1}
82 %define with_conntrack 0%{!?_without_conntrack:1}
83 %define with_contextswitch 0%{!?_without_contextswitch:1}
84 %define with_cpu 0%{!?_without_cpu:1}
85 %define with_cpufreq 0%{!?_without_cpufreq:1}
86 %define with_csv 0%{!?_without_csv:1}
87 %define with_curl 0%{!?_without_curl:1}
88 %define with_curl_json 0%{!?_without_curl_json:0%{?_has_libyajl}}
89 %define with_curl_xml 0%{!?_without_curl_xml:1}
90 %define with_dbi 0%{!?_without_dbi:1}
91 %define with_df 0%{!?_without_df:1}
92 %define with_disk 0%{!?_without_disk:1}
93 %define with_dns 0%{!?_without_dns:0%{?_has_recent_libpcap}}
94 %define with_drbd 0%{!?_without_drbd:1}
95 %define with_email 0%{!?_without_email:1}
96 %define with_entropy 0%{!?_without_entropy:1}
97 %define with_ethstat 0%{!?_without_ethstat:0%{?_has_recent_sockios_h}}
98 %define with_exec 0%{!?_without_exec:1}
99 %define with_fhcount 0%{!?_without_fhcount:1}
100 %define with_filecount 0%{!?_without_filecount:1}
101 %define with_fscache 0%{!?_without_fscache:1}
102 %define with_gmond 0%{!?_without_gmond:0%{?_has_recent_libganglia}}
103 %define with_hddtemp 0%{!?_without_hddtemp:1}
104 %define with_interface 0%{!?_without_interface:1}
105 %define with_ipc 0%{!?_without_ipc:1}
106 %define with_ipmi 0%{!?_without_ipmi:1}
107 %define with_iptables 0%{!?_without_iptables:0%{?_has_working_libiptc}}
108 %define with_ipvs 0%{!?_without_ipvs:0%{?_has_ip_vs_h}}
109 %define with_irq 0%{!?_without_irq:1}
110 %define with_java 0%{!?_without_java:1}
111 %define with_virt 0%{!?_without_virt:1}
112 %define with_load 0%{!?_without_load:1}
113 %define with_logfile 0%{!?_without_logfile:1}
114 %define with_log_logstash 0%{!?_without_log_logstash:0%{?_has_libyajl}}
115 %define with_lvm 0%{!?_without_lvm:0%{?_has_lvm2app_h}}
116 %define with_madwifi 0%{!?_without_madwifi:1}
117 %define with_mbmon 0%{!?_without_mbmon:1}
118 %define with_md 0%{!?_without_md:1}
119 %define with_memcachec 0%{!?_without_memcachec:0%{!?_has_broken_libmemcached:1}}
120 %define with_memcached 0%{!?_without_memcached:1}
121 %define with_memory 0%{!?_without_memory:1}
122 %define with_multimeter 0%{!?_without_multimeter:1}
123 %define with_modbus 0%{!?_without_modbus:0%{?_has_libmodbus}}
124 %define with_mysql 0%{!?_without_mysql:1}
125 %define with_netlink 0%{!?_without_netlink:0%{?_has_iproute}}
126 %define with_network 0%{!?_without_network:1}
127 %define with_nfs 0%{!?_without_nfs:1}
128 %define with_nginx 0%{!?_without_nginx:1}
129 %define with_notify_desktop 0%{!?_without_notify_desktop:1}
130 %define with_notify_email 0%{!?_without_notify_email:1}
131 %define with_ntpd 0%{!?_without_ntpd:1}
132 %define with_numa 0%{!?_without_numa:1}
133 %define with_nut 0%{!?_without_nut:1}
134 %define with_olsrd 0%{!?_without_olsrd:1}
135 %define with_openldap 0%{!?_without_openldap:1}
136 %define with_openvpn 0%{!?_without_openvpn:1}
137 %define with_perl 0%{!?_without_perl:1}
138 %define with_pinba 0%{!?_without_pinba:1}
139 %define with_ping 0%{!?_without_ping:1}
140 %define with_postgresql 0%{!?_without_postgresql:1}
141 %define with_powerdns 0%{!?_without_powerdns:1}
142 %define with_processes 0%{!?_without_processes:1}
143 %define with_protocols 0%{!?_without_protocols:1}
144 %define with_python 0%{!?_without_python:1}
145 %define with_redis 0%{!?_without_redis:0%{?_has_hiredis}}
146 %define with_rrdcached 0%{!?_without_rrdcached:0%{?_has_recent_librrd}}
147 %define with_rrdtool 0%{!?_without_rrdtool:1}
148 %define with_sensors 0%{!?_without_sensors:1}
149 %define with_serial 0%{!?_without_serial:1}
150 %define with_smart 0%{!?_without_smart:0%{?_has_atasmart}}
151 %define with_snmp 0%{!?_without_snmp:1}
152 %define with_statsd 0%{!?_without_statsd:1}
153 %define with_swap 0%{!?_without_swap:1}
154 %define with_syslog 0%{!?_without_syslog:1}
155 %define with_table 0%{!?_without_table:1}
156 %define with_tail 0%{!?_without_tail:1}
157 %define with_tail_csv 0%{!?_without_tail_csv:1}
158 %define with_tcpconns 0%{!?_without_tcpconns:1}
159 %define with_teamspeak2 0%{!?_without_teamspeak2:1}
160 %define with_ted 0%{!?_without_ted:1}
161 %define with_thermal 0%{!?_without_thermal:1}
162 %define with_threshold 0%{!?_without_threshold:1}
163 %define with_turbostat 0%{!?_without_turbostat:0%{?_has_asm_msr_index}}
164 %define with_unixsock 0%{!?_without_unixsock:1}
165 %define with_uptime 0%{!?_without_uptime:1}
166 %define with_users 0%{!?_without_users:1}
167 %define with_uuid 0%{!?_without_uuid:1}
168 %define with_varnish 0%{!?_without_varnish:0%{!?_has_varnish4:1}}
169 %define with_vmem 0%{!?_without_vmem:1}
170 %define with_vserver 0%{!?_without_vserver:1}
171 %define with_wireless 0%{!?_without_wireless:1}
172 %define with_write_graphite 0%{!?_without_write_graphite:1}
173 %define with_write_http 0%{!?_without_write_http:1}
174 %define with_write_log 0%{!?_without_write_log:1}
175 %define with_write_redis 0%{!?_without_write_redis:0%{?_has_hiredis}}
176 %define with_write_riemann 0%{!?_without_write_riemann:1}
177 %define with_write_sensu 0%{!?_without_write_sensu:1}
178 %define with_write_tsdb 0%{!?_without_write_tsdb:1}
179 %define with_zfs_arc 0%{!?_without_zfs_arc:1}
180 %define with_zookeeper 0%{!?_without_zookeeper:1}
181
182 # Plugins not built by default because of dependencies on libraries not
183 # available in RHEL or EPEL:
184
185 # plugin apple_sensors disabled, requires a Mac
186 %define with_apple_sensors 0%{!?_without_apple_sensors:0}
187 # plugin aquaero disabled, requires a libaquaero5
188 %define with_aquaero 0%{!?_without_aquaero:0}
189 # plugin barometer disabled, requires a libi2c
190 %define with_barometer 0%{!?_without_barometer:0}
191 # plugin lpar disabled, requires AIX
192 %define with_lpar 0%{!?_without_lpar:0}
193 # plugin mic disabled, requires Mic
194 %define with_mic 0%{!?_without_mic:0}
195 # plugin netapp disabled, requires libnetapp
196 %define with_netapp 0%{!?_without_netapp:0}
197 # plugin onewire disabled, requires libowfs
198 %define with_onewire 0%{!?_without_onewire:0}
199 # plugin oracle disabled, requires Oracle
200 %define with_oracle 0%{!?_without_oracle:0}
201 # plugin oracle disabled, requires BSD
202 %define with_pf 0%{!?_without_pf:0}
203 # plugin routeros disabled, requires librouteros
204 %define with_routeros 0%{!?_without_routeros:0}
205 # plugin sigrok disabled, requires libsigrok
206 %define with_sigrok 0%{!?_without_sigrok:0}
207 # plugin tape disabled, requires libkstat
208 %define with_tape 0%{!?_without_tape:0}
209 # plugin tokyotyrant disabled, requires tcrdb.h
210 %define with_tokyotyrant 0%{!?_without_tokyotyrant:0}
211 # plugin write_kafka disabled, requires librdkafka
212 %define with_write_kafka 0%{!?_without_write_kafka:0}
213 # plugin write_mongodb disabled, requires libmongoc
214 %define with_write_mongodb 0%{!?_without_write_mongodb:0}
215 # plugin xmms disabled, requires xmms
216 %define with_xmms 0%{!?_without_xmms:0}
217 # plugin zone disabled, requires Solaris
218 %define with_zone 0%{!?_without_zone:0}
219
220 Summary:        statistics collection and monitoring daemon
221 Name:           collectd
222 Version:        5.5.0
223 Release:        1%{?dist}
224 URL:            http://collectd.org
225 Source:         http://collectd.org/files/%{name}-%{version}.tar.bz2
226 License:        GPLv2
227 Group:          System Environment/Daemons
228 BuildRoot:      %{_tmppath}/%{name}-%{version}-root
229 BuildRequires:  libgcrypt-devel, kernel-headers, libtool-ltdl-devel, libcap-devel
230 Vendor:         collectd development team <collectd@verplant.org>
231
232 %if 0%{?el7:1}
233 Requires(pre):          initscripts
234 Requires(post):         systemd
235 Requires(preun):        systemd
236 Requires(postun):       systemd
237 %else
238 Requires(post):         chkconfig
239 Requires(preun):        chkconfig, initscripts
240 Requires(postun):       initscripts
241 %endif
242
243 %description
244 collectd is a small daemon which collects system information periodically and
245 provides mechanisms to monitor and store the values in a variety of ways. It
246 is written in C for performance. Since the daemon doesn't need to start up
247 every time it wants to update the values it's very fast and easy on the
248 system. Also, the statistics are very fine grained since the files are updated
249 every 10 seconds by default.
250
251 %if %{with_amqp}
252 %package amqp
253 Summary:        AMQP plugin for collectd
254 Group:          System Environment/Daemons
255 Requires:       %{name}%{?_isa} = %{version}-%{release}
256 BuildRequires:  librabbitmq-devel
257 %description amqp
258 The AMQP plugin transmits or receives values collected by collectd via the
259 Advanced Message Queuing Protocol (AMQP).
260 %endif
261
262 %if %{with_apache}
263 %package apache
264 Summary:        Apache plugin for collectd
265 Group:          System Environment/Daemons
266 Requires:       %{name}%{?_isa} = %{version}-%{release}
267 BuildRequires:  curl-devel
268 %description apache
269 This plugin collects data provided by Apache's `mod_status'.
270 %endif
271
272 %if %{with_aquaero}
273 %package aquaero
274 Summary:        aquaero plugin for collectd
275 Group:          System Environment/Daemons
276 Requires:       %{name}%{?_isa} = %{version}-%{release}
277 %description aquaero
278 Various sensors in the Aquaero 5 watercooling board made by Aquacomputer.
279 %endif
280
281 %if %{with_ascent}
282 %package ascent
283 Summary:        Ascent plugin for collectd
284 Group:          System Environment/Daemons
285 Requires:       %{name}%{?_isa} = %{version}-%{release}
286 BuildRequires:  libxml2-devel, curl-devel
287 %description ascent
288 The Ascent plugin reads and parses the statistics page of Ascent, a free and
289 open-source server software for the game World of Warcraft by Blizzard
290 Entertainment.
291 %endif
292
293 %if %{with_barometer}
294 %package barometer
295 Summary:       barometer plugin for collectd
296 Group:         System Environment/Daemons
297 Requires:      %{name}%{?_isa} = %{version}-%{release}
298 %description barometer
299 Collects pressure and temperature from digital barometers.
300 %endif
301
302 %if %{with_bind}
303 %package bind
304 Summary:        Bind plugin for collectd
305 Group:          System Environment/Daemons
306 Requires:       %{name}%{?_isa} = %{version}-%{release}
307 BuildRequires:  libxml2-devel, curl-devel
308 %description bind
309 The BIND plugin retrieves this information that's encoded in XML and provided
310 via HTTP and submits the values to collectd.
311 %endif
312
313 %if %{with_ceph}
314 %package ceph
315 Summary:       Ceph plugin for collectd
316 Group:         System Environment/Daemons
317 Requires:      %{name}%{?_isa} = %{version}-%{release}
318 BuildRequires: yajl-devel
319 %description ceph
320 Ceph plugin for collectd
321 %endif
322
323 %if %{with_curl}
324 %package curl
325 Summary:        Curl plugin for collectd
326 Group:          System Environment/Daemons
327 Requires:       %{name}%{?_isa} = %{version}-%{release}
328 BuildRequires:  curl-devel
329 %description curl
330 The cURL plugin uses libcurl to read files and then parses them according to
331 the configuration.
332 %endif
333
334 %if %{with_curl_json}
335 %package curl_json
336 Summary:        Curl_json plugin for collectd
337 Group:          System Environment/Daemons
338 Requires:       %{name}%{?_isa} = %{version}-%{release}
339 BuildRequires:  curl-devel, yajl-devel
340 %description curl_json
341 The cURL-JSON plugin queries JavaScript Object Notation (JSON) data using the
342 cURL library and parses it according to the user's configuration.
343 %endif
344
345 %if %{with_curl_xml}
346 %package curl_xml
347 Summary:        Curl_xml plugin for collectd
348 Group:          System Environment/Daemons
349 Requires:       %{name}%{?_isa} = %{version}-%{release}
350 BuildRequires:  curl-devel, libxml2-devel
351 %description curl_xml
352 The cURL-XML plugin reads files using libcurl and parses it as Extensible
353 Markup Language (XML).
354 %endif
355
356 %if %{with_dbi}
357 %package dbi
358 Summary:        DBI plugin for collectd
359 Group:          System Environment/Daemons
360 Requires:       %{name}%{?_isa} = %{version}-%{release}
361 BuildRequires:  libdbi-devel
362 %description dbi
363 The DBI plugin uses libdbi, a database abstraction library, to execute SQL
364 statements on a database and read back the result.
365 %endif
366
367 %if %{with_disk}
368 %package disk
369 Summary:        disk plugin for collectd
370 Group:          System Environment/Daemons
371 Requires:       %{name}%{?_isa} = %{version}-%{release}
372 %{?_has_libudev:BuildRequires:  libudev-devel}
373 %description disk
374 The "disk" plugin collects information about the usage of physical disks and
375 logical disks (partitions).
376 %endif
377
378 %if %{with_dns}
379 %package dns
380 Summary:        DNS plugin for collectd
381 Group:          System Environment/Daemons
382 Requires:       %{name}%{?_isa} = %{version}-%{release}, libpcap >= 1.0
383 BuildRequires:  libpcap-devel >= 1.0
384 %description dns
385 The DNS plugin has a similar functionality to dnstop: It uses libpcap to get a
386 copy of all traffic from/to port UDP/53 (that's the DNS port), interprets the
387 packets and collects statistics of your DNS traffic.
388 %endif
389
390 %if %{with_email}
391 %package email
392 Summary:        Email plugin for collectd
393 Group:          System Environment/Daemons
394 Requires:       %{name}%{?_isa} = %{version}-%{release}, spamassassin
395 %description email
396 This plugin collects data provided by spamassassin.
397 %endif
398
399 %if %{with_gmond}
400 %package gmond
401 Summary:        Gmond plugin for collectd
402 Group:          System Environment/Daemons
403 Requires:       %{name}%{?_isa} = %{version}-%{release}
404 BuildRequires:  ganglia-devel
405 %description gmond
406 The gmond plugin subscribes to a Multicast group to receive data from gmond,
407 the client daemon of the Ganglia project.
408 %endif
409
410 %if %{with_hddtemp}
411 %package hddtemp
412 Summary:        Hddtemp plugin for collectd
413 Group:          System Environment/Daemons
414 Requires:       %{name}%{?_isa} = %{version}-%{release}, hddtemp
415 %description hddtemp
416 The HDDTemp plugin collects the temperature of hard disks. The temperatures are
417 provided via SMART and queried by the external hddtemp daemon.
418 %endif
419
420 %if %{with_ipmi}
421 %package ipmi
422 Summary:        IPMI plugin for collectd
423 Group:          System Environment/Daemons
424 Requires:       %{name}%{?_isa} = %{version}-%{release}
425 BuildRequires:  OpenIPMI-devel
426 %description ipmi
427 The IPMI plugin uses the OpenIPMI library to read hardware sensors from servers
428 using the Intelligent Platform Management Interface (IPMI).
429 %endif
430
431 %if %{with_iptables}
432 %package iptables
433 Summary:        IPtables plugin for collectd
434 Group:          System Environment/Daemons
435 Requires:       %{name}%{?_isa} = %{version}-%{release}
436 BuildRequires:  iptables-devel
437 %description iptables
438 The IPtables plugin can gather statistics from your ip_tables based packet
439 filter (aka. firewall) for both the IPv4 and the IPv6 protocol. It can collect
440 the byte- and packet-counters of selected rules and submit them to collectd.
441 %endif
442
443 %if %{with_java}
444 %package java
445 Summary:        Java plugin for collectd
446 Group:          System Environment/Daemons
447 Requires:       %{name}%{?_isa} = %{version}-%{release}
448 BuildRequires:  java-devel, jpackage-utils
449 Requires:       java, jpackage-utils
450 %description java
451 This plugin for collectd allows plugins to be written in Java and executed
452 in an embedded JVM.
453 %endif
454
455 %if %{with_log_logstash}
456 %package log_logstash
457 Summary:       log_logstash plugin for collectd
458 Group:         System Environment/Daemons
459 Requires:      %{name}%{?_isa} = %{version}-%{release}
460 BuildRequires: yajl-devel
461 %description log_logstash
462 This plugin logs in logstash JSON format
463 %endif
464
465 %if %{with_lvm}
466 %package lvm
467 Summary:        LVM plugin for collectd
468 Group:          System Environment/Daemons
469 Requires:       %{name}%{?_isa} = %{version}-%{release}
470 BuildRequires:  lvm2-devel
471 %description lvm
472 This plugin collects size of “Logical Volumes” (LV) and “Volume Groups” (VG)
473 of Linux' “Logical Volume Manager” (LVM).
474 %endif
475
476 %if %{with_memcachec}
477 %package memcachec
478 Summary:        Memcachec plugin for collectd
479 Group:          System Environment/Daemons
480 Requires:       %{name}%{?_isa} = %{version}-%{release}
481 BuildRequires:  libmemcached-devel
482 %description memcachec
483 The Memcachec plugin uses libmemcached to read statistics from a Memcached
484 instance. Note that another plugin, named `memcached', exists and does a
485 similar job, without requiring the installation of libmemcached.
486 %endif
487
488 %if %{with_mic}
489 %package mic
490 Summary:        mic plugin for collectd
491 Group:          System Environment/Daemons
492 Requires:       %{name}%{?_isa} = %{version}-%{release}
493 %description mic
494 The mic plugin collects CPU usage, memory usage, temperatures and power
495 consumption from Intel Many Integrated Core (MIC) CPUs.
496 %endif
497
498 %if %{with_modbus}
499 %package modbus
500 Summary:       modbus plugin for collectd
501 Group:         System Environment/Daemons
502 Requires:      %{name}%{?_isa} = %{version}-%{release}
503 BuildRequires:  libmodbus-devel
504 %description modbus
505 The modbus plugin collects values from Modbus/TCP enabled devices
506 %endif
507
508 %if %{with_mysql}
509 %package mysql
510 Summary:        MySQL plugin for collectd
511 Group:          System Environment/Daemons
512 Requires:       %{name}%{?_isa} = %{version}-%{release}
513 BuildRequires:  mysql-devel
514 %description mysql
515 MySQL querying plugin. This plugin provides data of issued commands, called
516 handlers and database traffic.
517 %endif
518
519 %if %{with_netlink}
520 %package netlink
521 Summary:        netlink plugin for collectd
522 Group:          System Environment/Daemons
523 Requires:       %{name}%{?_isa} = %{version}-%{release}
524 BuildRequires:  libmnl-devel, iproute-devel
525 %description netlink
526 The netlink plugin collects detailed network interface and routing statistics.
527 %endif
528
529 %if %{with_nginx}
530 %package nginx
531 Summary:        Nginx plugin for collectd
532 Group:          System Environment/Daemons
533 Requires:       %{name}%{?_isa} = %{version}-%{release}
534 BuildRequires:  curl-devel
535 %description nginx
536 This plugin gets data provided by nginx.
537 %endif
538
539 %if %{with_notify_desktop}
540 %package notify_desktop
541 Summary:        Notify_desktop plugin for collectd
542 Group:          System Environment/Daemons
543 Requires:       %{name}%{?_isa} = %{version}-%{release}
544 BuildRequires:  libnotify-devel, gtk2-devel
545 %description notify_desktop
546 The Notify Desktop plugin uses libnotify to display notifications to the user
547 via the desktop notification specification, i. e. on an X display.
548 %endif
549
550 %if %{with_notify_email}
551 %package notify_email
552 Summary:        Notify_email plugin for collectd
553 Group:          System Environment/Daemons
554 Requires:       %{name}%{?_isa} = %{version}-%{release}
555 BuildRequires:  libesmtp-devel
556 %description notify_email
557 The Notify Email plugin uses libESMTP to send notifications to a configured
558 email address.
559 %endif
560
561 %if %{with_nut}
562 %package nut
563 Summary:        Nut plugin for collectd
564 Group:          System Environment/Daemons
565 Requires:       %{name}%{?_isa} = %{version}-%{release}
566 BuildRequires:  nut-devel
567 %description nut
568 This plugin for collectd provides Network UPS Tools support.
569 %endif
570
571 %if %{with_openldap}
572 %package openldap
573 Summary:       Openldap plugin for collectd
574 Group:         System Environment/Daemons
575 Requires:      %{name}%{?_isa} = %{version}-%{release}
576 BuildRequires: openldap-devel
577 %description openldap
578 This plugin reads monitoring information from OpenLDAP's cn=Monitor subtree.
579 %endif
580
581 %if %{with_perl}
582 %package perl
583 Summary:        Perl plugin for collectd
584 Group:          System Environment/Daemons
585 Requires:       %{name}%{?_isa} = %{version}-%{release}
586 Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
587         %if 0%{?rhel} >= 6
588 BuildRequires:  perl-ExtUtils-Embed
589         %else
590 BuildRequires:  perl
591         %endif
592 %description perl
593 The Perl plugin embeds a Perl interpreter into collectd and exposes the
594 application programming interface (API) to Perl-scripts.
595 %endif
596
597 %if %{with_pinba}
598 %package pinba
599 Summary:        Pinba plugin for collectd
600 Group:          System Environment/Daemons
601 Requires:       %{name}%{?_isa} = %{version}-%{release}
602 BuildRequires:  protobuf-c-devel
603 %description pinba
604 The Pinba plugin receives and dispatches timing values from Pinba, a profiling
605 extension for PHP.
606 %endif
607
608 %if %{with_ping}
609 %package ping
610 Summary:        Ping plugin for collectd
611 Group:          System Environment/Daemons
612 Requires:       %{name}%{?_isa} = %{version}-%{release}
613 BuildRequires:  liboping-devel
614 %description ping
615 The Ping plugin measures network latency using ICMP “echo requests”, usually
616 known as “ping”.
617 %endif
618
619 %if %{with_postgresql}
620 %package postgresql
621 Summary:        PostgreSQL plugin for collectd
622 Group:          System Environment/Daemons
623 Requires:       %{name}%{?_isa} = %{version}-%{release}
624 BuildRequires:  postgresql-devel
625 %description postgresql
626 The PostgreSQL plugin connects to and executes SQL statements on a PostgreSQL
627 database.
628 %endif
629
630 %if %{with_python}
631 %package python
632 Summary:        Python plugin for collectd
633 Group:          System Environment/Daemons
634 Requires:       %{name}%{?_isa} = %{version}-%{release}
635         %if 0%{?rhel} >= 6
636 BuildRequires: python-devel
637         %else
638 BuildRequires: python26-devel
639         %endif
640 %description python
641 The Python plugin embeds a Python interpreter into collectd and exposes the
642 application programming interface (API) to Python-scripts.
643 %endif
644
645 %if %{with_redis}
646 %package redis
647 Summary:        Redis plugin for collectd
648 Group:          System Environment/Daemons
649 Requires:       %{name}%{?_isa} = %{version}-%{release}
650 BuildRequires:  hiredis-devel
651 %description redis
652 The Redis plugin connects to one or more instances of Redis, a key-value store,
653 and collects usage information using the hiredis library.
654 %endif
655
656 %if %{with_rrdcached}
657 %package rrdcached
658 Summary:        RRDCached plugin for collectd
659 Group:          System Environment/Daemons
660 Requires:       %{name}%{?_isa} = %{version}-%{release}, rrdtool >= 1.4
661 BuildRequires:  rrdtool-devel
662 %description rrdcached
663 The RRDCacheD plugin connects to the “RRD caching daemon”, rrdcached and
664 submits updates for RRD files to that daemon.
665 %endif
666
667 %if %{with_rrdtool}
668 %package rrdtool
669 Summary:        RRDtool plugin for collectd
670 Group:          System Environment/Daemons
671 Requires:       %{name}%{?_isa} = %{version}-%{release}
672 BuildRequires:  rrdtool-devel
673 %description rrdtool
674 The RRDtool plugin writes values to RRD-files using librrd.
675 %endif
676
677 %if %{with_sensors}
678 %package sensors
679 Summary:        Sensors plugin for collectd
680 Group:          System Environment/Daemons
681 Requires:       %{name}%{?_isa} = %{version}-%{release}
682 BuildRequires:  lm_sensors-devel
683 %description sensors
684 This plugin for collectd provides querying of sensors supported by lm_sensors.
685 %endif
686
687 %if %{with_sigrok}
688 %package sigrok
689 Summary:        sigrok plugin for collectd
690 Group:          System Environment/Daemons
691 Requires:       %{name}%{?_isa} = %{version}-%{release}
692 %description sigrok
693 Uses libsigrok as a backend, allowing any sigrok-supported device to have its
694 measurements fed to collectd. This includes multimeters, sound level meters,
695 thermometers, and much more.
696 %endif
697
698 %if %{with_smart}
699 %package smart
700 Summary:       SMART plugin for collectd
701 Group:         System Environment/Daemons
702 Requires:      %{name}%{?_isa} = %{version}-%{release}
703 BuildRequires: libatasmart-devel
704 %description smart
705 Collect SMART statistics, notably load cycle count, temperature and bad
706 sectors.
707 %endif
708
709 %if %{with_snmp}
710 %package snmp
711 Summary:        SNMP plugin for collectd
712 Group:          System Environment/Daemons
713 Requires:       %{name}%{?_isa} = %{version}-%{release}
714 BuildRequires:  net-snmp-devel
715 %description snmp
716 This plugin for collectd allows querying of network equipment using SNMP.
717 %endif
718
719 %if %{with_varnish}
720 %package varnish
721 Summary:        Varnish plugin for collectd
722 Group:          System Environment/Daemons
723 Requires:       %{name}%{?_isa} = %{version}-%{release}
724 BuildRequires:  varnish-libs-devel
725 %description varnish
726 The Varnish plugin collects information about Varnish, an HTTP accelerator.
727 %endif
728
729 %if %{with_virt}
730 %package virt
731 Summary:        Virt plugin for collectd
732 Group:          System Environment/Daemons
733 Requires:       %{name}%{?_isa} = %{version}-%{release}
734 BuildRequires:  libvirt-devel
735 %description virt
736 This plugin collects information from virtualized guests.
737 %endif
738
739 %if %{with_write_http}
740 %package write_http
741 Summary:        Write-HTTP plugin for collectd
742 Group:          System Environment/Daemons
743 Requires:       %{name}%{?_isa} = %{version}-%{release}
744 BuildRequires:  curl-devel
745 %description write_http
746 The Write-HTTP plugin sends the values collected by collectd to a web-server
747 using HTTP POST requests.
748 %endif
749
750 %if %{with_write_kafka}
751 %package write_kafka
752 Summary:       Write-kafka plugin for collectd
753 Group:         System Environment/Daemons
754 Requires:      %{name}%{?_isa} = %{version}-%{release}
755 BuildRequires: rdkafka-devel
756 %description write_kafka
757 The write_kafka plugin sends values to kafka, a distributed messaging system.
758 %endif
759
760 %if %{with_write_redis}
761 %package write_redis
762 Summary:        Write-Redis plugin for collectd
763 Group:          System Environment/Daemons
764 Requires:       %{name}%{?_isa} = %{version}-%{release}
765 BuildRequires:  hiredis-devel
766 %description write_redis
767 The Write Redis plugin stores values in Redis, a “data structures server”.
768 %endif
769
770 %if %{with_write_riemann}
771 %package write_riemann
772 Summary:        riemann plugin for collectd
773 Group:          System Environment/Daemons
774 Requires:       %{name}%{?_isa} = %{version}-%{release}
775 BuildRequires:  protobuf-c-devel
776 %description write_riemann
777 The riemann plugin submits values to Riemann, an event stream processor.
778 %endif
779
780 %package collection3
781 Summary:        Web-based viewer for collectd
782 Group:          System Environment/Daemons
783 Requires:       %{name}%{?_isa} = %{version}-%{release}
784 Requires: httpd
785 %description collection3
786 collection3 is a graphing front-end for the RRD files created by and filled
787 with collectd. It is written in Perl and should be run as an CGI-script.
788 Graphs are generated on-the-fly, so no cron job or similar is necessary.
789
790 %package php-collection
791 Summary:        collect php webfrontent
792 Group:          System Environment/Daemons
793 Requires:       collectd = %{version}-%{release}
794 Requires:       httpd
795 Requires:       php
796 Requires:       php-rrdtool
797 %description php-collection
798 PHP graphing frontend for RRD files created by and filled with collectd.
799
800 %package contrib
801 Summary:        Contrib files for collectd
802 Group:          System Environment/Daemons
803 Requires:       %{name}%{?_isa} = %{version}-%{release}
804 %description contrib
805 All the files found under contrib/ in the source tree are bundled in this
806 package.
807
808 %package -n libcollectdclient
809 Summary:        Collectd client library
810 Group:          System Environment/Daemons
811 %description -n libcollectdclient
812 Collectd client library
813
814 %package -n libcollectdclient-devel
815 Summary:        Development files for libcollectdclient
816 Group:          System Environment/Daemons
817 Requires:       pkgconfig
818 Requires:       libcollectdclient%{?_isa} = %{version}-%{release}
819 %description -n libcollectdclient-devel
820 Development files for libcollectdclient
821
822 %package -n collectd-utils
823 Summary:        Collectd utilities
824 Group:          System Environment/Daemons
825 Requires:       libcollectdclient%{?_isa} = %{version}-%{release}
826 Requires:       collectd%{?_isa} = %{version}-%{release}
827 %description -n collectd-utils
828 Collectd utilities
829
830 %prep
831 %setup -q
832
833 %build
834 %if %{with_aggregation}
835 %define _with_aggregation --enable-aggregation
836 %else
837 %define _with_aggregation --disable-aggregation
838 %endif
839
840 %if %{with_amqp}
841 %define _with_amqp --enable-amqp
842 %else
843 %define _with_amqp --disable-amqp
844 %endif
845
846 %if %{with_apache}
847 %define _with_apache --enable-apache
848 %else
849 %define _with_apache --disable-apache
850 %endif
851
852 %if %{with_apcups}
853 %define _with_apcups --enable-apcups
854 %else
855 %define _with_apcups --disable-apcups
856 %endif
857
858 %if %{with_apple_sensors}
859 %define _with_apple_sensors --enable-apple_sensors
860 %else
861 %define _with_apple_sensors --disable-apple_sensors
862 %endif
863
864 %if %{with_aquaero}
865 %define _with_aquaero --enable-aquaero
866 %else
867 %define _with_aquaero --disable-aquaero
868 %endif
869
870 %if %{with_ascent}
871 %define _with_ascent --enable-ascent
872 %else
873 %define _with_ascent --disable-ascent
874 %endif
875
876 %if %{with_barometer}
877 %define _with_barometer --enable-barometer
878 %else
879 %define _with_barometer --disable-barometer
880 %endif
881
882 %if %{with_battery}
883 %define _with_battery --enable-battery
884 %else
885 %define _with_battery --disable-battery
886 %endif
887
888 %if %{with_bind}
889 %define _with_bind --enable-bind
890 %else
891 %define _with_bind --disable-bind
892 %endif
893
894 %if %{with_cgroups}
895 %define _with_cgroups --enable-cgroups
896 %else
897 %define _with_cgroups --disable-cgroups
898 %endif
899
900 %if %{with_conntrack}
901 %define _with_conntrack --enable-conntrack
902 %else
903 %define _with_conntrack --disable-conntrack
904 %endif
905
906 %if %{with_contextswitch}
907 %define _with_contextswitch --enable-contextswitch
908 %else
909 %define _with_contextswitch --disable-contextswitch
910 %endif
911
912 %if %{with_cpu}
913 %define _with_cpu --enable-cpu
914 %else
915 %define _with_cpu --disable-cpu
916 %endif
917
918 %if %{with_cpufreq}
919 %define _with_cpufreq --enable-cpufreq
920 %else
921 %define _with_cpufreq --disable-cpufreq
922 %endif
923
924 %if %{with_csv}
925 %define _with_csv --enable-csv
926 %else
927 %define _with_csv --disable-csv
928 %endif
929
930 %if %{with_ceph}
931 %define _with_ceph --enable-ceph
932 %else
933 %define _with_ceph --disable-ceph
934 %endif
935
936 %if %{with_curl}
937 %define _with_curl --enable-curl
938 %else
939 %define _with_curl --disable-curl
940 %endif
941
942 %if %{with_curl_json}
943 %define _with_curl_json --enable-curl_json
944 %else
945 %define _with_curl_json --disable-curl_json
946 %endif
947
948 %if %{with_curl_xml}
949 %define _with_curl_xml --enable-curl_xml
950 %else
951 %define _with_curl_xml --disable-curl_xml
952 %endif
953
954 %if %{with_dbi}
955 %define _with_dbi --enable-dbi
956 %else
957 %define _with_dbi --disable-dbi
958 %endif
959
960 %if %{with_df}
961 %define _with_df --enable-df
962 %else
963 %define _with_df --disable-df
964 %endif
965
966 %if %{with_disk}
967 %define _with_disk --enable-disk
968 %else
969 %define _with_disk --disable-disk
970 %endif
971
972 %if %{with_dns}
973 %define _with_dns --enable-dns
974 %else
975 %define _with_dns --disable-dns
976 %endif
977
978 %if %{with_drbd}
979 %define _with_drbd --enable-drbd
980 %else
981 %define _with_drbd --disable-drbd
982 %endif
983
984 %if %{with_email}
985 %define _with_email --enable-email
986 %else
987 %define _with_email --disable-email
988 %endif
989
990 %if %{with_entropy}
991 %define _with_entropy --enable-entropy
992 %else
993 %define _with_entropy --disable-entropy
994 %endif
995
996 %if %{with_ethstat}
997 %define _with_ethstat --enable-ethstat
998 %else
999 %define _with_ethstat --disable-ethstat
1000 %endif
1001
1002 %if %{with_exec}
1003 %define _with_exec --enable-exec
1004 %else
1005 %define _with_exec --disable-exec
1006 %endif
1007
1008 %if %{with_fhcount}
1009 %define _with_fhcount --enable-fhcount
1010 %else
1011 %define _with_fhcount --disable-fhcount
1012 %endif
1013
1014 %if %{with_filecount}
1015 %define _with_filecount --enable-filecount
1016 %else
1017 %define _with_filecount --disable-filecount
1018 %endif
1019
1020 %if %{with_fscache}
1021 %define _with_fscache --enable-fscache
1022 %else
1023 %define _with_fscache --disable-fscache
1024 %endif
1025
1026 %if %{with_gmond}
1027 %define _with_gmond --enable-gmond
1028 %else
1029 %define _with_gmond --disable-gmond
1030 %endif
1031
1032 %if %{with_hddtemp}
1033 %define _with_hddtemp --enable-hddtemp
1034 %else
1035 %define _with_hddtemp --disable-hddtemp
1036 %endif
1037
1038 %if %{with_interface}
1039 %define _with_interface --enable-interface
1040 %else
1041 %define _with_interface --disable-interface
1042 %endif
1043
1044 %if %{with_ipc}
1045 %define _with_ipc --enable-ipc
1046 %else
1047 %define _with_ipc --disable-ipc
1048 %endif
1049
1050 %if %{with_ipmi}
1051 %define _with_ipmi --enable-ipmi
1052 %else
1053 %define _with_ipmi --disable-ipmi
1054 %endif
1055
1056 %if %{with_iptables}
1057 %define _with_iptables --enable-iptables
1058 %else
1059 %define _with_iptables --disable-iptables
1060 %endif
1061
1062 %if %{with_ipvs}
1063 %define _with_ipvs --enable-ipvs
1064 %else
1065 %define _with_ipvs --disable-ipvs
1066 %endif
1067
1068 %if %{with_irq}
1069 %define _with_irq --enable-irq
1070 %else
1071 %define _with_irq --disable-irq
1072 %endif
1073
1074 %if %{with_java}
1075 %define _with_java --enable-java --with-java=%{java_home}/
1076 %else
1077 %define _with_java --disable-java
1078 %endif
1079
1080 %if %{with_virt}
1081 %define _with_virt --enable-virt
1082 %else
1083 %define _with_virt --disable-virt
1084 %endif
1085
1086 %if %{with_load}
1087 %define _with_load --enable-load
1088 %else
1089 %define _with_load --disable-load
1090 %endif
1091
1092 %if %{with_logfile}
1093 %define _with_logfile --enable-logfile
1094 %else
1095 %define _with_logfile --disable-logfile
1096 %endif
1097
1098 %if %{with_log_logstash}
1099 %define _with_log_logstash --enable-log_logstash
1100 %else
1101 %define _with_log_logstash --disable-log_logstash
1102 %endif
1103
1104 %if %{with_lpar}
1105 %define _with_lpar --enable-lpar
1106 %else
1107 %define _with_lpar --disable-lpar
1108 %endif
1109
1110 %if %{with_lvm}
1111 %define _with_lvm --enable-lvm
1112 %else
1113 %define _with_lvm --disable-lvm
1114 %endif
1115
1116 %if %{with_madwifi}
1117 %define _with_madwifi --enable-madwifi
1118 %else
1119 %define _with_madwifi --disable-madwifi
1120 %endif
1121
1122 %if %{with_mbmon}
1123 %define _with_mbmon --enable-mbmon
1124 %else
1125 %define _with_mbmon --disable-mbmon
1126 %endif
1127
1128 %if %{with_md}
1129 %define _with_md --enable-md
1130 %else
1131 %define _with_md --disable-md
1132 %endif
1133
1134 %if %{with_memcachec}
1135 %define _with_memcachec --enable-memcachec
1136 %else
1137 %define _with_memcachec --disable-memcachec
1138 %endif
1139
1140 %if %{with_memcached}
1141 %define _with_memcached --enable-memcached
1142 %else
1143 %define _with_memcached --disable-memcached
1144 %endif
1145
1146 %if %{with_memory}
1147 %define _with_memory --enable-memory
1148 %else
1149 %define _with_memory --disable-memory
1150 %endif
1151
1152 %if %{with_mic}
1153 %define _with_mic --enable-mic
1154 %else
1155 %define _with_mic --disable-mic
1156 %endif
1157
1158 %if %{with_modbus}
1159 %define _with_modbus --enable-modbus
1160 %else
1161 %define _with_modbus --disable-modbus
1162 %endif
1163
1164 %if %{with_multimeter}
1165 %define _with_multimeter --enable-multimeter
1166 %else
1167 %define _with_multimeter --disable-multimeter
1168 %endif
1169
1170 %if %{with_mysql}
1171 %define _with_mysql --enable-mysql
1172 %else
1173 %define _with_mysql --disable-mysql
1174 %endif
1175
1176 %if %{with_netapp}
1177 %define _with_netapp --enable-netapp
1178 %else
1179 %define _with_netapp --disable-netapp
1180 %endif
1181
1182 %if %{with_netlink}
1183 %define _with_netlink --enable-netlink
1184 %else
1185 %define _with_netlink --disable-netlink
1186 %endif
1187
1188 %if %{with_network}
1189 %define _with_network --enable-network
1190 %else
1191 %define _with_network --disable-network
1192 %endif
1193
1194 %if %{with_nfs}
1195 %define _with_nfs --enable-nfs
1196 %else
1197 %define _with_nfs --disable-nfs
1198 %endif
1199
1200 %if %{with_nginx}
1201 %define _with_nginx --enable-nginx
1202 %else
1203 %define _with_nginx --disable-nginx
1204 %endif
1205
1206 %if %{with_notify_desktop}
1207 %define _with_notify_desktop --enable-notify_desktop
1208 %else
1209 %define _with_notify_desktop --disable-notify_desktop
1210 %endif
1211
1212 %if %{with_notify_email}
1213 %define _with_notify_email --enable-notify_email
1214 %else
1215 %define _with_notify_email --disable-notify_email
1216 %endif
1217
1218 %if %{with_ntpd}
1219 %define _with_ntpd --enable-ntpd
1220 %else
1221 %define _with_ntpd --disable-ntpd
1222 %endif
1223
1224 %if %{with_numa}
1225 %define _with_numa --enable-numa
1226 %else
1227 %define _with_numa --disable-numa
1228 %endif
1229
1230 %if %{with_nut}
1231 %define _with_nut --enable-nut
1232 %else
1233 %define _with_nut --disable-nut
1234 %endif
1235
1236 %if %{with_olsrd}
1237 %define _with_olsrd --enable-olsrd
1238 %else
1239 %define _with_olsrd --disable-olsrd
1240 %endif
1241
1242 %if %{with_onewire}
1243 %define _with_onewire --enable-onewire
1244 %else
1245 %define _with_onewire --disable-onewire
1246 %endif
1247
1248 %if %{with_openldap}
1249 %define _with_openldap --enable-openldap
1250 %else
1251 %define _with_openldap --disable-openldap
1252 %endif
1253
1254 %if %{with_openvpn}
1255 %define _with_openvpn --enable-openvpn
1256 %else
1257 %define _with_openvpn --disable-openvpn
1258 %endif
1259
1260 %if %{with_oracle}
1261 %define _with_oracle --enable-oracle
1262 %else
1263 %define _with_oracle --disable-oracle
1264 %endif
1265
1266 %if %{with_perl}
1267 %define _with_perl --enable-perl --with-perl-bindings="INSTALLDIRS=vendor"
1268 %else
1269 %define _with_perl --disable-perl
1270 %endif
1271
1272 %if %{with_pf}
1273 %define _with_pf --enable-pf
1274 %else
1275 %define _with_pf --disable-pf
1276 %endif
1277
1278 %if %{with_pinba}
1279 %define _with_pinba --enable-pinba
1280 %else
1281 %define _with_pinba --disable-pinba
1282 %endif
1283
1284 %if %{with_ping}
1285 %define _with_ping --enable-ping
1286 %else
1287 %define _with_ping --disable-ping
1288 %endif
1289
1290 %if %{with_postgresql}
1291 %define _with_postgresql --enable-postgresql
1292 %else
1293 %define _with_postgresql --disable-postgresql
1294 %endif
1295
1296 %if %{with_powerdns}
1297 %define _with_powerdns --enable-powerdns
1298 %else
1299 %define _with_powerdns --disable-powerdns
1300 %endif
1301
1302 %if %{with_processes}
1303 %define _with_processes --enable-processes
1304 %else
1305 %define _with_processes --disable-processes
1306 %endif
1307
1308 %if %{with_protocols}
1309 %define _with_protocols --enable-protocols
1310 %else
1311 %define _with_protocols --disable-protocols
1312 %endif
1313
1314 %if %{with_python}
1315         %if 0%{?rhel} >= 6
1316 %define _with_python --enable-python
1317         %else
1318 %define _with_python --enable-python --with-python=%{_bindir}/python2.6
1319         %endif
1320 %else
1321 %define _with_python --disable-python
1322 %endif
1323
1324 %if %{with_redis}
1325 %define _with_redis --enable-redis
1326 %else
1327 %define _with_redis --disable-redis
1328 %endif
1329
1330 %if %{with_routeros}
1331 %define _with_routeros --enable-routeros
1332 %else
1333 %define _with_routeros --disable-routeros
1334 %endif
1335
1336 %if %{with_rrdcached}
1337 %define _with_rrdcached --enable-rrdcached
1338 %else
1339 %define _with_rrdcached --disable-rrdcached
1340 %endif
1341
1342 %if %{with_rrdtool}
1343 %define _with_rrdtool --enable-rrdtool
1344 %else
1345 %define _with_rrdtool --disable-rrdtool
1346 %endif
1347
1348 %if %{with_sensors}
1349 %define _with_sensors --enable-sensors
1350 %else
1351 %define _with_sensors --disable-sensors
1352 %endif
1353
1354 %if %{with_serial}
1355 %define _with_serial --enable-serial
1356 %else
1357 %define _with_serial --disable-serial
1358 %endif
1359
1360 %if %{with_sigrok}
1361 %define _with_sigrok --enable-sigrok
1362 %else
1363 %define _with_sigrok --disable-sigrok
1364 %endif
1365
1366 %if %{with_smart}
1367 %define _with_smart --enable-smart
1368 %else
1369 %define _with_smart --disable-smart
1370 %endif
1371
1372 %if %{with_snmp}
1373 %define _with_snmp --enable-snmp
1374 %else
1375 %define _with_snmp --disable-snmp
1376 %endif
1377
1378 %if %{with_statsd}
1379 %define _with_statsd --enable-statsd
1380 %else
1381 %define _with_statsd --disable-statsd
1382 %endif
1383
1384 %if %{with_swap}
1385 %define _with_swap --enable-swap
1386 %else
1387 %define _with_swap --disable-swap
1388 %endif
1389
1390 %if %{with_syslog}
1391 %define _with_syslog --enable-syslog
1392 %else
1393 %define _with_syslog --disable-syslog
1394 %endif
1395
1396 %if %{with_table}
1397 %define _with_table --enable-table
1398 %else
1399 %define _with_table --disable-table
1400 %endif
1401
1402 %if %{with_tail}
1403 %define _with_tail --enable-tail
1404 %else
1405 %define _with_tail --disable-tail
1406 %endif
1407
1408 %if %{with_tail_csv}
1409 %define _with_tail_csv --enable-tail_csv
1410 %else
1411 %define _with_tail_csv --disable-tail_csv
1412 %endif
1413
1414 %if %{with_tape}
1415 %define _with_tape --enable-tape
1416 %else
1417 %define _with_tape --disable-tape
1418 %endif
1419
1420 %if %{with_tcpconns}
1421 %define _with_tcpconns --enable-tcpconns
1422 %else
1423 %define _with_tcpconns --disable-tcpconns
1424 %endif
1425
1426 %if %{with_teamspeak2}
1427 %define _with_teamspeak2 --enable-teamspeak2
1428 %else
1429 %define _with_teamspeak2 --disable-teamspeak2
1430 %endif
1431
1432 %if %{with_ted}
1433 %define _with_ted --enable-ted
1434 %else
1435 %define _with_ted --disable-ted
1436 %endif
1437
1438 %if %{with_thermal}
1439 %define _with_thermal --enable-thermal
1440 %else
1441 %define _with_thermal --disable-thermal
1442 %endif
1443
1444 %if %{with_threshold}
1445 %define _with_threshold --enable-threshold
1446 %else
1447 %define _with_threshold --disable-threshold
1448 %endif
1449
1450 %if %{with_tokyotyrant}
1451 %define _with_tokyotyrant --enable-tokyotyrant
1452 %else
1453 %define _with_tokyotyrant --disable-tokyotyrant
1454 %endif
1455
1456 %if %{with_turbostat}
1457 %define _with_turbostat --enable-turbostat
1458 %else
1459 %define _with_turbostat --disable-turbostat
1460 %endif
1461
1462 %if %{with_unixsock}
1463 %define _with_unixsock --enable-unixsock
1464 %else
1465 %define _with_unixsock --disable-unixsock
1466 %endif
1467
1468 %if %{with_uptime}
1469 %define _with_uptime --enable-uptime
1470 %else
1471 %define _with_uptime --disable-uptime
1472 %endif
1473
1474 %if %{with_users}
1475 %define _with_users --enable-users
1476 %else
1477 %define _with_users --disable-users
1478 %endif
1479
1480 %if %{with_uuid}
1481 %define _with_uuid --enable-uuid
1482 %else
1483 %define _with_uuid --disable-uuid
1484 %endif
1485
1486 %if %{with_varnish}
1487 %define _with_varnish --enable-varnish
1488 %else
1489 %define _with_varnish --disable-varnish
1490 %endif
1491
1492 %if %{with_vmem}
1493 %define _with_vmem --enable-vmem
1494 %else
1495 %define _with_vmem --disable-vmem
1496 %endif
1497
1498 %if %{with_vserver}
1499 %define _with_vserver --enable-vserver
1500 %else
1501 %define _with_vserver --disable-vserver
1502 %endif
1503
1504 %if %{with_wireless}
1505 %define _with_wireless --enable-wireless
1506 %else
1507 %define _with_wireless --disable-wireless
1508 %endif
1509
1510 %if %{with_write_graphite}
1511 %define _with_write_graphite --enable-write_graphite
1512 %else
1513 %define _with_write_graphite --disable-write_graphite
1514 %endif
1515
1516 %if %{with_write_http}
1517 %define _with_write_http --enable-write_http
1518 %else
1519 %define _with_write_http --disable-write_http
1520 %endif
1521
1522 %if %{with_write_kafka}
1523 %define _with_write_kafka --enable-write_kafka
1524 %else
1525 %define _with_write_kafka --disable-write_kafka
1526 %endif
1527
1528 %if %{with_write_log}
1529 %define _with_write_log --enable-write_log
1530 %else
1531 %define _with_write_log --disable-write_log
1532 %endif
1533
1534 %if %{with_write_mongodb}
1535 %define _with_write_mongodb --enable-write_mongodb
1536 %else
1537 %define _with_write_mongodb --disable-write_mongodb
1538 %endif
1539
1540 %if %{with_write_redis}
1541 %define _with_write_redis --enable-write_redis
1542 %else
1543 %define _with_write_redis --disable-write_redis
1544 %endif
1545
1546 %if %{with_write_riemann}
1547 %define _with_write_riemann --enable-write_riemann
1548 %else
1549 %define _with_write_riemann --disable-write_riemann
1550 %endif
1551
1552 %if %{with_write_sensu}
1553 %define _with_write_sensu --enable-write_sensu
1554 %else
1555 %define _with_write_sensu --disable-write_sensu
1556 %endif
1557
1558 %if %{with_write_tsdb}
1559 %define _with_write_tsdb --enable-write_tsdb
1560 %else
1561 %define _with_write_tsdb --disable-write_tsdb
1562 %endif
1563
1564 %if %{with_xmms}
1565 %define _with_xmms --enable-xmms
1566 %else
1567 %define _with_xmms --disable-xmms
1568 %endif
1569
1570 %if %{with_zfs_arc}
1571 %define _with_zfs_arc --enable-zfs_arc
1572 %else
1573 %define _with_zfs_arc --disable-zfs_arc
1574 %endif
1575
1576 %if %{with_zone}
1577 %define _with_zone --enable-zone
1578 %else
1579 %define _with_zone --disable-zone
1580 %endif
1581
1582 %if %{with_zookeeper}
1583 %define _with_zookeeper --enable-zookeeper
1584 %else
1585 %define _with_zookeeper --disable-zookeeper
1586 %endif
1587
1588 %configure CFLAGS="%{optflags} -DLT_LAZY_OR_NOW=\"RTLD_LAZY|RTLD_GLOBAL\"" \
1589         --disable-static \
1590         --without-included-ltdl \
1591         --enable-all-plugins=yes \
1592         --enable-match_empty_counter \
1593         --enable-match_hashed \
1594         --enable-match_regex \
1595         --enable-match_timediff \
1596         --enable-match_value \
1597         --enable-target_notification \
1598         --enable-target_replace \
1599         --enable-target_scale \
1600         --enable-target_set \
1601         --enable-target_v5upgrade \
1602         %{?_with_aggregation} \
1603         %{?_with_amqp} \
1604         %{?_with_apache} \
1605         %{?_with_apcups} \
1606         %{?_with_apple_sensors} \
1607         %{?_with_aquaero} \
1608         %{?_with_ascent} \
1609         %{?_with_barometer} \
1610         %{?_with_battery} \
1611         %{?_with_bind} \
1612         %{?_with_ceph} \
1613         %{?_with_cgroups} \
1614         %{?_with_conntrack} \
1615         %{?_with_contextswitch} \
1616         %{?_with_cpu} \
1617         %{?_with_cpufreq} \
1618         %{?_with_csv} \
1619         %{?_with_curl} \
1620         %{?_with_curl_json} \
1621         %{?_with_curl_xml} \
1622         %{?_with_dbi} \
1623         %{?_with_df} \
1624         %{?_with_disk} \
1625         %{?_with_dns} \
1626         %{?_with_drbd} \
1627         %{?_with_email} \
1628         %{?_with_entropy} \
1629         %{?_with_ethstat} \
1630         %{?_with_exec} \
1631         %{?_with_fhcount} \
1632         %{?_with_filecount} \
1633         %{?_with_fscache} \
1634         %{?_with_gmond} \
1635         %{?_with_hddtemp} \
1636         %{?_with_interface} \
1637         %{?_with_ipc} \
1638         %{?_with_ipmi} \
1639         %{?_with_iptables} \
1640         %{?_with_ipvs} \
1641         %{?_with_java} \
1642         %{?_with_virt} \
1643         %{?_with_log_logstash} \
1644         %{?_with_lpar} \
1645         %{?_with_lvm} \
1646         %{?_with_memcachec} \
1647         %{?_with_mic} \
1648         %{?_with_modbus} \
1649         %{?_with_multimeter} \
1650         %{?_with_mysql} \
1651         %{?_with_netapp} \
1652         %{?_with_netlink} \
1653         %{?_with_nginx} \
1654         %{?_with_notify_desktop} \
1655         %{?_with_notify_email} \
1656         %{?_with_nut} \
1657         %{?_with_onewire} \
1658         %{?_with_openldap} \
1659         %{?_with_oracle} \
1660         %{?_with_perl} \
1661         %{?_with_pf} \
1662         %{?_with_pinba} \
1663         %{?_with_ping} \
1664         %{?_with_postgresql} \
1665         %{?_with_python} \
1666         %{?_with_redis} \
1667         %{?_with_routeros} \
1668         %{?_with_rrdcached} \
1669         %{?_with_rrdtool} \
1670         %{?_with_sensors} \
1671         %{?_with_sigrok} \
1672         %{?_with_smart} \
1673         %{?_with_snmp} \
1674         %{?_with_tape} \
1675         %{?_with_tokyotyrant} \
1676         %{?_with_varnish} \
1677         %{?_with_write_http} \
1678         %{?_with_write_kafka} \
1679         %{?_with_write_mongodb} \
1680         %{?_with_write_redis} \
1681         %{?_with_xmms} \
1682         %{?_with_zfs_arc} \
1683         %{?_with_zone} \
1684         %{?_with_zookeeper} \
1685         %{?_with_irq} \
1686         %{?_with_load} \
1687         %{?_with_logfile} \
1688         %{?_with_madwifi} \
1689         %{?_with_mbmon} \
1690         %{?_with_md} \
1691         %{?_with_memcached} \
1692         %{?_with_memory} \
1693         %{?_with_network} \
1694         %{?_with_nfs} \
1695         %{?_with_ntpd} \
1696         %{?_with_numa} \
1697         %{?_with_olsrd} \
1698         %{?_with_openvpn} \
1699         %{?_with_powerdns} \
1700         %{?_with_processes} \
1701         %{?_with_protocols} \
1702         %{?_with_serial} \
1703         %{?_with_statsd} \
1704         %{?_with_swap} \
1705         %{?_with_syslog} \
1706         %{?_with_table} \
1707         %{?_with_tail} \
1708         %{?_with_tail_csv} \
1709         %{?_with_tcpconns} \
1710         %{?_with_teamspeak2} \
1711         %{?_with_ted} \
1712         %{?_with_thermal} \
1713         %{?_with_threshold} \
1714         %{?_with_turbostat} \
1715         %{?_with_unixsock} \
1716         %{?_with_uptime} \
1717         %{?_with_users} \
1718         %{?_with_uuid} \
1719         %{?_with_vmem} \
1720         %{?_with_vserver} \
1721         %{?_with_wireless}\
1722         %{?_with_write_graphite} \
1723         %{?_with_write_http} \
1724         %{?_with_write_log} \
1725         %{?_with_write_riemann} \
1726         %{?_with_write_sensu} \
1727         %{?_with_write_tsdb}
1728
1729
1730 %{__make} %{?_smp_mflags}
1731
1732
1733 %install
1734 rm -rf %{buildroot}
1735 %{__make} install DESTDIR=%{buildroot}
1736 %if 0%{?el7:1}
1737 %{__install} -Dp -m0644 contrib/systemd.collectd.service %{buildroot}%{_unitdir}/collectd.service
1738 %else
1739 %{__install} -Dp -m0755 contrib/redhat/init.d-collectd %{buildroot}%{_initrddir}/collectd
1740 %endif
1741 %{__install} -Dp -m0644 src/collectd.conf %{buildroot}%{_sysconfdir}/collectd.conf
1742 %{__install} -d %{buildroot}%{_sharedstatedir}/collectd/
1743 %{__install} -d %{buildroot}%{_sysconfdir}/collectd.d/
1744
1745 %{__mkdir} -p %{buildroot}%{_localstatedir}/www
1746 %{__mkdir} -p %{buildroot}/%{_sysconfdir}/httpd/conf.d
1747
1748 %{__mv} contrib/collection3 %{buildroot}%{_localstatedir}/www
1749 %{__mv} contrib/redhat/collection3.conf %{buildroot}/%{_sysconfdir}/httpd/conf.d/
1750
1751 %{__mv} contrib/php-collection %{buildroot}%{_localstatedir}/www
1752 %{__mv} contrib/redhat/php-collection.conf %{buildroot}/%{_sysconfdir}/httpd/conf.d/
1753
1754 ### Clean up docs
1755 find contrib/ -type f -exec %{__chmod} a-x {} \;
1756 # *.la files shouldn't be distributed.
1757 rm -f %{buildroot}/%{_libdir}/{collectd/,}*.la
1758
1759 # Remove Perl hidden .packlist files.
1760 find %{buildroot} -type f -name .packlist -delete
1761 # Remove Perl temporary file perllocal.pod
1762 find %{buildroot} -type f -name perllocal.pod -delete
1763
1764 %if ! %{with_java}
1765 rm -f %{buildroot}%{_datadir}/collectd/java/collectd-api.jar
1766 rm -f %{buildroot}%{_datadir}/collectd/java/generic-jmx.jar
1767 rm -f %{buildroot}%{_mandir}/man5/collectd-java.5*
1768 %endif
1769
1770 %if ! %{with_perl}
1771 rm -f %{buildroot}%{_mandir}/man5/collectd-perl.5*
1772 rm -f %{buildroot}%{_mandir}/man3/Collectd::Unixsock.3pm*
1773 rm -fr %{buildroot}/usr/lib/perl5/
1774 %endif
1775
1776 %if ! %{with_postgresql}
1777 rm -f %{buildroot}%{_datadir}/collectd/postgresql_default.conf
1778 %endif
1779
1780 %if ! %{with_python}
1781 rm -f %{buildroot}%{_mandir}/man5/collectd-python.5*
1782 %endif
1783
1784 %if ! %{with_snmp}
1785 rm -f %{buildroot}%{_mandir}/man5/collectd-snmp.5*
1786 %endif
1787
1788
1789 %clean
1790 rm -rf %{buildroot}
1791
1792 %pre
1793 %if 0%{?el7:1}
1794 # stop sysv-based instance before upgrading to systemd
1795 if [ $1 -eq 2 ] && [ -f /var/lock/subsys/collectd ]; then
1796         SYSTEMCTL_SKIP_REDIRECT=1 %{_initddir}/collectd stop >/dev/null 2>&1 || :
1797 fi
1798 %endif
1799
1800 %post
1801 %if 0%{?el7:1}
1802 if [ $1 -eq 2 ]; then
1803         /usr/bin/systemctl daemon-reload >/dev/null 2>&1 || :
1804 fi
1805 %systemd_post collectd.service
1806 %else
1807 /sbin/chkconfig --add collectd || :
1808 %endif
1809
1810 %preun
1811 %if 0%{?el7:1}
1812 %systemd_preun collectd.service
1813 %else
1814 # stop collectd only when uninstalling
1815 if [ $1 -eq 0 ]; then
1816         /sbin/service collectd stop >/dev/null 2>&1 || :
1817         /sbin/chkconfig --del collectd || :
1818 fi
1819 %endif
1820
1821 %postun
1822 %if 0%{?el7:1}
1823 %systemd_postun_with_restart collectd.service
1824 %else
1825 # restart collectd only when upgrading
1826 if [ $1 -eq 1 ]; then
1827         /sbin/service collectd condrestart >/dev/null 2>&1 || :
1828 fi
1829 %endif
1830
1831 %post -n libcollectdclient -p /sbin/ldconfig
1832 %postun -n libcollectdclient -p /sbin/ldconfig
1833
1834
1835 %files
1836 %doc AUTHORS COPYING ChangeLog README
1837 %config(noreplace) %{_sysconfdir}/collectd.conf
1838 %if 0%{?el7:1}
1839 %{_unitdir}/collectd.service
1840 %else
1841 %{_initrddir}/collectd
1842 %endif
1843 %{_sbindir}/collectd
1844 %{_sbindir}/collectdmon
1845 %{_datadir}/collectd/types.db
1846 %{_sharedstatedir}/collectd
1847 %{_mandir}/man1/collectd.1*
1848 %{_mandir}/man1/collectdmon.1*
1849 %{_mandir}/man5/collectd-email.5*
1850 %{_mandir}/man5/collectd-exec.5*
1851 %{_mandir}/man5/collectd-threshold.5*
1852 %{_mandir}/man5/collectd-unixsock.5*
1853 %{_mandir}/man5/collectd.conf.5*
1854 %{_mandir}/man5/types.db.5*
1855
1856 # all plugins bundled with the main collectd package
1857 %{_libdir}/%{name}/match_empty_counter.so
1858 %{_libdir}/%{name}/match_hashed.so
1859 %{_libdir}/%{name}/match_regex.so
1860 %{_libdir}/%{name}/match_timediff.so
1861 %{_libdir}/%{name}/match_value.so
1862 %{_libdir}/%{name}/target_notification.so
1863 %{_libdir}/%{name}/target_replace.so
1864 %{_libdir}/%{name}/target_scale.so
1865 %{_libdir}/%{name}/target_set.so
1866 %{_libdir}/%{name}/target_v5upgrade.so
1867
1868 %if %{with_aggregation}
1869 %{_libdir}/%{name}/aggregation.so
1870 %endif
1871 %if %{with_apcups}
1872 %{_libdir}/%{name}/apcups.so
1873 %endif
1874 %if %{with_battery}
1875 %{_libdir}/%{name}/battery.so
1876 %endif
1877 %if %{with_cgroups}
1878 %{_libdir}/%{name}/cgroups.so
1879 %endif
1880 %if %{with_conntrack}
1881 %{_libdir}/%{name}/conntrack.so
1882 %endif
1883 %if %{with_contextswitch}
1884 %{_libdir}/%{name}/contextswitch.so
1885 %endif
1886 %if %{with_cpu}
1887 %{_libdir}/%{name}/cpu.so
1888 %endif
1889 %if %{with_cpufreq}
1890 %{_libdir}/%{name}/cpufreq.so
1891 %endif
1892 %if %{with_csv}
1893 %{_libdir}/%{name}/csv.so
1894 %endif
1895 %if %{with_df}
1896 %{_libdir}/%{name}/df.so
1897 %endif
1898 %if %{with_drbd}
1899 %{_libdir}/%{name}/drbd.so
1900 %endif
1901 %if %{with_ethstat}
1902 %{_libdir}/%{name}/ethstat.so
1903 %endif
1904 %if %{with_entropy}
1905 %{_libdir}/%{name}/entropy.so
1906 %endif
1907 %if %{with_exec}
1908 %{_libdir}/%{name}/exec.so
1909 %endif
1910 %if %{with_fhcount}
1911 %{_libdir}/%{name}/fhcount.so
1912 %endif
1913 %if %{with_filecount}
1914 %{_libdir}/%{name}/filecount.so
1915 %endif
1916 %if %{with_fscache}
1917 %{_libdir}/%{name}/fscache.so
1918 %endif
1919 %if %{with_interface}
1920 %{_libdir}/%{name}/interface.so
1921 %endif
1922 %if %{with_ipc}
1923 %{_libdir}/%{name}/ipc.so
1924 %endif
1925 %if %{with_ipvs}
1926 %{_libdir}/%{name}/ipvs.so
1927 %endif
1928 %if %{with_irq}
1929 %{_libdir}/%{name}/irq.so
1930 %endif
1931 %if %{with_load}
1932 %{_libdir}/%{name}/load.so
1933 %endif
1934 %if %{with_logfile}
1935 %{_libdir}/%{name}/logfile.so
1936 %endif
1937 %if %{with_madwifi}
1938 %{_libdir}/%{name}/madwifi.so
1939 %endif
1940 %if %{with_mbmon}
1941 %{_libdir}/%{name}/mbmon.so
1942 %endif
1943 %if %{with_md}
1944 %{_libdir}/%{name}/md.so
1945 %endif
1946 %if %{with_memcached}
1947 %{_libdir}/%{name}/memcached.so
1948 %endif
1949 %if %{with_memory}
1950 %{_libdir}/%{name}/memory.so
1951 %endif
1952 %if %{with_multimeter}
1953 %{_libdir}/%{name}/multimeter.so
1954 %endif
1955 %if %{with_network}
1956 %{_libdir}/%{name}/network.so
1957 %endif
1958 %if %{with_nfs}
1959 %{_libdir}/%{name}/nfs.so
1960 %endif
1961 %if %{with_ntpd}
1962 %{_libdir}/%{name}/ntpd.so
1963 %endif
1964 %if %{with_numa}
1965 %{_libdir}/%{name}/numa.so
1966 %endif
1967 %if %{with_openvpn}
1968 %{_libdir}/%{name}/openvpn.so
1969 %endif
1970 %if %{with_olsrd}
1971 %{_libdir}/%{name}/olsrd.so
1972 %endif
1973 %if %{with_powerdns}
1974 %{_libdir}/%{name}/powerdns.so
1975 %endif
1976 %if %{with_processes}
1977 %{_libdir}/%{name}/processes.so
1978 %endif
1979 %if %{with_protocols}
1980 %{_libdir}/%{name}/protocols.so
1981 %endif
1982 %if %{with_serial}
1983 %{_libdir}/%{name}/serial.so
1984 %endif
1985 %if %{with_statsd}
1986 %{_libdir}/%{name}/statsd.so
1987 %endif
1988 %if %{with_swap}
1989 %{_libdir}/%{name}/swap.so
1990 %endif
1991 %if %{with_syslog}
1992 %{_libdir}/%{name}/syslog.so
1993 %endif
1994 %if %{with_table}
1995 %{_libdir}/%{name}/table.so
1996 %endif
1997 %if %{with_tail}
1998 %{_libdir}/%{name}/tail.so
1999 %endif
2000 %if %{with_tail_csv}
2001 %{_libdir}/%{name}/tail_csv.so
2002 %endif
2003 %if %{with_tcpconns}
2004 %{_libdir}/%{name}/tcpconns.so
2005 %endif
2006 %if %{with_teamspeak2}
2007 %{_libdir}/%{name}/teamspeak2.so
2008 %endif
2009 %if %{with_ted}
2010 %{_libdir}/%{name}/ted.so
2011 %endif
2012 %if %{with_thermal}
2013 %{_libdir}/%{name}/thermal.so
2014 %endif
2015 %if %{with_threshold}
2016 %{_libdir}/%{name}/threshold.so
2017 %endif
2018 %if %{with_turbostat}
2019 %{_libdir}/%{name}/turbostat.so
2020 %endif
2021 %if %{with_unixsock}
2022 %{_libdir}/%{name}/unixsock.so
2023 %endif
2024 %if %{with_uptime}
2025 %{_libdir}/%{name}/uptime.so
2026 %endif
2027 %if %{with_users}
2028 %{_libdir}/%{name}/users.so
2029 %endif
2030 %if %{with_uuid}
2031 %{_libdir}/%{name}/uuid.so
2032 %endif
2033 %if %{with_vmem}
2034 %{_libdir}/%{name}/vmem.so
2035 %endif
2036 %if %{with_vserver}
2037 %{_libdir}/%{name}/vserver.so
2038 %endif
2039 %if %{with_wireless}
2040 %{_libdir}/%{name}/wireless.so
2041 %endif
2042 %if %{with_write_graphite}
2043 %{_libdir}/%{name}/write_graphite.so
2044 %endif
2045 %if %{with_write_log}
2046 %{_libdir}/%{name}/write_log.so
2047 %endif
2048 %if %{with_write_sensu}
2049 %{_libdir}/%{name}/write_sensu.so
2050 %endif
2051 %if %{with_write_tsdb}
2052 %{_libdir}/%{name}/write_tsdb.so
2053 %endif
2054 %if %{with_zfs_arc}
2055 %{_libdir}/%{name}/zfs_arc.so
2056 %endif
2057 %if %{with_zookeeper}
2058 %{_libdir}/%{name}/zookeeper.so
2059 %endif
2060
2061 %files -n libcollectdclient-devel
2062 %{_includedir}/collectd/client.h
2063 %{_includedir}/collectd/network.h
2064 %{_includedir}/collectd/network_buffer.h
2065 %{_includedir}/collectd/lcc_features.h
2066 %{_libdir}/pkgconfig/libcollectdclient.pc
2067
2068 %files -n libcollectdclient
2069 %{_libdir}/libcollectdclient.so
2070 %{_libdir}/libcollectdclient.so.*
2071
2072 %files -n collectd-utils
2073 %{_bindir}/collectd-nagios
2074 %{_bindir}/collectd-tg
2075 %{_bindir}/collectdctl
2076 %{_mandir}/man1/collectdctl.1*
2077 %{_mandir}/man1/collectd-nagios.1*
2078 %{_mandir}/man1/collectd-tg.1*
2079
2080 %if %{with_amqp}
2081 %files amqp
2082 %{_libdir}/%{name}/amqp.so
2083 %endif
2084
2085 %if %{with_apache}
2086 %files apache
2087 %{_libdir}/%{name}/apache.so
2088 %endif
2089
2090 %if %{with_aquaero}
2091 %files aquaero
2092 %{_libdir}/%{name}/aquaero.so
2093 %endif
2094
2095 %if %{with_ascent}
2096 %files ascent
2097 %{_libdir}/%{name}/ascent.so
2098 %endif
2099
2100 %if %{with_barometer}
2101 %files barometer
2102 %{_libdir}/%{name}/barometer.so
2103 %endif
2104
2105 %if %{with_bind}
2106 %files bind
2107 %{_libdir}/%{name}/bind.so
2108 %endif
2109
2110 %if %{with_ceph}
2111 %files ceph
2112 %{_libdir}/%{name}/ceph.so
2113 %endif
2114
2115 %if %{with_curl}
2116 %files curl
2117 %{_libdir}/%{name}/curl.so
2118 %endif
2119
2120 %if %{with_curl_json}
2121 %files curl_json
2122 %{_libdir}/%{name}/curl_json.so
2123 %endif
2124
2125 %if %{with_curl_xml}
2126 %files curl_xml
2127 %{_libdir}/%{name}/curl_xml.so
2128 %endif
2129
2130 %if %{with_disk}
2131 %files disk
2132 %{_libdir}/%{name}/disk.so
2133 %endif
2134
2135 %if %{with_dns}
2136 %files dns
2137 %{_libdir}/%{name}/dns.so
2138 %endif
2139
2140 %if %{with_dbi}
2141 %files dbi
2142 %{_libdir}/%{name}/dbi.so
2143 %endif
2144
2145 %if %{with_email}
2146 %files email
2147 %{_libdir}/%{name}/email.so
2148 %endif
2149
2150 %if %{with_gmond}
2151 %files gmond
2152 %{_libdir}/%{name}/gmond.so
2153 %endif
2154
2155 %if %{with_hddtemp}
2156 %files hddtemp
2157 %{_libdir}/%{name}/hddtemp.so
2158 %endif
2159
2160 %if %{with_ipmi}
2161 %files ipmi
2162 %{_libdir}/%{name}/ipmi.so
2163 %endif
2164
2165 %if %{with_iptables}
2166 %files iptables
2167 %{_libdir}/%{name}/iptables.so
2168 %endif
2169
2170 %if %{with_java}
2171 %files java
2172 %{_datadir}/collectd/java/collectd-api.jar
2173 %{_datadir}/collectd/java/generic-jmx.jar
2174 %{_libdir}/%{name}/java.so
2175 %{_mandir}/man5/collectd-java.5*
2176 %endif
2177
2178 %if %{with_virt}
2179 %files virt
2180 %{_libdir}/%{name}/virt.so
2181 %endif
2182
2183 %if %{with_log_logstash}
2184 %files log_logstash
2185 %{_libdir}/%{name}/log_logstash.so
2186 %endif
2187
2188 %if %{with_lvm}
2189 %files lvm
2190 %{_libdir}/%{name}/lvm.so
2191 %endif
2192
2193 %if %{with_memcachec}
2194 %files memcachec
2195 %{_libdir}/%{name}/memcachec.so
2196 %endif
2197
2198 %if %{with_mic}
2199 %files mic
2200 %{_libdir}/%{name}/mic.so
2201 %endif
2202
2203 %if %{with_modbus}
2204 %files modbus
2205 %{_libdir}/%{name}/modbus.so
2206 %endif
2207
2208 %if %{with_mysql}
2209 %files mysql
2210 %{_libdir}/%{name}/mysql.so
2211 %endif
2212
2213 %if %{with_netlink}
2214 %files netlink
2215 %{_libdir}/%{name}/netlink.so
2216 %endif
2217
2218 %if %{with_nginx}
2219 %files nginx
2220 %{_libdir}/%{name}/nginx.so
2221 %endif
2222
2223 %if %{with_notify_desktop}
2224 %files notify_desktop
2225 %{_libdir}/%{name}/notify_desktop.so
2226 %endif
2227
2228 %if %{with_notify_email}
2229 %files notify_email
2230 %{_libdir}/%{name}/notify_email.so
2231 %endif
2232
2233 %if %{with_nut}
2234 %files nut
2235 %{_libdir}/%{name}/nut.so
2236 %endif
2237
2238 %if %{with_openldap}
2239 %files openldap
2240 %{_libdir}/%{name}/openldap.so
2241 %endif
2242
2243 %if %{with_perl}
2244 %files perl
2245 %{perl_vendorlib}/Collectd.pm
2246 %{perl_vendorlib}/Collectd/
2247 %{_mandir}/man3/Collectd::Unixsock.3pm*
2248 %{_mandir}/man5/collectd-perl.5*
2249 %{_libdir}/%{name}/perl.so
2250 %endif
2251
2252 %if %{with_pinba}
2253 %files pinba
2254 %{_libdir}/%{name}/pinba.so
2255 %endif
2256
2257 %if %{with_ping}
2258 %files ping
2259 %{_libdir}/%{name}/ping.so
2260 %endif
2261
2262 %if %{with_postgresql}
2263 %files postgresql
2264 %{_datadir}/collectd/postgresql_default.conf
2265 %{_libdir}/%{name}/postgresql.so
2266 %endif
2267
2268 %if %{with_python}
2269 %files python
2270 %{_mandir}/man5/collectd-python*
2271 %{_libdir}/%{name}/python.so
2272 %endif
2273
2274 %if %{with_redis}
2275 %files redis
2276 %{_libdir}/%{name}/redis.so
2277 %endif
2278
2279 %if %{with_rrdcached}
2280 %files rrdcached
2281 %{_libdir}/%{name}/rrdcached.so
2282 %endif
2283
2284 %if %{with_rrdtool}
2285 %files rrdtool
2286 %{_libdir}/%{name}/rrdtool.so
2287 %endif
2288
2289 %if %{with_sensors}
2290 %files sensors
2291 %{_libdir}/%{name}/sensors.so
2292 %endif
2293
2294 %if %{with_sigrok}
2295 %files sigrok
2296 %{_libdir}/%{name}/sigrok.so
2297 %endif
2298
2299 %if %{with_smart}
2300 %files smart
2301 %{_libdir}/%{name}/smart.so
2302 %endif
2303
2304 %if %{with_snmp}
2305 %files snmp
2306 %{_mandir}/man5/collectd-snmp.5*
2307 %{_libdir}/%{name}/snmp.so
2308 %endif
2309
2310 %if %{with_varnish}
2311 %files varnish
2312 %{_libdir}/%{name}/varnish.so
2313 %endif
2314
2315 %if %{with_write_http}
2316 %files write_http
2317 %{_libdir}/%{name}/write_http.so
2318 %endif
2319
2320 %if %{with_write_kafka}
2321 %files write_kafka
2322 %{_libdir}/%{name}/write_kafka.so
2323 %endif
2324
2325 %if %{with_write_redis}
2326 %files write_redis
2327 %{_libdir}/%{name}/write_redis.so
2328 %endif
2329
2330 %if %{with_write_riemann}
2331 %files write_riemann
2332 %{_libdir}/%{name}/write_riemann.so
2333 %endif
2334
2335 %files collection3
2336 %{_localstatedir}/www/collection3
2337 %{_sysconfdir}/httpd/conf.d/collection3.conf
2338
2339 %files php-collection
2340 %{_localstatedir}/www/php-collection
2341 %{_sysconfdir}/httpd/conf.d/php-collection.conf
2342
2343 %files contrib
2344 %doc contrib/
2345
2346 %changelog
2347 #* TODO: next feature release changelog
2348 #- New upstream version
2349 #- New plugins disabled by default: zone
2350 #
2351 * Wed May 27 2015 Marc Fournier <marc.fournier@camptocamp.com> 5.5.0-1
2352 - New upstream version
2353 - New plugins enabled by default: ceph, drbd, log_logstash, write_tsdb, smart,
2354   openldap, redis, write_redis, zookeeper, write_log, write_sensu, ipc,
2355   turbostat, fhcount
2356 - New plugins disabled by default: barometer, write_kafka
2357 - Enable zfs_arc, now supported on Linux
2358 - Install disk plugin in a dedicated package, as it depends on libudev
2359 - use systemd on EL7, sysvinit on EL6 & EL5
2360 - Install collectdctl, collectd-tg and collectd-nagios in collectd-utils.rpm
2361 - Add build-dependency on libcap-devel
2362
2363 * Mon Aug 19 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.4.0-1
2364 - New upstream version
2365 - Build netlink plugin by default
2366 - Enable cgroups, lvm and statsd plugins
2367 - Enable (but don't build by default) mic, aquaero and sigrok plugins
2368
2369 * Tue Aug 06 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.3.1-1
2370 - New upstream version
2371 - Added RHEL5 support:
2372   * conditionally disable plugins not building on this platform
2373   * add/specify some build dependencies and options
2374   * replace some RPM macros not available on this platform
2375 - Removed duplicate --enable-aggregation
2376 - Added some comments & usage examples
2377 - Replaced a couple of "Buildrequires" by "BuildRequires"
2378 - Enabled modbus plugin on RHEL6
2379 - Enabled netlink plugin on RHEL6 and RHEL7
2380 - Allow perl plugin to build on RHEL5
2381 - Add support for RHEL7
2382 - Misc perl-related improvements:
2383   * prevent rpmbuild from extracting dependencies from files in /usr/share/doc
2384   * don't package collection3 and php-collection twice
2385   * keep perl scripts from contrib/ in collectd-contrib
2386
2387 * Wed Apr 10 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.3.0-1
2388 - New upstream version
2389 - Enabled write_riemann plugin
2390 - Enabled tail_csv plugin
2391 - Installed collectd-tc manpage
2392
2393 * Fri Jan 11 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.2.0-3
2394 - remove dependency on libstatgrab, which isn't required on linux
2395
2396 * Thu Jan 03 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.2.0-2
2397 - collection3 and php-collection viewers are now in separate packages
2398
2399 * Fri Dec 21 2012 Marc Fournier <marc.fournier@camptocamp.com> 5.2.0-1
2400 - New upstream version
2401 - Enabled aggregation plugin
2402 - Installed collectd-tc
2403 - Added network.h and network_buffer.h to libcollectdclient-devel
2404 - Moved libxml2-devel and libcurl-devel BRs to relevant plugins sections
2405 - Moved libcollectdclient.so from libcollectdclient-devel to libcollectdclient
2406 - Added rrdcached and redis plugin descriptions
2407 - Mentioned new pf plugin in disabled plugins list
2408
2409 * Sun Nov 18 2012 Ruben Kerkhof <ruben@tilaa.nl> 5.1.0-3
2410 - Follow Fedora Packaging Guidelines in java subpackage
2411
2412 * Sat Nov 17 2012 Ruben Kerkhof <ruben@tilaa.nl> 5.1.0-2
2413 - Move perl stuff to perl_vendorlib
2414 - Replace hardcoded paths with macros
2415 - Remove unnecessary Requires
2416 - Removed .a and .la files
2417 - Some other small cleanups
2418
2419 * Fri Nov 16 2012 Marc Fournier <marc.fournier@camptocamp.com> 5.1.0-1
2420 - New upstream version
2421 - Changes to support 5.1.0
2422 - Enabled all buildable plugins based on libraries available on EL6 + EPEL
2423 - All plugins requiring external libraries are now shipped in separate
2424   packages.
2425 - No longer treat Java plugin as an exception, correctly set $JAVA_HOME during
2426   the build process + ensure build deps are installed.
2427 - Dropped per-plugin configuration files, as they tend to diverge from upstream
2428   defaults.
2429 - Moved perl stuff to /usr/share/perl5/
2430 - Don't alter Interval and ReadThreads by default, let the user change this
2431   himself.
2432 - Initscript improvements:
2433   * checks configuration before (re)starting, based on debian's initscript
2434   * use /etc/sysconfig instdead of /etc/default
2435   * include optional $ARGS in arguments passed to collectd.
2436 - Drop collection.cgi from main package, as it's been obsoleted by collection3
2437 - Moved contrib/ to its own package, to avoid cluttering the main package with
2438   non-essential stuff.
2439 - Replaced BuildPrereq by BuildRequires
2440
2441 * Mon Jan 03 2011 Monetate <jason.stelzer@monetate.com> 5.0.1
2442 - New upstream version
2443 - Changes to support 5.0.1
2444
2445 * Mon Jan 04 2010 Rackspace <stu.hood@rackspace.com> 4.9.0
2446 - New upstream version
2447 - Changes to support 4.9.0
2448 - Added support for Java/GenericJMX plugin
2449
2450 * Mon Mar 17 2008 RightScale <support@rightscale.com> 4.3.1
2451 - New upstream version
2452 - Changes to support 4.3.1
2453 - Added More Prereqs to support more plugins
2454 - Added support for perl plugin
2455
2456 * Mon Aug 06 2007 Kjell Randa <Kjell.Randa@broadpark.no> 4.0.6
2457 - New upstream version
2458
2459 * Wed Jul 25 2007 Kjell Randa <Kjell.Randa@broadpark.no> 4.0.5
2460 - New major releas
2461 - Changes to support 4.0.5
2462
2463 * Thu Jan 11 2007 Iain Lea <iain@bricbrac.de> 3.11.0-0
2464 - fixed spec file to build correctly on fedora core
2465 - added improved init.d script to work with chkconfig
2466 - added %%post and %%postun to call chkconfig automatically
2467
2468 * Sun Jul 09 2006 Florian octo Forster <octo@verplant.org> 3.10.0-1
2469 - New upstream version
2470
2471 * Sun Jun 25 2006 Florian octo Forster <octo@verplant.org> 3.9.4-1
2472 - New upstream version
2473
2474 * Thu Jun 01 2006 Florian octo Forster <octo@verplant.org> 3.9.3-1
2475 - New upstream version
2476
2477 * Tue May 09 2006 Florian octo Forster <octo@verplant.org> 3.9.2-1
2478 - New upstream version
2479
2480 * Tue May 09 2006 Florian octo Forster <octo@verplant.org> 3.8.5-1
2481 - New upstream version
2482
2483 * Fri Apr 21 2006 Florian octo Forster <octo@verplant.org> 3.9.1-1
2484 - New upstream version
2485
2486 * Fri Apr 14 2006 Florian octo Forster <octo@verplant.org> 3.9.0-1
2487 - New upstream version
2488 - Added the `apache' package.
2489
2490 * Tue Mar 14 2006 Florian octo Forster <octo@verplant.org> 3.8.2-1
2491 - New upstream version
2492
2493 * Mon Mar 13 2006 Florian octo Forster <octo@verplant.org> 3.8.1-1
2494 - New upstream version
2495
2496 * Thu Mar 09 2006 Florian octo Forster <octo@verplant.org> 3.8.0-1
2497 - New upstream version
2498
2499 * Sat Feb 18 2006 Florian octo Forster <octo@verplant.org> 3.7.2-1
2500 - Include `tape.so' so the build doesn't terminate because of missing files..
2501 - New upstream version
2502
2503 * Sat Feb 04 2006 Florian octo Forster <octo@verplant.org> 3.7.1-1
2504 - New upstream version
2505
2506 * Mon Jan 30 2006 Florian octo Forster <octo@verplant.org> 3.7.0-1
2507 - New upstream version
2508 - Removed the extra `hddtemp' package
2509
2510 * Tue Jan 24 2006 Florian octo Forster <octo@verplant.org> 3.6.2-1
2511 - New upstream version
2512
2513 * Fri Jan 20 2006 Florian octo Forster <octo@verplant.org> 3.6.1-1
2514 - New upstream version
2515
2516 * Fri Jan 20 2006 Florian octo Forster <octo@verplant.org> 3.6.0-1
2517 - New upstream version
2518 - Added config file, `collectd.conf(5)', `df.so'
2519 - Added package `collectd-mysql', dependency on `mysqlclient10 | mysql'
2520
2521 * Wed Dec 07 2005 Florian octo Forster <octo@verplant.org> 3.5.0-1
2522 - New upstream version
2523
2524 * Sat Nov 26 2005 Florian octo Forster <octo@verplant.org> 3.4.0-1
2525 - New upstream version
2526
2527 * Sat Nov 05 2005 Florian octo Forster <octo@verplant.org> 3.3.0-1
2528 - New upstream version
2529
2530 * Wed Oct 26 2005 Florian octo Forster <octo@verplant.org> 3.2.0-1
2531 - New upstream version
2532 - Added statement to remove the `*.la' files. This fixes a problem when
2533   `Unpackaged files terminate build' is in effect.
2534 - Added `processes.so*' to the main package
2535
2536 * Fri Oct 14 2005 Florian octo Forster <octo@verplant.org> 3.1.0-1
2537 - New upstream version
2538 - Added package `collectd-hddtemp'
2539
2540 * Fri Sep 30 2005 Florian octo Forster <octo@verplant.org> 3.0.0-1
2541 - New upstream version
2542 - Split the package into `collectd' and `collectd-sensors'
2543
2544 * Fri Sep 16 2005 Florian octo Forster <octo@verplant.org> 2.1.0-1
2545 - New upstream version
2546
2547 * Sat Sep 10 2005 Florian octo Forster <octo@verplant.org> 2.0.0-1
2548 - New upstream version
2549
2550 * Mon Aug 29 2005 Florian octo Forster <octo@verplant.org> 1.8.0-1
2551 - New upstream version
2552
2553 * Thu Aug 25 2005 Florian octo Forster <octo@verplant.org> 1.7.0-1
2554 - New upstream version
2555
2556 * Sun Aug 21 2005 Florian octo Forster <octo@verplant.org> 1.6.0-1
2557 - New upstream version
2558
2559 * Sun Jul 17 2005 Florian octo Forster <octo@verplant.org> 1.5.1-1
2560 - New upstream version
2561
2562 * Sun Jul 17 2005 Florian octo Forster <octo@verplant.org> 1.5-1
2563 - New upstream version
2564
2565 * Mon Jul 11 2005 Florian octo Forster <octo@verplant.org> 1.4.2-1
2566 - New upstream version
2567
2568 * Sat Jul 09 2005 Florian octo Forster <octo@verplant.org> 1.4-1
2569 - Built on RedHat 7.3