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