Code

RPM specfile: handle new write_log plugin
[collectd.git] / contrib / redhat / collectd.spec
1 #
2 # q: What is this ?
3 # a: A specfile for building RPM packages of current collectd releases, for
4 #    RHEL/CentOS versions 5, 6 and 7. By default all the plugins which are
5 #    buildable based on the libraries available in the distribution + the
6 #    EPEL repository, will be built. Plugins depending on external libs will
7 #    be packaged in separate RPMs.
8 #
9 # q: And how can I do that ?
10 # a: By following these instructions, using mock:
11 #
12 # - install and configure mock (https://fedoraproject.org/wiki/Projects/Mock)
13 #
14 # - enable the EPEL repository (http://dl.fedoraproject.org/pub/epel/) in the
15 #   configuration files for your target systems (/etc/mock/*.cfg).
16 #
17 # - 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 #
36 %global _hardened_build 1
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}
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}
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}
172 # Plugins not built by default because of dependencies on libraries not
173 # available in RHEL or EPEL:
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}
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>
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
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.
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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.
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.
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.
786 %package -n libcollectdclient
787 Summary:        Collectd client library
788 Group:          System Environment/Daemons
789 %description -n libcollectdclient
790 Collectd client library
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
801 %prep
802 %setup -q
804 %build
805 %if %{with_aggregation}
806 %define _with_aggregation --enable-aggregation
807 %else
808 %define _with_aggregation --disable-aggregation
809 %endif
811 %if %{with_amqp}
812 %define _with_amqp --enable-amqp
813 %else
814 %define _with_amqp --disable-amqp
815 %endif
817 %if %{with_apache}
818 %define _with_apache --enable-apache
819 %else
820 %define _with_apache --disable-apache
821 %endif
823 %if %{with_apcups}
824 %define _with_apcups --enable-apcups
825 %else
826 %define _with_apcups --disable-apcups
827 %endif
829 %if %{with_apple_sensors}
830 %define _with_apple_sensors --enable-apple_sensors
831 %else
832 %define _with_apple_sensors --disable-apple_sensors
833 %endif
835 %if %{with_aquaero}
836 %define _with_aquaero --enable-aquaero
837 %else
838 %define _with_aquaero --disable-aquaero
839 %endif
841 %if %{with_ascent}
842 %define _with_ascent --enable-ascent
843 %else
844 %define _with_ascent --disable-ascent
845 %endif
847 %if %{with_barometer}
848 %define _with_barometer --enable-barometer
849 %else
850 %define _with_barometer --disable-barometer
851 %endif
853 %if %{with_battery}
854 %define _with_battery --enable-battery
855 %else
856 %define _with_battery --disable-battery
857 %endif
859 %if %{with_bind}
860 %define _with_bind --enable-bind
861 %else
862 %define _with_bind --disable-bind
863 %endif
865 %if %{with_cgroups}
866 %define _with_cgroups --enable-cgroups
867 %else
868 %define _with_cgroups --disable-cgroups
869 %endif
871 %if %{with_conntrack}
872 %define _with_conntrack --enable-conntrack
873 %else
874 %define _with_conntrack --disable-conntrack
875 %endif
877 %if %{with_contextswitch}
878 %define _with_contextswitch --enable-contextswitch
879 %else
880 %define _with_contextswitch --disable-contextswitch
881 %endif
883 %if %{with_cpu}
884 %define _with_cpu --enable-cpu
885 %else
886 %define _with_cpu --disable-cpu
887 %endif
889 %if %{with_cpufreq}
890 %define _with_cpufreq --enable-cpufreq
891 %else
892 %define _with_cpufreq --disable-cpufreq
893 %endif
895 %if %{with_csv}
896 %define _with_csv --enable-csv
897 %else
898 %define _with_csv --disable-csv
899 %endif
901 %if %{with_curl}
902 %define _with_curl --enable-curl
903 %else
904 %define _with_curl --disable-curl
905 %endif
907 %if %{with_curl_json}
908 %define _with_curl_json --enable-curl_json
909 %else
910 %define _with_curl_json --disable-curl_json
911 %endif
913 %if %{with_curl_xml}
914 %define _with_curl_xml --enable-curl_xml
915 %else
916 %define _with_curl_xml --disable-curl_xml
917 %endif
919 %if %{with_dbi}
920 %define _with_dbi --enable-dbi
921 %else
922 %define _with_dbi --disable-dbi --without-libdbi
923 %endif
925 %if %{with_df}
926 %define _with_df --enable-df
927 %else
928 %define _with_df --disable-df
929 %endif
931 %if %{with_disk}
932 %define _with_disk --enable-disk
933 %else
934 %define _with_disk --disable-disk
935 %endif
937 %if %{with_dns}
938 %define _with_dns --enable-dns
939 %else
940 %define _with_dns --disable-dns
941 %endif
943 %if %{with_drbd}
944 %define _with_drbd --enable-drbd
945 %else
946 %define _with_drbd --disable-drbd
947 %endif
949 %if %{with_email}
950 %define _with_email --enable-email
951 %else
952 %define _with_email --disable-email
953 %endif
955 %if %{with_entropy}
956 %define _with_entropy --enable-entropy
957 %else
958 %define _with_entropy --disable-entropy
959 %endif
961 %if %{with_ethstat}
962 %define _with_ethstat --enable-ethstat
963 %else
964 %define _with_ethstat --disable-ethstat
965 %endif
967 %if %{with_exec}
968 %define _with_exec --enable-exec
969 %else
970 %define _with_exec --disable-exec
971 %endif
973 %if %{with_filecount}
974 %define _with_filecount --enable-filecount
975 %else
976 %define _with_filecount --disable-filecount
977 %endif
979 %if %{with_fscache}
980 %define _with_fscache --enable-fscache
981 %else
982 %define _with_fscache --disable-fscache
983 %endif
985 %if %{with_gmond}
986 %define _with_gmond --enable-gmond
987 %else
988 %define _with_gmond --disable-gmond
989 %endif
991 %if %{with_hddtemp}
992 %define _with_hddtemp --enable-hddtemp
993 %else
994 %define _with_hddtemp --disable-hddtemp
995 %endif
997 %if %{with_interface}
998 %define _with_interface --enable-interface
999 %else
1000 %define _with_interface --disable-interface
1001 %endif
1003 %if %{with_ipmi}
1004 %define _with_ipmi --enable-ipmi
1005 %else
1006 %define _with_ipmi --disable-ipmi
1007 %endif
1009 %if %{with_iptables}
1010 %define _with_iptables --enable-iptables
1011 %else
1012 %define _with_iptables --disable-iptables
1013 %endif
1015 %if %{with_ipvs}
1016 %define _with_ipvs --enable-ipvs
1017 %else
1018 %define _with_ipvs --disable-ipvs
1019 %endif
1021 %if %{with_irq}
1022 %define _with_irq --enable-irq
1023 %else
1024 %define _with_irq --disable-irq
1025 %endif
1027 %if %{with_java}
1028 %define _with_java --enable-java --with-java=%{java_home}/
1029 %else
1030 %define _with_java --disable-java
1031 %endif
1033 %if %{with_virt}
1034 %define _with_virt --enable-virt
1035 %else
1036 %define _with_virt --disable-virt
1037 %endif
1039 %if %{with_load}
1040 %define _with_load --enable-load
1041 %else
1042 %define _with_load --disable-load
1043 %endif
1045 %if %{with_logfile}
1046 %define _with_logfile --enable-logfile
1047 %else
1048 %define _with_logfile --disable-logfile
1049 %endif
1051 %if %{with_log_logstash}
1052 %define _with_log_logstash --enable-log_logstash
1053 %else
1054 %define _with_log_logstash --disable-log_logstash
1055 %endif
1057 %if %{with_lpar}
1058 %define _with_lpar --enable-lpar
1059 %else
1060 %define _with_lpar --disable-lpar
1061 %endif
1063 %if %{with_lvm}
1064 %define _with_lvm --enable-lvm
1065 %else
1066 %define _with_lvm --disable-lvm
1067 %endif
1069 %if %{with_madwifi}
1070 %define _with_madwifi --enable-madwifi
1071 %else
1072 %define _with_madwifi --disable-madwifi
1073 %endif
1075 %if %{with_mbmon}
1076 %define _with_mbmon --enable-mbmon
1077 %else
1078 %define _with_mbmon --disable-mbmon
1079 %endif
1081 %if %{with_md}
1082 %define _with_md --enable-md
1083 %else
1084 %define _with_md --disable-md
1085 %endif
1087 %if %{with_memcachec}
1088 %define _with_memcachec --enable-memcachec
1089 %else
1090 %define _with_memcachec --disable-memcachec
1091 %endif
1093 %if %{with_memcached}
1094 %define _with_memcached --enable-memcached
1095 %else
1096 %define _with_memcached --disable-memcached
1097 %endif
1099 %if %{with_memory}
1100 %define _with_memory --enable-memory
1101 %else
1102 %define _with_memory --disable-memory
1103 %endif
1105 %if %{with_mic}
1106 %define _with_mic --enable-mic
1107 %else
1108 %define _with_mic --disable-mic
1109 %endif
1111 %if %{with_modbus}
1112 %define _with_modbus --enable-modbus
1113 %else
1114 %define _with_modbus --disable-modbus
1115 %endif
1117 %if %{with_multimeter}
1118 %define _with_multimeter --enable-multimeter
1119 %else
1120 %define _with_multimeter --disable-multimeter
1121 %endif
1123 %if %{with_mysql}
1124 %define _with_mysql --enable-mysql
1125 %else
1126 %define _with_mysql --disable-mysql
1127 %endif
1129 %if %{with_netapp}
1130 %define _with_netapp --enable-netapp
1131 %else
1132 %define _with_netapp --disable-netapp
1133 %endif
1135 %if %{with_netlink}
1136 %define _with_netlink --enable-netlink
1137 %else
1138 %define _with_netlink --disable-netlink
1139 %endif
1141 %if %{with_network}
1142 %define _with_network --enable-network
1143 %else
1144 %define _with_network --disable-network
1145 %endif
1147 %if %{with_nfs}
1148 %define _with_nfs --enable-nfs
1149 %else
1150 %define _with_nfs --disable-nfs
1151 %endif
1153 %if %{with_nginx}
1154 %define _with_nginx --enable-nginx
1155 %else
1156 %define _with_nginx --disable-nginx
1157 %endif
1159 %if %{with_notify_desktop}
1160 %define _with_notify_desktop --enable-notify_desktop
1161 %else
1162 %define _with_notify_desktop --disable-notify_desktop
1163 %endif
1165 %if %{with_notify_email}
1166 %define _with_notify_email --enable-notify_email
1167 %else
1168 %define _with_notify_email --disable-notify_email --without-libesmpt
1169 %endif
1171 %if %{with_ntpd}
1172 %define _with_ntpd --enable-ntpd
1173 %else
1174 %define _with_ntpd --disable-ntpd
1175 %endif
1177 %if %{with_numa}
1178 %define _with_numa --enable-numa
1179 %else
1180 %define _with_numa --disable-numa
1181 %endif
1183 %if %{with_nut}
1184 %define _with_nut --enable-nut
1185 %else
1186 %define _with_nut --disable-nut
1187 %endif
1189 %if %{with_olsrd}
1190 %define _with_olsrd --enable-olsrd
1191 %else
1192 %define _with_olsrd --disable-olsrd
1193 %endif
1195 %if %{with_onewire}
1196 %define _with_onewire --enable-onewire
1197 %else
1198 %define _with_onewire --disable-onewire
1199 %endif
1201 %if %{with_openldap}
1202 %define _with_openldap --enable-openldap
1203 %else
1204 %define _with_openldap --disable-openldap
1205 %endif
1207 %if %{with_openvpn}
1208 %define _with_openvpn --enable-openvpn
1209 %else
1210 %define _with_openvpn --disable-openvpn
1211 %endif
1213 %if %{with_oracle}
1214 %define _with_oracle --enable-oracle
1215 %else
1216 %define _with_oracle --disable-oracle
1217 %endif
1219 %if %{with_perl}
1220 %define _with_perl --enable-perl --with-perl-bindings="INSTALLDIRS=vendor"
1221 %else
1222 %define _with_perl --disable-perl --without-libperl
1223 %endif
1225 %if %{with_pf}
1226 %define _with_pf --enable-pf
1227 %else
1228 %define _with_pf --disable-pf
1229 %endif
1231 %if %{with_pinba}
1232 %define _with_pinba --enable-pinba
1233 %else
1234 %define _with_pinba --disable-pinba
1235 %endif
1237 %if %{with_ping}
1238 %define _with_ping --enable-ping
1239 %else
1240 %define _with_ping --disable-ping
1241 %endif
1243 %if %{with_postgresql}
1244 %define _with_postgresql --enable-postgresql
1245 %else
1246 %define _with_postgresql --disable-postgresql
1247 %endif
1249 %if %{with_powerdns}
1250 %define _with_powerdns --enable-powerdns
1251 %else
1252 %define _with_powerdns --disable-powerdns
1253 %endif
1255 %if %{with_processes}
1256 %define _with_processes --enable-processes
1257 %else
1258 %define _with_processes --disable-processes
1259 %endif
1261 %if %{with_protocols}
1262 %define _with_protocols --enable-protocols
1263 %else
1264 %define _with_protocols --disable-protocols
1265 %endif
1267 %if %{with_python}
1268         %if 0%{?rhel} >= 6
1269 %define _with_python --enable-python
1270         %else
1271 %define _with_python --enable-python --with-python=%{_bindir}/python2.6
1272         %endif
1273 %else
1274 %define _with_python --disable-python
1275 %endif
1277 %if %{with_redis}
1278 %define _with_redis --enable-redis
1279 %else
1280 %define _with_redis --disable-redis
1281 %endif
1283 %if %{with_routeros}
1284 %define _with_routeros --enable-routeros
1285 %else
1286 %define _with_routeros --disable-routeros
1287 %endif
1289 %if %{with_rrdcached}
1290 %define _with_rrdcached --enable-rrdcached
1291 %else
1292 %define _with_rrdcached --disable-rrdcached
1293 %endif
1295 %if %{with_rrdtool}
1296 %define _with_rrdtool --enable-rrdtool
1297 %else
1298 %define _with_rrdtool --disable-rrdtool
1299 %endif
1301 %if %{with_sensors}
1302 %define _with_sensors --enable-sensors
1303 %else
1304 %define _with_sensors --disable-sensors
1305 %endif
1307 %if %{with_serial}
1308 %define _with_serial --enable-serial
1309 %else
1310 %define _with_serial --disable-serial
1311 %endif
1313 %if %{with_sigrok}
1314 %define _with_sigrok --enable-sigrok
1315 %else
1316 %define _with_sigrok --disable-sigrok
1317 %endif
1319 %if %{with_smart}
1320 %define _with_smart --enable-smart
1321 %else
1322 %define _with_smart --disable-smart
1323 %endif
1325 %if %{with_snmp}
1326 %define _with_snmp --enable-snmp
1327 %else
1328 %define _with_snmp --disable-snmp
1329 %endif
1331 %if %{with_statsd}
1332 %define _with_statsd --enable-statsd
1333 %else
1334 %define _with_statsd --disable-statsd
1335 %endif
1337 %if %{with_swap}
1338 %define _with_swap --enable-swap
1339 %else
1340 %define _with_swap --disable-swap
1341 %endif
1343 %if %{with_syslog}
1344 %define _with_syslog --enable-syslog
1345 %else
1346 %define _with_syslog --disable-syslog
1347 %endif
1349 %if %{with_table}
1350 %define _with_table --enable-table
1351 %else
1352 %define _with_table --disable-table
1353 %endif
1355 %if %{with_tail}
1356 %define _with_tail --enable-tail
1357 %else
1358 %define _with_tail --disable-tail
1359 %endif
1361 %if %{with_tail_csv}
1362 %define _with_tail_csv --enable-tail_csv
1363 %else
1364 %define _with_tail_csv --disable-tail_csv
1365 %endif
1367 %if %{with_tape}
1368 %define _with_tape --enable-tape
1369 %else
1370 %define _with_tape --disable-tape
1371 %endif
1373 %if %{with_tcpconns}
1374 %define _with_tcpconns --enable-tcpconns
1375 %else
1376 %define _with_tcpconns --disable-tcpconns
1377 %endif
1379 %if %{with_teamspeak2}
1380 %define _with_teamspeak2 --enable-teamspeak2
1381 %else
1382 %define _with_teamspeak2 --disable-teamspeak2
1383 %endif
1385 %if %{with_ted}
1386 %define _with_ted --enable-ted
1387 %else
1388 %define _with_ted --disable-ted
1389 %endif
1391 %if %{with_thermal}
1392 %define _with_thermal --enable-thermal
1393 %else
1394 %define _with_thermal --disable-thermal
1395 %endif
1397 %if %{with_threshold}
1398 %define _with_threshold --enable-threshold
1399 %else
1400 %define _with_threshold --disable-threshold
1401 %endif
1403 %if %{with_tokyotyrant}
1404 %define _with_tokyotyrant --enable-tokyotyrant
1405 %else
1406 %define _with_tokyotyrant --disable-tokyotyrant
1407 %endif
1409 %if %{with_unixsock}
1410 %define _with_unixsock --enable-unixsock
1411 %else
1412 %define _with_unixsock --disable-unixsock
1413 %endif
1415 %if %{with_uptime}
1416 %define _with_uptime --enable-uptime
1417 %else
1418 %define _with_uptime --disable-uptime
1419 %endif
1421 %if %{with_users}
1422 %define _with_users --enable-users
1423 %else
1424 %define _with_users --disable-users
1425 %endif
1427 %if %{with_uuid}
1428 %define _with_uuid --enable-uuid
1429 %else
1430 %define _with_uuid --disable-uuid
1431 %endif
1433 %if %{with_varnish}
1434 %define _with_varnish --enable-varnish
1435 %else
1436 %define _with_varnish --disable-varnish
1437 %endif
1439 %if %{with_vmem}
1440 %define _with_vmem --enable-vmem
1441 %else
1442 %define _with_vmem --disable-vmem
1443 %endif
1445 %if %{with_vserver}
1446 %define _with_vserver --enable-vserver
1447 %else
1448 %define _with_vserver --disable-vserver
1449 %endif
1451 %if %{with_wireless}
1452 %define _with_wireless --enable-wireless
1453 %else
1454 %define _with_wireless --disable-wireless
1455 %endif
1457 %if %{with_write_graphite}
1458 %define _with_write_graphite --enable-write_graphite
1459 %else
1460 %define _with_write_graphite --disable-write_graphite
1461 %endif
1463 %if %{with_write_http}
1464 %define _with_write_http --enable-write_http
1465 %else
1466 %define _with_write_http --disable-write_http
1467 %endif
1469 %if %{with_write_kafka}
1470 %define _with_write_kafka --enable-write_kafka
1471 %else
1472 %define _with_write_kafka --disable-write_kafka
1473 %endif
1475 %if %{with_write_log}
1476 %define _with_write_log --enable-write_log
1477 %else
1478 %define _with_write_log --disable-write_log
1479 %endif
1481 %if %{with_write_mongodb}
1482 %define _with_write_mongodb --enable-write_mongodb
1483 %else
1484 %define _with_write_mongodb --disable-write_mongodb --without-libmongoc
1485 %endif
1487 %if %{with_write_redis}
1488 %define _with_write_redis --enable-write_redis
1489 %else
1490 %define _with_write_redis --disable-write_redis
1491 %endif
1493 %if %{with_write_riemann}
1494 %define _with_write_riemann --enable-write_riemann
1495 %else
1496 %define _with_write_riemann --disable-write_riemann
1497 %endif
1499 %if %{with_write_tsdb}
1500 %define _with_write_tsdb --enable-write_tsdb
1501 %else
1502 %define _with_write_tsdb --disable-write_tsdb
1503 %endif
1505 %if %{with_xmms}
1506 %define _with_xmms --enable-xmms
1507 %else
1508 %define _with_xmms --disable-xmms
1509 %endif
1511 %if %{with_zfs_arc}
1512 %define _with_zfs_arc --enable-zfs_arc
1513 %else
1514 %define _with_zfs_arc --disable-zfs_arc
1515 %endif
1517 %if %{with_zookeeper}
1518 %define _with_zookeeper --enable-zookeeper
1519 %else
1520 %define _with_zookeeper --disable-zookeeper
1521 %endif
1523 %configure CFLAGS="%{optflags} -DLT_LAZY_OR_NOW=\"RTLD_LAZY|RTLD_GLOBAL\"" \
1524         --disable-static \
1525         --without-included-ltdl \
1526         --enable-all-plugins=yes \
1527         --enable-match_empty_counter \
1528         --enable-match_hashed \
1529         --enable-match_regex \
1530         --enable-match_timediff \
1531         --enable-match_value \
1532         --enable-target_notification \
1533         --enable-target_replace \
1534         --enable-target_scale \
1535         --enable-target_set \
1536         --enable-target_v5upgrade \
1537         %{?_with_aggregation} \
1538         %{?_with_amqp} \
1539         %{?_with_apache} \
1540         %{?_with_apcups} \
1541         %{?_with_apple_sensors} \
1542         %{?_with_aquaero} \
1543         %{?_with_ascent} \
1544         %{?_with_barometer} \
1545         %{?_with_battery} \
1546         %{?_with_bind} \
1547         %{?_with_cgroups} \
1548         %{?_with_conntrack} \
1549         %{?_with_contextswitch} \
1550         %{?_with_cpu} \
1551         %{?_with_cpufreq} \
1552         %{?_with_csv} \
1553         %{?_with_curl} \
1554         %{?_with_curl_json} \
1555         %{?_with_curl_xml} \
1556         %{?_with_dbi} \
1557         %{?_with_df} \
1558         %{?_with_disk} \
1559         %{?_with_dns} \
1560         %{?_with_drbd} \
1561         %{?_with_email} \
1562         %{?_with_entropy} \
1563         %{?_with_ethstat} \
1564         %{?_with_exec} \
1565         %{?_with_filecount} \
1566         %{?_with_fscache} \
1567         %{?_with_gmond} \
1568         %{?_with_hddtemp} \
1569         %{?_with_interface} \
1570         %{?_with_ipmi} \
1571         %{?_with_iptables} \
1572         %{?_with_ipvs} \
1573         %{?_with_java} \
1574         %{?_with_virt} \
1575         %{?_with_log_logstash} \
1576         %{?_with_lpar} \
1577         %{?_with_lvm} \
1578         %{?_with_memcachec} \
1579         %{?_with_mic} \
1580         %{?_with_modbus} \
1581         %{?_with_multimeter} \
1582         %{?_with_mysql} \
1583         %{?_with_netapp} \
1584         %{?_with_netlink} \
1585         %{?_with_nginx} \
1586         %{?_with_notify_desktop} \
1587         %{?_with_notify_email} \
1588         %{?_with_nut} \
1589         %{?_with_onewire} \
1590         %{?_with_openldap} \
1591         %{?_with_oracle} \
1592         %{?_with_perl} \
1593         %{?_with_pf} \
1594         %{?_with_pinba} \
1595         %{?_with_ping} \
1596         %{?_with_postgresql} \
1597         %{?_with_python} \
1598         %{?_with_redis} \
1599         %{?_with_routeros} \
1600         %{?_with_rrdcached} \
1601         %{?_with_rrdtool} \
1602         %{?_with_sensors} \
1603         %{?_with_sigrok} \
1604         %{?_with_smart} \
1605         %{?_with_snmp} \
1606         %{?_with_tape} \
1607         %{?_with_tokyotyrant} \
1608         %{?_with_varnish} \
1609         %{?_with_write_http} \
1610         %{?_with_write_kafka} \
1611         %{?_with_write_mongodb} \
1612         %{?_with_write_redis} \
1613         %{?_with_xmms} \
1614         %{?_with_zfs_arc} \
1615         %{?_with_zookeeper} \
1616         %{?_with_irq} \
1617         %{?_with_load} \
1618         %{?_with_logfile} \
1619         %{?_with_madwifi} \
1620         %{?_with_mbmon} \
1621         %{?_with_md} \
1622         %{?_with_memcached} \
1623         %{?_with_memory} \
1624         %{?_with_network} \
1625         %{?_with_nfs} \
1626         %{?_with_ntpd} \
1627         %{?_with_numa} \
1628         %{?_with_olsrd} \
1629         %{?_with_openvpn} \
1630         %{?_with_powerdns} \
1631         %{?_with_processes} \
1632         %{?_with_protocols} \
1633         %{?_with_serial} \
1634         %{?_with_statsd} \
1635         %{?_with_swap} \
1636         %{?_with_syslog} \
1637         %{?_with_table} \
1638         %{?_with_tail} \
1639         %{?_with_tail_csv} \
1640         %{?_with_tcpconns} \
1641         %{?_with_teamspeak2} \
1642         %{?_with_ted} \
1643         %{?_with_thermal} \
1644         %{?_with_threshold} \
1645         %{?_with_unixsock} \
1646         %{?_with_uptime} \
1647         %{?_with_users} \
1648         %{?_with_uuid} \
1649         %{?_with_vmem} \
1650         %{?_with_vserver} \
1651         %{?_with_wireless}\
1652         %{?_with_write_graphite} \
1653         %{?_with_write_http} \
1654         %{?_with_write_log} \
1655         %{?_with_write_riemann} \
1656         %{?_with_write_tsdb}
1659 %{__make} %{?_smp_mflags}
1662 %install
1663 rm -rf %{buildroot}
1664 %{__make} install DESTDIR=%{buildroot}
1665 %if 0%{?el7:1}
1666 %{__install} -Dp -m0644 contrib/systemd.collectd.service %{buildroot}%{_unitdir}/collectd.service
1667 %else
1668 %{__install} -Dp -m0755 contrib/redhat/init.d-collectd %{buildroot}%{_initrddir}/collectd
1669 %endif
1670 %{__install} -Dp -m0644 src/collectd.conf %{buildroot}%{_sysconfdir}/collectd.conf
1671 %{__install} -d %{buildroot}%{_sharedstatedir}/collectd/
1672 %{__install} -d %{buildroot}%{_sysconfdir}/collectd.d/
1674 %{__mkdir} -p %{buildroot}%{_localstatedir}/www
1675 %{__mkdir} -p %{buildroot}/%{_sysconfdir}/httpd/conf.d
1677 %{__cp} -a contrib/collection3 %{buildroot}%{_localstatedir}/www
1678 %{__cp} -a contrib/redhat/collection3.conf %{buildroot}/%{_sysconfdir}/httpd/conf.d/
1680 %{__cp} -a contrib/php-collection %{buildroot}%{_localstatedir}/www
1681 %{__cp} -a contrib/redhat/php-collection.conf %{buildroot}/%{_sysconfdir}/httpd/conf.d/
1683 ### Clean up docs
1684 find contrib/ -type f -exec %{__chmod} a-x {} \;
1685 # *.la files shouldn't be distributed.
1686 rm -f %{buildroot}/%{_libdir}/{collectd/,}*.la
1688 # Move the Perl examples to a separate directory.
1689 mkdir perl-examples
1690 find contrib -name '*.p[lm]' -exec mv {} perl-examples/ \;
1692 # Remove Perl hidden .packlist files.
1693 find %{buildroot} -type f -name .packlist -delete
1694 # Remove Perl temporary file perllocal.pod
1695 find %{buildroot} -type f -name perllocal.pod -delete
1697 %if ! %{with_java}
1698 rm -f %{buildroot}%{_datadir}/collectd/java/collectd-api.jar
1699 rm -f %{buildroot}%{_datadir}/collectd/java/generic-jmx.jar
1700 rm -f %{buildroot}%{_mandir}/man5/collectd-java.5*
1701 %endif
1703 %if ! %{with_perl}
1704 rm -f %{buildroot}%{_mandir}/man5/collectd-perl.5*
1705 rm -f %{buildroot}%{_mandir}/man3/Collectd::Unixsock.3pm*
1706 rm -fr perl-examples/
1707 rm -fr %{buildroot}/usr/lib/perl5/
1708 %endif
1710 %if ! %{with_postgresql}
1711 rm -f %{buildroot}%{_datadir}/collectd/postgresql_default.conf
1712 %endif
1714 %if ! %{with_python}
1715 rm -f %{buildroot}%{_mandir}/man5/collectd-python.5*
1716 %endif
1718 %if ! %{with_snmp}
1719 rm -f %{buildroot}%{_mandir}/man5/collectd-snmp.5*
1720 %endif
1723 %clean
1724 rm -rf %{buildroot}
1726 %pre
1727 %if 0%{?el7:1}
1728 # stop sysv-based instance before upgrading to systemd
1729 if [ $1 -eq 2 ] && [ -f /var/lock/subsys/collectd ]; then
1730         SYSTEMCTL_SKIP_REDIRECT=1 %{_initddir}/collectd stop >/dev/null 2>&1 || :
1731 fi
1732 %endif
1734 %post
1735 %if 0%{?el7:1}
1736 if [ $1 -eq 2 ]; then
1737         /usr/bin/systemctl daemon-reload >/dev/null 2>&1 || :
1738 fi
1739 %systemd_post collectd.service
1740 %else
1741 /sbin/chkconfig --add collectd || :
1742 %endif
1744 %preun
1745 %if 0%{?el7:1}
1746 %systemd_preun collectd.service
1747 %else
1748 # stop collectd only when uninstalling
1749 if [ $1 -eq 0 ]; then
1750         /sbin/service collectd stop >/dev/null 2>&1 || :
1751         /sbin/chkconfig --del collectd || :
1752 fi
1753 %endif
1755 %postun
1756 %if 0%{?el7:1}
1757 %systemd_postun_with_restart collectd.service
1758 %else
1759 # restart collectd only when upgrading
1760 if [ $1 -eq 1 ]; then
1761         /sbin/service collectd condrestart >/dev/null 2>&1 || :
1762 fi
1763 %endif
1765 %post -n libcollectdclient -p /sbin/ldconfig
1766 %postun -n libcollectdclient -p /sbin/ldconfig
1769 %files
1770 %doc AUTHORS COPYING ChangeLog README
1771 %config(noreplace) %{_sysconfdir}/collectd.conf
1772 %if 0%{?el7:1}
1773 %{_unitdir}/collectd.service
1774 %else
1775 %{_initrddir}/collectd
1776 %endif
1777 %{_sbindir}/collectd
1778 %{_bindir}/collectd-nagios
1779 %{_bindir}/collectd-tg
1780 %{_bindir}/collectdctl
1781 %{_sbindir}/collectdmon
1782 %{_datadir}/collectd/types.db
1783 %{_sharedstatedir}/collectd
1784 %{_mandir}/man1/collectd-nagios.1*
1785 %{_mandir}/man1/collectd.1*
1786 %{_mandir}/man1/collectdctl.1*
1787 %{_mandir}/man1/collectdmon.1*
1788 %{_mandir}/man1/collectd-tg.1*
1789 %{_mandir}/man5/collectd-email.5*
1790 %{_mandir}/man5/collectd-exec.5*
1791 %{_mandir}/man5/collectd-threshold.5*
1792 %{_mandir}/man5/collectd-unixsock.5*
1793 %{_mandir}/man5/collectd.conf.5*
1794 %{_mandir}/man5/types.db.5*
1796 # all plugins bundled with the main collectd package
1797 %{_libdir}/%{name}/match_empty_counter.so
1798 %{_libdir}/%{name}/match_hashed.so
1799 %{_libdir}/%{name}/match_regex.so
1800 %{_libdir}/%{name}/match_timediff.so
1801 %{_libdir}/%{name}/match_value.so
1802 %{_libdir}/%{name}/target_notification.so
1803 %{_libdir}/%{name}/target_replace.so
1804 %{_libdir}/%{name}/target_scale.so
1805 %{_libdir}/%{name}/target_set.so
1806 %{_libdir}/%{name}/target_v5upgrade.so
1808 %if %{with_aggregation}
1809 %{_libdir}/%{name}/aggregation.so
1810 %endif
1811 %if %{with_apcups}
1812 %{_libdir}/%{name}/apcups.so
1813 %endif
1814 %if %{with_battery}
1815 %{_libdir}/%{name}/battery.so
1816 %endif
1817 %if %{with_cgroups}
1818 %{_libdir}/%{name}/cgroups.so
1819 %endif
1820 %if %{with_conntrack}
1821 %{_libdir}/%{name}/conntrack.so
1822 %endif
1823 %if %{with_contextswitch}
1824 %{_libdir}/%{name}/contextswitch.so
1825 %endif
1826 %if %{with_cpu}
1827 %{_libdir}/%{name}/cpu.so
1828 %endif
1829 %if %{with_cpufreq}
1830 %{_libdir}/%{name}/cpufreq.so
1831 %endif
1832 %if %{with_csv}
1833 %{_libdir}/%{name}/csv.so
1834 %endif
1835 %if %{with_df}
1836 %{_libdir}/%{name}/df.so
1837 %endif
1838 %if %{with_drbd}
1839 %{_libdir}/%{name}/drbd.so
1840 %endif
1841 %if %{with_ethstat}
1842 %{_libdir}/%{name}/ethstat.so
1843 %endif
1844 %if %{with_entropy}
1845 %{_libdir}/%{name}/entropy.so
1846 %endif
1847 %if %{with_exec}
1848 %{_libdir}/%{name}/exec.so
1849 %endif
1850 %if %{with_filecount}
1851 %{_libdir}/%{name}/filecount.so
1852 %endif
1853 %if %{with_fscache}
1854 %{_libdir}/%{name}/fscache.so
1855 %endif
1856 %if %{with_interface}
1857 %{_libdir}/%{name}/interface.so
1858 %endif
1859 %if %{with_ipvs}
1860 %{_libdir}/%{name}/ipvs.so
1861 %endif
1862 %if %{with_irq}
1863 %{_libdir}/%{name}/irq.so
1864 %endif
1865 %if %{with_load}
1866 %{_libdir}/%{name}/load.so
1867 %endif
1868 %if %{with_logfile}
1869 %{_libdir}/%{name}/logfile.so
1870 %endif
1871 %if %{with_madwifi}
1872 %{_libdir}/%{name}/madwifi.so
1873 %endif
1874 %if %{with_mbmon}
1875 %{_libdir}/%{name}/mbmon.so
1876 %endif
1877 %if %{with_md}
1878 %{_libdir}/%{name}/md.so
1879 %endif
1880 %if %{with_memcached}
1881 %{_libdir}/%{name}/memcached.so
1882 %endif
1883 %if %{with_memory}
1884 %{_libdir}/%{name}/memory.so
1885 %endif
1886 %if %{with_multimeter}
1887 %{_libdir}/%{name}/multimeter.so
1888 %endif
1889 %if %{with_network}
1890 %{_libdir}/%{name}/network.so
1891 %endif
1892 %if %{with_nfs}
1893 %{_libdir}/%{name}/nfs.so
1894 %endif
1895 %if %{with_ntpd}
1896 %{_libdir}/%{name}/ntpd.so
1897 %endif
1898 %if %{with_numa}
1899 %{_libdir}/%{name}/numa.so
1900 %endif
1901 %if %{with_openvpn}
1902 %{_libdir}/%{name}/openvpn.so
1903 %endif
1904 %if %{with_olsrd}
1905 %{_libdir}/%{name}/olsrd.so
1906 %endif
1907 %if %{with_powerdns}
1908 %{_libdir}/%{name}/powerdns.so
1909 %endif
1910 %if %{with_processes}
1911 %{_libdir}/%{name}/processes.so
1912 %endif
1913 %if %{with_protocols}
1914 %{_libdir}/%{name}/protocols.so
1915 %endif
1916 %if %{with_serial}
1917 %{_libdir}/%{name}/serial.so
1918 %endif
1919 %if %{with_statsd}
1920 %{_libdir}/%{name}/statsd.so
1921 %endif
1922 %if %{with_swap}
1923 %{_libdir}/%{name}/swap.so
1924 %endif
1925 %if %{with_syslog}
1926 %{_libdir}/%{name}/syslog.so
1927 %endif
1928 %if %{with_table}
1929 %{_libdir}/%{name}/table.so
1930 %endif
1931 %if %{with_tail}
1932 %{_libdir}/%{name}/tail.so
1933 %endif
1934 %if %{with_tail_csv}
1935 %{_libdir}/%{name}/tail_csv.so
1936 %endif
1937 %if %{with_tcpconns}
1938 %{_libdir}/%{name}/tcpconns.so
1939 %endif
1940 %if %{with_teamspeak2}
1941 %{_libdir}/%{name}/teamspeak2.so
1942 %endif
1943 %if %{with_ted}
1944 %{_libdir}/%{name}/ted.so
1945 %endif
1946 %if %{with_thermal}
1947 %{_libdir}/%{name}/thermal.so
1948 %endif
1949 %if %{with_load}
1950 %{_libdir}/%{name}/threshold.so
1951 %endif
1952 %if %{with_unixsock}
1953 %{_libdir}/%{name}/unixsock.so
1954 %endif
1955 %if %{with_uptime}
1956 %{_libdir}/%{name}/uptime.so
1957 %endif
1958 %if %{with_users}
1959 %{_libdir}/%{name}/users.so
1960 %endif
1961 %if %{with_uuid}
1962 %{_libdir}/%{name}/uuid.so
1963 %endif
1964 %if %{with_vmem}
1965 %{_libdir}/%{name}/vmem.so
1966 %endif
1967 %if %{with_vserver}
1968 %{_libdir}/%{name}/vserver.so
1969 %endif
1970 %if %{with_wireless}
1971 %{_libdir}/%{name}/wireless.so
1972 %endif
1973 %if %{with_write_graphite}
1974 %{_libdir}/%{name}/write_graphite.so
1975 %endif
1976 %if %{with_write_log}
1977 %{_libdir}/%{name}/write_log.so
1978 %endif
1979 %if %{with_write_tsdb}
1980 %{_libdir}/%{name}/write_tsdb.so
1981 %endif
1982 %if %{with_zfs_arc}
1983 %{_libdir}/%{name}/zfs_arc.so
1984 %endif
1985 %if %{with_zookeeper}
1986 %{_libdir}/%{name}/zookeeper.so
1987 %endif
1989 %files -n libcollectdclient-devel
1990 %{_includedir}/collectd/client.h
1991 %{_includedir}/collectd/network.h
1992 %{_includedir}/collectd/network_buffer.h
1993 %{_includedir}/collectd/lcc_features.h
1994 %{_libdir}/pkgconfig/libcollectdclient.pc
1996 %files -n libcollectdclient
1997 %{_libdir}/libcollectdclient.so
1998 %{_libdir}/libcollectdclient.so.*
2000 %if %{with_amqp}
2001 %files amqp
2002 %{_libdir}/%{name}/amqp.so
2003 %endif
2005 %if %{with_apache}
2006 %files apache
2007 %{_libdir}/%{name}/apache.so
2008 %endif
2010 %if %{with_aquaero}
2011 %files aquaero
2012 %{_libdir}/%{name}/aquaero.so
2013 %endif
2015 %if %{with_ascent}
2016 %files ascent
2017 %{_libdir}/%{name}/ascent.so
2018 %endif
2020 %if %{with_barometer}
2021 %files barometer
2022 %{_libdir}/%{name}/barometer.so
2023 %endif
2025 %if %{with_bind}
2026 %files bind
2027 %{_libdir}/%{name}/bind.so
2028 %endif
2030 %if %{with_curl}
2031 %files curl
2032 %{_libdir}/%{name}/curl.so
2033 %endif
2035 %if %{with_curl_json}
2036 %files curl_json
2037 %{_libdir}/%{name}/curl_json.so
2038 %endif
2040 %if %{with_curl_xml}
2041 %files curl_xml
2042 %{_libdir}/%{name}/curl_xml.so
2043 %endif
2045 %if %{with_disk}
2046 %files disk
2047 %{_libdir}/%{name}/disk.so
2048 %endif
2050 %if %{with_dns}
2051 %files dns
2052 %{_libdir}/%{name}/dns.so
2053 %endif
2055 %if %{with_dbi}
2056 %files dbi
2057 %{_libdir}/%{name}/dbi.so
2058 %endif
2060 %if %{with_email}
2061 %files email
2062 %{_libdir}/%{name}/email.so
2063 %endif
2065 %if %{with_gmond}
2066 %files gmond
2067 %{_libdir}/%{name}/gmond.so
2068 %endif
2070 %if %{with_hddtemp}
2071 %files hddtemp
2072 %{_libdir}/%{name}/hddtemp.so
2073 %endif
2075 %if %{with_ipmi}
2076 %files ipmi
2077 %{_libdir}/%{name}/ipmi.so
2078 %endif
2080 %if %{with_iptables}
2081 %files iptables
2082 %{_libdir}/%{name}/iptables.so
2083 %endif
2085 %if %{with_java}
2086 %files java
2087 %{_datadir}/collectd/java/collectd-api.jar
2088 %{_datadir}/collectd/java/generic-jmx.jar
2089 %{_libdir}/%{name}/java.so
2090 %{_mandir}/man5/collectd-java.5*
2091 %endif
2093 %if %{with_virt}
2094 %files virt
2095 %{_libdir}/%{name}/virt.so
2096 %endif
2098 %if %{with_log_logstash}
2099 %files log_logstash
2100 %{_libdir}/%{name}/log_logstash.so
2101 %endif
2103 %if %{with_lvm}
2104 %files lvm
2105 %{_libdir}/%{name}/lvm.so
2106 %endif
2108 %if %{with_memcachec}
2109 %files memcachec
2110 %{_libdir}/%{name}/memcachec.so
2111 %endif
2113 %if %{with_mic}
2114 %files mic
2115 %{_libdir}/%{name}/mic.so
2116 %endif
2118 %if %{with_modbus}
2119 %files modbus
2120 %{_libdir}/%{name}/modbus.so
2121 %endif
2123 %if %{with_mysql}
2124 %files mysql
2125 %{_libdir}/%{name}/mysql.so
2126 %endif
2128 %if %{with_netlink}
2129 %files netlink
2130 %{_libdir}/%{name}/netlink.so
2131 %endif
2133 %if %{with_nginx}
2134 %files nginx
2135 %{_libdir}/%{name}/nginx.so
2136 %endif
2138 %if %{with_notify_desktop}
2139 %files notify_desktop
2140 %{_libdir}/%{name}/notify_desktop.so
2141 %endif
2143 %if %{with_notify_email}
2144 %files notify_email
2145 %{_libdir}/%{name}/notify_email.so
2146 %endif
2148 %if %{with_nut}
2149 %files nut
2150 %{_libdir}/%{name}/nut.so
2151 %endif
2153 %if %{with_openldap}
2154 %files openldap
2155 %{_libdir}/%{name}/openldap.so
2156 %endif
2158 %if %{with_perl}
2159 %files perl
2160 %doc perl-examples/*
2161 %{perl_vendorlib}/Collectd.pm
2162 %{perl_vendorlib}/Collectd/
2163 %{_mandir}/man3/Collectd::Unixsock.3pm*
2164 %{_mandir}/man5/collectd-perl.5*
2165 %{_libdir}/%{name}/perl.so
2166 %endif
2168 %if %{with_pinba}
2169 %files pinba
2170 %{_libdir}/%{name}/pinba.so
2171 %endif
2173 %if %{with_ping}
2174 %files ping
2175 %{_libdir}/%{name}/ping.so
2176 %endif
2178 %if %{with_postgresql}
2179 %files postgresql
2180 %{_datadir}/collectd/postgresql_default.conf
2181 %{_libdir}/%{name}/postgresql.so
2182 %endif
2184 %if %{with_python}
2185 %files python
2186 %{_mandir}/man5/collectd-python*
2187 %{_libdir}/%{name}/python.so
2188 %endif
2190 %if %{with_redis}
2191 %files redis
2192 %{_libdir}/%{name}/redis.so
2193 %endif
2195 %if %{with_rrdcached}
2196 %files rrdcached
2197 %{_libdir}/%{name}/rrdcached.so
2198 %endif
2200 %if %{with_rrdtool}
2201 %files rrdtool
2202 %{_libdir}/%{name}/rrdtool.so
2203 %endif
2205 %if %{with_sensors}
2206 %files sensors
2207 %{_libdir}/%{name}/sensors.so
2208 %endif
2210 %if %{with_sigrok}
2211 %files sigrok
2212 %{_libdir}/%{name}/sigrok.so
2213 %endif
2215 %if %{with_smart}
2216 %files smart
2217 %{_libdir}/%{name}/smart.so
2218 %endif
2220 %if %{with_snmp}
2221 %files snmp
2222 %{_mandir}/man5/collectd-snmp.5*
2223 %{_libdir}/%{name}/snmp.so
2224 %endif
2226 %if %{with_varnish}
2227 %files varnish
2228 %{_libdir}/%{name}/varnish.so
2229 %endif
2231 %if %{with_write_http}
2232 %files write_http
2233 %{_libdir}/%{name}/write_http.so
2234 %endif
2236 %if %{with_write_kafka}
2237 %files write_kafka
2238 %{_libdir}/%{name}/write_kafka.so
2239 %endif
2241 %if %{with_write_redis}
2242 %files write_redis
2243 %{_libdir}/%{name}/write_redis.so
2244 %endif
2246 %if %{with_write_riemann}
2247 %files write_riemann
2248 %{_libdir}/%{name}/write_riemann.so
2249 %endif
2251 %files collection3
2252 %{_localstatedir}/www/collection3
2253 %{_sysconfdir}/httpd/conf.d/collection3.conf
2255 %files php-collection
2256 %{_localstatedir}/www/php-collection
2257 %{_sysconfdir}/httpd/conf.d/php-collection.conf
2259 %files contrib
2260 %doc contrib/
2262 %changelog
2263 # * TODO 5.5.0-1
2264 # - New upstream version
2265 # - New plugins enabled by default: drbd, log_logstash, write_tsdb, smart, openldap, redis, write_redis, zookeeper, write_log
2266 # - New plugins disabled by default: barometer, write_kafka
2267 # - Enable zfs_arc, now supported on Linux
2268 # - Install disk plugin in an dedicated package, as it depends on libudev
2269 # - use systemd on EL7, sysvinit on EL6 & EL5
2271 * Mon Aug 19 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.4.0-1
2272 - New upstream version
2273 - Build netlink plugin by default
2274 - Enable cgroups, lvm and statsd plugins
2275 - Enable (but don't build by default) mic, aquaero and sigrok plugins
2277 * Tue Aug 06 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.3.1-1
2278 - New upstream version
2279 - Added RHEL5 support:
2280   * conditionally disable plugins not building on this platform
2281   * add/specify some build dependencies and options
2282   * replace some RPM macros not available on this platform
2283 - Removed duplicate --enable-aggregation
2284 - Added some comments & usage examples
2285 - Replaced a couple of "Buildrequires" by "BuildRequires"
2286 - Enabled modbus plugin on RHEL6
2287 - Enabled netlink plugin on RHEL6 and RHEL7
2288 - Allow perl plugin to build on RHEL5
2289 - Add support for RHEL7
2291 * Wed Apr 10 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.3.0-1
2292 - New upstream version
2293 - Enabled write_riemann plugin
2294 - Enabled tail_csv plugin
2295 - Installed collectd-tc manpage
2297 * Fri Jan 11 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.2.0-3
2298 - remove dependency on libstatgrab, which isn't required on linux
2300 * Thu Jan 03 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.2.0-2
2301 - collection3 and php-collection viewers are now in separate packages
2303 * Fri Dec 21 2012 Marc Fournier <marc.fournier@camptocamp.com> 5.2.0-1
2304 - New upstream version
2305 - Enabled aggregation plugin
2306 - Installed collectd-tc
2307 - Added network.h and network_buffer.h to libcollectdclient-devel
2308 - Moved libxml2-devel and libcurl-devel BRs to relevant plugins sections
2309 - Moved libcollectdclient.so from libcollectdclient-devel to libcollectdclient
2310 - Added rrdcached and redis plugin descriptions
2311 - Mentioned new pf plugin in disabled plugins list
2313 * Sun Nov 18 2012 Ruben Kerkhof <ruben@tilaa.nl> 5.1.0-3
2314 - Follow Fedora Packaging Guidelines in java subpackage
2316 * Sat Nov 17 2012 Ruben Kerkhof <ruben@tilaa.nl> 5.1.0-2
2317 - Move perl stuff to perl_vendorlib
2318 - Replace hardcoded paths with macros
2319 - Remove unnecessary Requires
2320 - Removed .a and .la files
2321 - Some other small cleanups
2323 * Fri Nov 16 2012 Marc Fournier <marc.fournier@camptocamp.com> 5.1.0-1
2324 - New upstream version
2325 - Changes to support 5.1.0
2326 - Enabled all buildable plugins based on libraries available on EL6 + EPEL
2327 - All plugins requiring external libraries are now shipped in separate
2328   packages.
2329 - No longer treat Java plugin as an exception, correctly set $JAVA_HOME during
2330   the build process + ensure build deps are installed.
2331 - Dropped per-plugin configuration files, as they tend to diverge from upstream
2332   defaults.
2333 - Moved perl stuff to /usr/share/perl5/
2334 - Don't alter Interval and ReadThreads by default, let the user change this
2335   himself.
2336 - Initscript improvements:
2337   * checks configuration before (re)starting, based on debian's initscript
2338   * use /etc/sysconfig instdead of /etc/default
2339   * include optional $ARGS in arguments passed to collectd.
2340 - Drop collection.cgi from main package, as it's been obsoleted by collection3
2341 - Moved contrib/ to its own package, to avoid cluttering the main package with
2342   non-essential stuff.
2343 - Replaced BuildPrereq by BuildRequires
2345 * Mon Jan 03 2011 Monetate <jason.stelzer@monetate.com> 5.0.1
2346 - New upstream version
2347 - Changes to support 5.0.1
2349 * Mon Jan 04 2010 Rackspace <stu.hood@rackspace.com> 4.9.0
2350 - New upstream version
2351 - Changes to support 4.9.0
2352 - Added support for Java/GenericJMX plugin
2354 * Mon Mar 17 2008 RightScale <support@rightscale.com> 4.3.1
2355 - New upstream version
2356 - Changes to support 4.3.1
2357 - Added More Prereqs to support more plugins
2358 - Added support for perl plugin
2360 * Mon Aug 06 2007 Kjell Randa <Kjell.Randa@broadpark.no> 4.0.6
2361 - New upstream version
2363 * Wed Jul 25 2007 Kjell Randa <Kjell.Randa@broadpark.no> 4.0.5
2364 - New major releas
2365 - Changes to support 4.0.5
2367 * Thu Jan 11 2007 Iain Lea <iain@bricbrac.de> 3.11.0-0
2368 - fixed spec file to build correctly on fedora core
2369 - added improved init.d script to work with chkconfig
2370 - added %%post and %%postun to call chkconfig automatically
2372 * Sun Jul 09 2006 Florian octo Forster <octo@verplant.org> 3.10.0-1
2373 - New upstream version
2375 * Sun Jun 25 2006 Florian octo Forster <octo@verplant.org> 3.9.4-1
2376 - New upstream version
2378 * Thu Jun 01 2006 Florian octo Forster <octo@verplant.org> 3.9.3-1
2379 - New upstream version
2381 * Tue May 09 2006 Florian octo Forster <octo@verplant.org> 3.9.2-1
2382 - New upstream version
2384 * Tue May 09 2006 Florian octo Forster <octo@verplant.org> 3.8.5-1
2385 - New upstream version
2387 * Fri Apr 21 2006 Florian octo Forster <octo@verplant.org> 3.9.1-1
2388 - New upstream version
2390 * Fri Apr 14 2006 Florian octo Forster <octo@verplant.org> 3.9.0-1
2391 - New upstream version
2392 - Added the `apache' package.
2394 * Tue Mar 14 2006 Florian octo Forster <octo@verplant.org> 3.8.2-1
2395 - New upstream version
2397 * Mon Mar 13 2006 Florian octo Forster <octo@verplant.org> 3.8.1-1
2398 - New upstream version
2400 * Thu Mar 09 2006 Florian octo Forster <octo@verplant.org> 3.8.0-1
2401 - New upstream version
2403 * Sat Feb 18 2006 Florian octo Forster <octo@verplant.org> 3.7.2-1
2404 - Include `tape.so' so the build doesn't terminate because of missing files..
2405 - New upstream version
2407 * Sat Feb 04 2006 Florian octo Forster <octo@verplant.org> 3.7.1-1
2408 - New upstream version
2410 * Mon Jan 30 2006 Florian octo Forster <octo@verplant.org> 3.7.0-1
2411 - New upstream version
2412 - Removed the extra `hddtemp' package
2414 * Tue Jan 24 2006 Florian octo Forster <octo@verplant.org> 3.6.2-1
2415 - New upstream version
2417 * Fri Jan 20 2006 Florian octo Forster <octo@verplant.org> 3.6.1-1
2418 - New upstream version
2420 * Fri Jan 20 2006 Florian octo Forster <octo@verplant.org> 3.6.0-1
2421 - New upstream version
2422 - Added config file, `collectd.conf(5)', `df.so'
2423 - Added package `collectd-mysql', dependency on `mysqlclient10 | mysql'
2425 * Wed Dec 07 2005 Florian octo Forster <octo@verplant.org> 3.5.0-1
2426 - New upstream version
2428 * Sat Nov 26 2005 Florian octo Forster <octo@verplant.org> 3.4.0-1
2429 - New upstream version
2431 * Sat Nov 05 2005 Florian octo Forster <octo@verplant.org> 3.3.0-1
2432 - New upstream version
2434 * Wed Oct 26 2005 Florian octo Forster <octo@verplant.org> 3.2.0-1
2435 - New upstream version
2436 - Added statement to remove the `*.la' files. This fixes a problem when
2437   `Unpackaged files terminate build' is in effect.
2438 - Added `processes.so*' to the main package
2440 * Fri Oct 14 2005 Florian octo Forster <octo@verplant.org> 3.1.0-1
2441 - New upstream version
2442 - Added package `collectd-hddtemp'
2444 * Fri Sep 30 2005 Florian octo Forster <octo@verplant.org> 3.0.0-1
2445 - New upstream version
2446 - Split the package into `collectd' and `collectd-sensors'
2448 * Fri Sep 16 2005 Florian octo Forster <octo@verplant.org> 2.1.0-1
2449 - New upstream version
2451 * Sat Sep 10 2005 Florian octo Forster <octo@verplant.org> 2.0.0-1
2452 - New upstream version
2454 * Mon Aug 29 2005 Florian octo Forster <octo@verplant.org> 1.8.0-1
2455 - New upstream version
2457 * Thu Aug 25 2005 Florian octo Forster <octo@verplant.org> 1.7.0-1
2458 - New upstream version
2460 * Sun Aug 21 2005 Florian octo Forster <octo@verplant.org> 1.6.0-1
2461 - New upstream version
2463 * Sun Jul 17 2005 Florian octo Forster <octo@verplant.org> 1.5.1-1
2464 - New upstream version
2466 * Sun Jul 17 2005 Florian octo Forster <octo@verplant.org> 1.5-1
2467 - New upstream version
2469 * Mon Jul 11 2005 Florian octo Forster <octo@verplant.org> 1.4.2-1
2470 - New upstream version
2472 * Sat Jul 09 2005 Florian octo Forster <octo@verplant.org> 1.4-1
2473 - Built on RedHat 7.3