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