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