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