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