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