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