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.
9 # q: And how can I do that ?
10 # a: By following these instructions, using mock:
12 # - install and configure mock (https://fedoraproject.org/wiki/Projects/Mock)
14 # - enable the EPEL repository (http://dl.fedoraproject.org/pub/epel/) in the
15 # configuration files for your target systems (/etc/mock/*.cfg).
17 # - fetch the desired collectd release file from https://collectd.org/files/
18 # and save it in your ~/rpmbuild/SOURCES/ directory (or build your own out of
19 # the git repository: ./build.sh && ./configure && make-dist-bz2)
21 # - copy this file in your ~/rpmbuild/SPECS/ directory. Make sure the
22 # "Version:" tag matches the version from the tarball.
24 # - build the SRPM first:
25 # mock -r centos-6-x86_64 --buildsrpm --spec ~/rpmbuild/SPECS/collectd.spec \
26 # --sources ~/rpmbuild/SOURCES/
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
32 # - you can also optionally enable/disable plugins which are disabled/enabled
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
38 %global _hardened_build 1
39 %{?perl_default_filter}
41 # plugins only buildable on RHEL6
42 # (NB: %{elN} macro is not available on RHEL < 6)
43 %{?el6:%global _has_libyajl 1}
44 %{?el6:%global _has_recent_libpcap 1}
45 %{?el6:%global _has_recent_sockios_h 1}
46 %{?el6:%global _has_recent_libganglia 1}
47 %{?el6:%global _has_working_libiptc 1}
48 %{?el6:%global _has_ip_vs_h 1}
49 %{?el6:%global _has_lvm2app_h 1}
50 %{?el6:%global _has_libmodbus 1}
51 %{?el6:%global _has_libudev 1}
52 %{?el6:%global _has_iproute 1}
53 %{?el6:%global _has_atasmart 1}
54 %{?el6:%global _has_hiredis 1}
55 %{?el6:%global _has_asm_msr_index 1}
57 %{?el7:%global _has_libyajl 1}
58 %{?el7:%global _has_recent_libpcap 1}
59 %{?el7:%global _has_recent_sockios_h 1}
60 %{?el7:%global _has_working_libiptc 1}
61 %{?el7:%global _has_ip_vs_h 1}
62 %{?el7:%global _has_lvm2app_h 1}
63 %{?el7:%global _has_libudev 1}
64 %{?el7:%global _has_recent_librrd 1}
65 %{?el7:%global _has_iproute 1}
66 %{?el7:%global _has_atasmart 1}
67 %{?el7:%global _has_hiredis 1}
68 %{?el7:%global _has_asm_msr_index 1}
69 %{?el7:%global _has_libmosquitto 1}
70 %{?el7:%global _has_libmodbus 1}
71 %{?el7:%global _has_xmms 1}
73 # plugins enabled by default
74 %define with_aggregation 0%{!?_without_aggregation:1}
75 %define with_amqp 0%{!?_without_amqp:1}
76 %define with_apache 0%{!?_without_apache:1}
77 %define with_apcups 0%{!?_without_apcups:1}
78 %define with_ascent 0%{!?_without_ascent:1}
79 %define with_battery 0%{!?_without_battery:1}
80 %define with_bind 0%{!?_without_bind:1}
81 %define with_ceph 0%{!?_without_ceph:0%{?_has_libyajl}}
82 %define with_cgroups 0%{!?_without_cgroups:1}
83 %define with_chrony 0%{!?_without_chrony:1}
84 %define with_conntrack 0%{!?_without_conntrack:1}
85 %define with_contextswitch 0%{!?_without_contextswitch:1}
86 %define with_cpu 0%{!?_without_cpu:1}
87 %define with_cpufreq 0%{!?_without_cpufreq:1}
88 %define with_csv 0%{!?_without_csv:1}
89 %define with_curl 0%{!?_without_curl:1}
90 %define with_curl_json 0%{!?_without_curl_json:0%{?_has_libyajl}}
91 %define with_curl_xml 0%{!?_without_curl_xml:1}
92 %define with_dbi 0%{!?_without_dbi:1}
93 %define with_df 0%{!?_without_df:1}
94 %define with_disk 0%{!?_without_disk:1}
95 %define with_dns 0%{!?_without_dns:0%{?_has_recent_libpcap}}
96 %define with_drbd 0%{!?_without_drbd:1}
97 %define with_email 0%{!?_without_email:1}
98 %define with_entropy 0%{!?_without_entropy:1}
99 %define with_ethstat 0%{!?_without_ethstat:0%{?_has_recent_sockios_h}}
100 %define with_exec 0%{!?_without_exec:1}
101 %define with_fhcount 0%{!?_without_fhcount:1}
102 %define with_filecount 0%{!?_without_filecount:1}
103 %define with_fscache 0%{!?_without_fscache:1}
104 %define with_gmond 0%{!?_without_gmond:0%{?_has_recent_libganglia}}
105 %define with_hddtemp 0%{!?_without_hddtemp:1}
106 %define with_interface 0%{!?_without_interface:1}
107 %define with_ipc 0%{!?_without_ipc:1}
108 %define with_ipmi 0%{!?_without_ipmi:1}
109 %define with_iptables 0%{!?_without_iptables:0%{?_has_working_libiptc}}
110 %define with_ipvs 0%{!?_without_ipvs:0%{?_has_ip_vs_h}}
111 %define with_irq 0%{!?_without_irq:1}
112 %define with_java 0%{!?_without_java:1}
113 %define with_load 0%{!?_without_load:1}
114 %define with_log_logstash 0%{!?_without_log_logstash:0%{?_has_libyajl}}
115 %define with_logfile 0%{!?_without_logfile:1}
116 %define with_lvm 0%{!?_without_lvm:0%{?_has_lvm2app_h}}
117 %define with_madwifi 0%{!?_without_madwifi:1}
118 %define with_mbmon 0%{!?_without_mbmon:1}
119 %define with_md 0%{!?_without_md:1}
120 %define with_memcachec 0%{!?_without_memcachec:1}
121 %define with_memcached 0%{!?_without_memcached:1}
122 %define with_memory 0%{!?_without_memory:1}
123 %define with_modbus 0%{!?_without_modbus:0%{?_has_libmodbus}}
124 %define with_mqtt 0%{!?_without_mqtt:0%{?_has_libmosquitto}}
125 %define with_multimeter 0%{!?_without_multimeter:1}
126 %define with_mysql 0%{!?_without_mysql:1}
127 %define with_netlink 0%{!?_without_netlink:0%{?_has_iproute}}
128 %define with_network 0%{!?_without_network:1}
129 %define with_nfs 0%{!?_without_nfs:1}
130 %define with_nginx 0%{!?_without_nginx:1}
131 %define with_notify_desktop 0%{!?_without_notify_desktop:1}
132 %define with_notify_email 0%{!?_without_notify_email:1}
133 %define with_notify_nagios 0%{!?_without_notify_nagios:1}
134 %define with_ntpd 0%{!?_without_ntpd:1}
135 %define with_numa 0%{!?_without_numa:1}
136 %define with_nut 0%{!?_without_nut:1}
137 %define with_olsrd 0%{!?_without_olsrd:1}
138 %define with_openldap 0%{!?_without_openldap:1}
139 %define with_openvpn 0%{!?_without_openvpn:1}
140 %define with_perl 0%{!?_without_perl:1}
141 %define with_pinba 0%{!?_without_pinba:1}
142 %define with_ping 0%{!?_without_ping:1}
143 %define with_postgresql 0%{!?_without_postgresql:1}
144 %define with_powerdns 0%{!?_without_powerdns:1}
145 %define with_processes 0%{!?_without_processes:1}
146 %define with_protocols 0%{!?_without_protocols:1}
147 %define with_python 0%{!?_without_python:1}
148 %define with_redis 0%{!?_without_redis:0%{?_has_hiredis}}
149 %define with_rrdcached 0%{!?_without_rrdcached:0%{?_has_recent_librrd}}
150 %define with_rrdtool 0%{!?_without_rrdtool:1}
151 %define with_sensors 0%{!?_without_sensors:1}
152 %define with_serial 0%{!?_without_serial:1}
153 %define with_smart 0%{!?_without_smart:0%{?_has_atasmart}}
154 %define with_snmp 0%{!?_without_snmp:1}
155 %define with_statsd 0%{!?_without_statsd:1}
156 %define with_swap 0%{!?_without_swap:1}
157 %define with_syslog 0%{!?_without_syslog:1}
158 %define with_table 0%{!?_without_table:1}
159 %define with_tail 0%{!?_without_tail:1}
160 %define with_tail_csv 0%{!?_without_tail_csv:1}
161 %define with_tcpconns 0%{!?_without_tcpconns:1}
162 %define with_teamspeak2 0%{!?_without_teamspeak2:1}
163 %define with_ted 0%{!?_without_ted:1}
164 %define with_thermal 0%{!?_without_thermal:1}
165 %define with_threshold 0%{!?_without_threshold:1}
166 %define with_turbostat 0%{!?_without_turbostat:0%{?_has_asm_msr_index}}
167 %define with_unixsock 0%{!?_without_unixsock:1}
168 %define with_uptime 0%{!?_without_uptime:1}
169 %define with_users 0%{!?_without_users:1}
170 %define with_uuid 0%{!?_without_uuid:1}
171 %define with_varnish 0%{!?_without_varnish:1}
172 %define with_virt 0%{!?_without_virt:1}
173 %define with_vmem 0%{!?_without_vmem:1}
174 %define with_vserver 0%{!?_without_vserver:1}
175 %define with_wireless 0%{!?_without_wireless:1}
176 %define with_write_graphite 0%{!?_without_write_graphite:1}
177 %define with_write_http 0%{!?_without_write_http:1}
178 %define with_write_log 0%{!?_without_write_log:1}
179 %define with_write_redis 0%{!?_without_write_redis:0%{?_has_hiredis}}
180 %define with_write_riemann 0%{!?_without_write_riemann:0%{?_has_recent_riemann_c_client}}
181 %define with_write_sensu 0%{!?_without_write_sensu:1}
182 %define with_write_tsdb 0%{!?_without_write_tsdb:1}
183 %define with_xmms 0%{!?_without_xmms:0%{?_has_xmms}}
184 %define with_zfs_arc 0%{!?_without_zfs_arc:1}
185 %define with_zookeeper 0%{!?_without_zookeeper:1}
187 # Plugins not built by default because of dependencies on libraries not
188 # available in RHEL or EPEL:
190 # plugin apple_sensors disabled, requires a Mac
191 %define with_apple_sensors 0%{!?_without_apple_sensors:0}
192 # plugin aquaero disabled, requires a libaquaero5
193 %define with_aquaero 0%{!?_without_aquaero:0}
194 # plugin barometer disabled, requires a libi2c
195 %define with_barometer 0%{!?_without_barometer:0}
196 # plugin lpar disabled, requires AIX
197 %define with_lpar 0%{!?_without_lpar:0}
198 # plugin mic disabled, requires Mic
199 %define with_mic 0%{!?_without_mic:0}
200 # plugin netapp disabled, requires libnetapp
201 %define with_netapp 0%{!?_without_netapp:0}
202 # plugin onewire disabled, requires libowfs
203 %define with_onewire 0%{!?_without_onewire:0}
204 # plugin oracle disabled, requires Oracle
205 %define with_oracle 0%{!?_without_oracle:0}
206 # plugin oracle disabled, requires BSD
207 %define with_pf 0%{!?_without_pf:0}
208 # plugin routeros disabled, requires librouteros
209 %define with_routeros 0%{!?_without_routeros:0}
210 # plugin sigrok disabled, requires libsigrok
211 %define with_sigrok 0%{!?_without_sigrok:0}
212 # plugin tape disabled, requires libkstat
213 %define with_tape 0%{!?_without_tape:0}
214 # plugin tokyotyrant disabled, requires tcrdb.h
215 %define with_tokyotyrant 0%{!?_without_tokyotyrant:0}
216 # plugin write_kafka disabled, requires librdkafka
217 %define with_write_kafka 0%{!?_without_write_kafka:0}
218 # plugin write_mongodb disabled, requires libmongoc
219 %define with_write_mongodb 0%{!?_without_write_mongodb:0}
220 # plugin xencpu disabled, requires xen-devel from non-default repo
221 %define with_xencpu 0%{!?_without_xencpu:0}
222 # plugin zone disabled, requires Solaris
223 %define with_zone 0%{!?_without_zone:0}
225 Summary: statistics collection and monitoring daemon
229 URL: http://collectd.org
230 Source: http://collectd.org/files/%{name}-%{version}.tar.bz2
232 Group: System Environment/Daemons
233 BuildRoot: %{_tmppath}/%{name}-%{version}-root
234 BuildRequires: libgcrypt-devel, kernel-headers, libtool-ltdl-devel, libcap-devel
235 Vendor: collectd development team <collectd@verplant.org>
238 Requires(pre): initscripts
239 Requires(post): systemd
240 Requires(preun): systemd
241 Requires(postun): systemd
243 Requires(post): chkconfig
244 Requires(preun): chkconfig, initscripts
245 Requires(postun): initscripts
249 collectd is a small daemon which collects system information periodically and
250 provides mechanisms to monitor and store the values in a variety of ways. It
251 is written in C for performance. Since the daemon doesn't need to start up
252 every time it wants to update the values it's very fast and easy on the
253 system. Also, the statistics are very fine grained since the files are updated
254 every 10 seconds by default.
258 Summary: AMQP plugin for collectd
259 Group: System Environment/Daemons
260 Requires: %{name}%{?_isa} = %{version}-%{release}
261 BuildRequires: librabbitmq-devel
263 The AMQP plugin transmits or receives values collected by collectd via the
264 Advanced Message Queuing Protocol (AMQP).
269 Summary: Apache plugin for collectd
270 Group: System Environment/Daemons
271 Requires: %{name}%{?_isa} = %{version}-%{release}
272 BuildRequires: curl-devel
274 This plugin collects data provided by Apache's `mod_status'.
279 Summary: aquaero plugin for collectd
280 Group: System Environment/Daemons
281 Requires: %{name}%{?_isa} = %{version}-%{release}
283 Various sensors in the Aquaero 5 watercooling board made by Aquacomputer.
288 Summary: Ascent plugin for collectd
289 Group: System Environment/Daemons
290 Requires: %{name}%{?_isa} = %{version}-%{release}
291 BuildRequires: libxml2-devel, curl-devel
293 The Ascent plugin reads and parses the statistics page of Ascent, a free and
294 open-source server software for the game World of Warcraft by Blizzard
298 %if %{with_barometer}
300 Summary: barometer plugin for collectd
301 Group: System Environment/Daemons
302 Requires: %{name}%{?_isa} = %{version}-%{release}
303 %description barometer
304 Collects pressure and temperature from digital barometers.
309 Summary: Bind plugin for collectd
310 Group: System Environment/Daemons
311 Requires: %{name}%{?_isa} = %{version}-%{release}
312 BuildRequires: libxml2-devel, curl-devel
314 The BIND plugin retrieves this information that's encoded in XML and provided
315 via HTTP and submits the values to collectd.
320 Summary: Ceph plugin for collectd
321 Group: System Environment/Daemons
322 Requires: %{name}%{?_isa} = %{version}-%{release}
323 BuildRequires: yajl-devel
325 Ceph plugin for collectd
330 Summary: Chrony plugin for collectd
331 Group: System Environment/Daemons
332 Requires: %{name}%{?_isa} = %{version}-%{release}
334 Chrony plugin for collectd
339 Summary: Curl plugin for collectd
340 Group: System Environment/Daemons
341 Requires: %{name}%{?_isa} = %{version}-%{release}
342 BuildRequires: curl-devel
344 The cURL plugin uses libcurl to read files and then parses them according to
348 %if %{with_curl_json}
350 Summary: Curl_json plugin for collectd
351 Group: System Environment/Daemons
352 Requires: %{name}%{?_isa} = %{version}-%{release}
353 BuildRequires: curl-devel, yajl-devel
354 %description curl_json
355 The cURL-JSON plugin queries JavaScript Object Notation (JSON) data using the
356 cURL library and parses it according to the user's configuration.
361 Summary: Curl_xml plugin for collectd
362 Group: System Environment/Daemons
363 Requires: %{name}%{?_isa} = %{version}-%{release}
364 BuildRequires: curl-devel, libxml2-devel
365 %description curl_xml
366 The cURL-XML plugin reads files using libcurl and parses it as Extensible
367 Markup Language (XML).
372 Summary: DBI plugin for collectd
373 Group: System Environment/Daemons
374 Requires: %{name}%{?_isa} = %{version}-%{release}
375 BuildRequires: libdbi-devel
377 The DBI plugin uses libdbi, a database abstraction library, to execute SQL
378 statements on a database and read back the result.
383 Summary: disk plugin for collectd
384 Group: System Environment/Daemons
385 Requires: %{name}%{?_isa} = %{version}-%{release}
386 %{?_has_libudev:BuildRequires: libudev-devel}
388 The "disk" plugin collects information about the usage of physical disks and
389 logical disks (partitions).
394 Summary: DNS plugin for collectd
395 Group: System Environment/Daemons
396 Requires: %{name}%{?_isa} = %{version}-%{release}, libpcap >= 1.0
397 BuildRequires: libpcap-devel >= 1.0
399 The DNS plugin has a similar functionality to dnstop: It uses libpcap to get a
400 copy of all traffic from/to port UDP/53 (that's the DNS port), interprets the
401 packets and collects statistics of your DNS traffic.
406 Summary: Email plugin for collectd
407 Group: System Environment/Daemons
408 Requires: %{name}%{?_isa} = %{version}-%{release}, spamassassin
410 This plugin collects data provided by spamassassin.
415 Summary: Gmond plugin for collectd
416 Group: System Environment/Daemons
417 Requires: %{name}%{?_isa} = %{version}-%{release}
418 BuildRequires: ganglia-devel
420 The gmond plugin subscribes to a Multicast group to receive data from gmond,
421 the client daemon of the Ganglia project.
426 Summary: Hddtemp plugin for collectd
427 Group: System Environment/Daemons
428 Requires: %{name}%{?_isa} = %{version}-%{release}, hddtemp
430 The HDDTemp plugin collects the temperature of hard disks. The temperatures are
431 provided via SMART and queried by the external hddtemp daemon.
436 Summary: IPMI plugin for collectd
437 Group: System Environment/Daemons
438 Requires: %{name}%{?_isa} = %{version}-%{release}
439 BuildRequires: OpenIPMI-devel
441 The IPMI plugin uses the OpenIPMI library to read hardware sensors from servers
442 using the Intelligent Platform Management Interface (IPMI).
447 Summary: IPtables plugin for collectd
448 Group: System Environment/Daemons
449 Requires: %{name}%{?_isa} = %{version}-%{release}
450 BuildRequires: iptables-devel
451 %description iptables
452 The IPtables plugin can gather statistics from your ip_tables based packet
453 filter (aka. firewall) for both the IPv4 and the IPv6 protocol. It can collect
454 the byte- and packet-counters of selected rules and submit them to collectd.
459 Summary: Java plugin for collectd
460 Group: System Environment/Daemons
461 Requires: %{name}%{?_isa} = %{version}-%{release}
462 BuildRequires: java-devel, jpackage-utils
463 Requires: java, jpackage-utils
465 This plugin for collectd allows plugins to be written in Java and executed
469 %if %{with_log_logstash}
470 %package log_logstash
471 Summary: log_logstash plugin for collectd
472 Group: System Environment/Daemons
473 Requires: %{name}%{?_isa} = %{version}-%{release}
474 BuildRequires: yajl-devel
475 %description log_logstash
476 This plugin logs in logstash JSON format
481 Summary: LVM plugin for collectd
482 Group: System Environment/Daemons
483 Requires: %{name}%{?_isa} = %{version}-%{release}
484 BuildRequires: lvm2-devel
486 This plugin collects size of “Logical Volumes” (LV) and “Volume Groups” (VG)
487 of Linux' “Logical Volume Manager” (LVM).
490 %if %{with_memcachec}
492 Summary: Memcachec plugin for collectd
493 Group: System Environment/Daemons
494 Requires: %{name}%{?_isa} = %{version}-%{release}
495 BuildRequires: libmemcached-devel
496 %description memcachec
497 The Memcachec plugin uses libmemcached to read statistics from a Memcached
498 instance. Note that another plugin, named `memcached', exists and does a
499 similar job, without requiring the installation of libmemcached.
504 Summary: mic plugin for collectd
505 Group: System Environment/Daemons
506 Requires: %{name}%{?_isa} = %{version}-%{release}
508 The mic plugin collects CPU usage, memory usage, temperatures and power
509 consumption from Intel Many Integrated Core (MIC) CPUs.
514 Summary: modbus plugin for collectd
515 Group: System Environment/Daemons
516 Requires: %{name}%{?_isa} = %{version}-%{release}
517 BuildRequires: libmodbus-devel
519 The modbus plugin collects values from Modbus/TCP enabled devices
524 Summary: MySQL plugin for collectd
525 Group: System Environment/Daemons
526 Requires: %{name}%{?_isa} = %{version}-%{release}
527 BuildRequires: mysql-devel
529 MySQL querying plugin. This plugin provides data of issued commands, called
530 handlers and database traffic.
535 Summary: mqtt plugin for collectd
536 Group: System Environment/Daemons
537 Requires: %{name}%{?_isa} = %{version}-%{release}
538 BuildRequires: mosquitto-devel
540 The MQTT plugin publishes and subscribes to MQTT topics.
545 Summary: netlink plugin for collectd
546 Group: System Environment/Daemons
547 Requires: %{name}%{?_isa} = %{version}-%{release}
548 BuildRequires: libmnl-devel, iproute-devel
550 The netlink plugin collects detailed network interface and routing statistics.
555 Summary: Nginx plugin for collectd
556 Group: System Environment/Daemons
557 Requires: %{name}%{?_isa} = %{version}-%{release}
558 BuildRequires: curl-devel
560 This plugin gets data provided by nginx.
563 %if %{with_notify_desktop}
564 %package notify_desktop
565 Summary: Notify_desktop plugin for collectd
566 Group: System Environment/Daemons
567 Requires: %{name}%{?_isa} = %{version}-%{release}
568 BuildRequires: libnotify-devel, gtk2-devel
569 %description notify_desktop
570 The Notify Desktop plugin uses libnotify to display notifications to the user
571 via the desktop notification specification, i. e. on an X display.
574 %if %{with_notify_email}
575 %package notify_email
576 Summary: Notify_email plugin for collectd
577 Group: System Environment/Daemons
578 Requires: %{name}%{?_isa} = %{version}-%{release}
579 BuildRequires: libesmtp-devel
580 %description notify_email
581 The Notify Email plugin uses libESMTP to send notifications to a configured
587 Summary: Nut plugin for collectd
588 Group: System Environment/Daemons
589 Requires: %{name}%{?_isa} = %{version}-%{release}
590 BuildRequires: nut-devel
592 This plugin for collectd provides Network UPS Tools support.
597 Summary: Openldap plugin for collectd
598 Group: System Environment/Daemons
599 Requires: %{name}%{?_isa} = %{version}-%{release}
600 BuildRequires: openldap-devel
601 %description openldap
602 This plugin reads monitoring information from OpenLDAP's cn=Monitor subtree.
607 Summary: Perl plugin for collectd
608 Group: System Environment/Daemons
609 Requires: %{name}%{?_isa} = %{version}-%{release}
610 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
612 BuildRequires: perl-ExtUtils-Embed
617 The Perl plugin embeds a Perl interpreter into collectd and exposes the
618 application programming interface (API) to Perl-scripts.
623 Summary: Pinba plugin for collectd
624 Group: System Environment/Daemons
625 Requires: %{name}%{?_isa} = %{version}-%{release}
626 BuildRequires: protobuf-c-devel
628 The Pinba plugin receives and dispatches timing values from Pinba, a profiling
634 Summary: Ping plugin for collectd
635 Group: System Environment/Daemons
636 Requires: %{name}%{?_isa} = %{version}-%{release}
637 BuildRequires: liboping-devel
639 The Ping plugin measures network latency using ICMP “echo requests”, usually
643 %if %{with_postgresql}
645 Summary: PostgreSQL plugin for collectd
646 Group: System Environment/Daemons
647 Requires: %{name}%{?_isa} = %{version}-%{release}
648 BuildRequires: postgresql-devel
649 %description postgresql
650 The PostgreSQL plugin connects to and executes SQL statements on a PostgreSQL
656 Summary: Python plugin for collectd
657 Group: System Environment/Daemons
658 Requires: %{name}%{?_isa} = %{version}-%{release}
660 BuildRequires: python-devel
662 BuildRequires: python26-devel
665 The Python plugin embeds a Python interpreter into collectd and exposes the
666 application programming interface (API) to Python-scripts.
671 Summary: Redis plugin for collectd
672 Group: System Environment/Daemons
673 Requires: %{name}%{?_isa} = %{version}-%{release}
674 BuildRequires: hiredis-devel
676 The Redis plugin connects to one or more instances of Redis, a key-value store,
677 and collects usage information using the hiredis library.
680 %if %{with_rrdcached}
682 Summary: RRDCached plugin for collectd
683 Group: System Environment/Daemons
684 Requires: %{name}%{?_isa} = %{version}-%{release}, rrdtool >= 1.4
685 BuildRequires: rrdtool-devel
686 %description rrdcached
687 The RRDCacheD plugin connects to the “RRD caching daemon”, rrdcached and
688 submits updates for RRD files to that daemon.
693 Summary: RRDtool plugin for collectd
694 Group: System Environment/Daemons
695 Requires: %{name}%{?_isa} = %{version}-%{release}
696 BuildRequires: rrdtool-devel
698 The RRDtool plugin writes values to RRD-files using librrd.
703 Summary: Sensors plugin for collectd
704 Group: System Environment/Daemons
705 Requires: %{name}%{?_isa} = %{version}-%{release}
706 BuildRequires: lm_sensors-devel
708 This plugin for collectd provides querying of sensors supported by lm_sensors.
713 Summary: sigrok plugin for collectd
714 Group: System Environment/Daemons
715 Requires: %{name}%{?_isa} = %{version}-%{release}
717 Uses libsigrok as a backend, allowing any sigrok-supported device to have its
718 measurements fed to collectd. This includes multimeters, sound level meters,
719 thermometers, and much more.
724 Summary: SMART plugin for collectd
725 Group: System Environment/Daemons
726 Requires: %{name}%{?_isa} = %{version}-%{release}
727 BuildRequires: libatasmart-devel
729 Collect SMART statistics, notably load cycle count, temperature and bad
735 Summary: SNMP plugin for collectd
736 Group: System Environment/Daemons
737 Requires: %{name}%{?_isa} = %{version}-%{release}
738 BuildRequires: net-snmp-devel
740 This plugin for collectd allows querying of network equipment using SNMP.
745 Summary: Varnish plugin for collectd
746 Group: System Environment/Daemons
747 Requires: %{name}%{?_isa} = %{version}-%{release}
748 BuildRequires: varnish-libs-devel
750 The Varnish plugin collects information about Varnish, an HTTP accelerator.
755 Summary: Virt plugin for collectd
756 Group: System Environment/Daemons
757 Requires: %{name}%{?_isa} = %{version}-%{release}
758 BuildRequires: libvirt-devel
760 This plugin collects information from virtualized guests.
763 %if %{with_write_http}
765 Summary: Write-HTTP plugin for collectd
766 Group: System Environment/Daemons
767 Requires: %{name}%{?_isa} = %{version}-%{release}
768 BuildRequires: curl-devel
769 %description write_http
770 The Write-HTTP plugin sends the values collected by collectd to a web-server
771 using HTTP POST requests.
774 %if %{with_write_kafka}
776 Summary: Write-kafka plugin for collectd
777 Group: System Environment/Daemons
778 Requires: %{name}%{?_isa} = %{version}-%{release}
779 BuildRequires: rdkafka-devel
780 %description write_kafka
781 The write_kafka plugin sends values to kafka, a distributed messaging system.
784 %if %{with_write_redis}
786 Summary: Write-Redis plugin for collectd
787 Group: System Environment/Daemons
788 Requires: %{name}%{?_isa} = %{version}-%{release}
789 BuildRequires: hiredis-devel
790 %description write_redis
791 The Write Redis plugin stores values in Redis, a “data structures server”.
794 %if %{with_write_riemann}
795 %package write_riemann
796 Summary: riemann plugin for collectd
797 Group: System Environment/Daemons
798 Requires: %{name}%{?_isa} = %{version}-%{release}
799 BuildRequires: protobuf-c-devel
800 %description write_riemann
801 The riemann plugin submits values to Riemann, an event stream processor.
806 Summary: xencpu plugin for collectd
807 Group: System Environment/Daemons
808 Requires: %{name}%{?_isa} = %{version}-%{release}
809 BuildRequires: xen-devel
811 The xencpu plugin collects CPU statistics from Xen.
816 Summary: XMMS plugin for collectd
817 Group: System Environment/Daemons
818 Requires: %{name}%{?_isa} = %{version}-%{release}
819 BuildRequires: xmms-devel
821 The xmms plugin collects information from the XMMS music player.
825 Summary: Web-based viewer for collectd
826 Group: System Environment/Daemons
827 Requires: %{name}%{?_isa} = %{version}-%{release}
829 %description collection3
830 collection3 is a graphing front-end for the RRD files created by and filled
831 with collectd. It is written in Perl and should be run as an CGI-script.
832 Graphs are generated on-the-fly, so no cron job or similar is necessary.
834 %package php-collection
835 Summary: collect php webfrontent
836 Group: System Environment/Daemons
837 Requires: collectd = %{version}-%{release}
840 Requires: php-rrdtool
841 %description php-collection
842 PHP graphing frontend for RRD files created by and filled with collectd.
845 Summary: Contrib files for collectd
846 Group: System Environment/Daemons
847 Requires: %{name}%{?_isa} = %{version}-%{release}
849 All the files found under contrib/ in the source tree are bundled in this
852 %package -n libcollectdclient
853 Summary: Collectd client library
854 Group: System Environment/Daemons
855 %description -n libcollectdclient
856 Collectd client library
858 %package -n libcollectdclient-devel
859 Summary: Development files for libcollectdclient
860 Group: System Environment/Daemons
862 Requires: libcollectdclient%{?_isa} = %{version}-%{release}
863 %description -n libcollectdclient-devel
864 Development files for libcollectdclient
866 %package -n collectd-utils
867 Summary: Collectd utilities
868 Group: System Environment/Daemons
869 Requires: libcollectdclient%{?_isa} = %{version}-%{release}
870 Requires: collectd%{?_isa} = %{version}-%{release}
871 %description -n collectd-utils
878 %if %{with_aggregation}
879 %define _with_aggregation --enable-aggregation
881 %define _with_aggregation --disable-aggregation
885 %define _with_amqp --enable-amqp
887 %define _with_amqp --disable-amqp
891 %define _with_apache --enable-apache
893 %define _with_apache --disable-apache
897 %define _with_apcups --enable-apcups
899 %define _with_apcups --disable-apcups
902 %if %{with_apple_sensors}
903 %define _with_apple_sensors --enable-apple_sensors
905 %define _with_apple_sensors --disable-apple_sensors
909 %define _with_aquaero --enable-aquaero
911 %define _with_aquaero --disable-aquaero
915 %define _with_ascent --enable-ascent
917 %define _with_ascent --disable-ascent
920 %if %{with_barometer}
921 %define _with_barometer --enable-barometer
923 %define _with_barometer --disable-barometer
927 %define _with_battery --enable-battery
929 %define _with_battery --disable-battery
933 %define _with_bind --enable-bind
935 %define _with_bind --disable-bind
939 %define _with_cgroups --enable-cgroups
941 %define _with_cgroups --disable-cgroups
945 %define _with_chrony --enable-chrony
947 %define _with_chrony --disable-chrony
950 %if %{with_conntrack}
951 %define _with_conntrack --enable-conntrack
953 %define _with_conntrack --disable-conntrack
956 %if %{with_contextswitch}
957 %define _with_contextswitch --enable-contextswitch
959 %define _with_contextswitch --disable-contextswitch
963 %define _with_cpu --enable-cpu
965 %define _with_cpu --disable-cpu
969 %define _with_cpufreq --enable-cpufreq
971 %define _with_cpufreq --disable-cpufreq
975 %define _with_csv --enable-csv
977 %define _with_csv --disable-csv
981 %define _with_ceph --enable-ceph
983 %define _with_ceph --disable-ceph
987 %define _with_curl --enable-curl
989 %define _with_curl --disable-curl
992 %if %{with_curl_json}
993 %define _with_curl_json --enable-curl_json
995 %define _with_curl_json --disable-curl_json
999 %define _with_curl_xml --enable-curl_xml
1001 %define _with_curl_xml --disable-curl_xml
1005 %define _with_dbi --enable-dbi
1007 %define _with_dbi --disable-dbi
1011 %define _with_df --enable-df
1013 %define _with_df --disable-df
1017 %define _with_disk --enable-disk
1019 %define _with_disk --disable-disk
1023 %define _with_dns --enable-dns
1025 %define _with_dns --disable-dns
1029 %define _with_drbd --enable-drbd
1031 %define _with_drbd --disable-drbd
1035 %define _with_email --enable-email
1037 %define _with_email --disable-email
1041 %define _with_entropy --enable-entropy
1043 %define _with_entropy --disable-entropy
1047 %define _with_ethstat --enable-ethstat
1049 %define _with_ethstat --disable-ethstat
1053 %define _with_exec --enable-exec
1055 %define _with_exec --disable-exec
1059 %define _with_fhcount --enable-fhcount
1061 %define _with_fhcount --disable-fhcount
1064 %if %{with_filecount}
1065 %define _with_filecount --enable-filecount
1067 %define _with_filecount --disable-filecount
1071 %define _with_fscache --enable-fscache
1073 %define _with_fscache --disable-fscache
1077 %define _with_gmond --enable-gmond
1079 %define _with_gmond --disable-gmond
1083 %define _with_hddtemp --enable-hddtemp
1085 %define _with_hddtemp --disable-hddtemp
1088 %if %{with_interface}
1089 %define _with_interface --enable-interface
1091 %define _with_interface --disable-interface
1095 %define _with_ipc --enable-ipc
1097 %define _with_ipc --disable-ipc
1101 %define _with_ipmi --enable-ipmi
1103 %define _with_ipmi --disable-ipmi
1106 %if %{with_iptables}
1107 %define _with_iptables --enable-iptables
1109 %define _with_iptables --disable-iptables
1113 %define _with_ipvs --enable-ipvs
1115 %define _with_ipvs --disable-ipvs
1119 %define _with_irq --enable-irq
1121 %define _with_irq --disable-irq
1125 %define _with_java --enable-java --with-java=%{java_home}/
1127 %define _with_java --disable-java
1131 %define _with_virt --enable-virt
1133 %define _with_virt --disable-virt
1137 %define _with_load --enable-load
1139 %define _with_load --disable-load
1143 %define _with_logfile --enable-logfile
1145 %define _with_logfile --disable-logfile
1148 %if %{with_log_logstash}
1149 %define _with_log_logstash --enable-log_logstash
1151 %define _with_log_logstash --disable-log_logstash
1155 %define _with_lpar --enable-lpar
1157 %define _with_lpar --disable-lpar
1161 %define _with_lvm --enable-lvm
1163 %define _with_lvm --disable-lvm
1167 %define _with_madwifi --enable-madwifi
1169 %define _with_madwifi --disable-madwifi
1173 %define _with_mbmon --enable-mbmon
1175 %define _with_mbmon --disable-mbmon
1179 %define _with_md --enable-md
1181 %define _with_md --disable-md
1184 %if %{with_memcachec}
1185 %define _with_memcachec --enable-memcachec
1187 %define _with_memcachec --disable-memcachec
1190 %if %{with_memcached}
1191 %define _with_memcached --enable-memcached
1193 %define _with_memcached --disable-memcached
1197 %define _with_memory --enable-memory
1199 %define _with_memory --disable-memory
1203 %define _with_mic --enable-mic
1205 %define _with_mic --disable-mic
1209 %define _with_modbus --enable-modbus
1211 %define _with_modbus --disable-modbus
1214 %if %{with_multimeter}
1215 %define _with_multimeter --enable-multimeter
1217 %define _with_multimeter --disable-multimeter
1221 %define _with_mqtt --enable-mqtt
1223 %define _with_mqtt --disable-mqtt
1227 %define _with_mysql --enable-mysql
1229 %define _with_mysql --disable-mysql
1233 %define _with_netapp --enable-netapp
1235 %define _with_netapp --disable-netapp
1239 %define _with_netlink --enable-netlink
1241 %define _with_netlink --disable-netlink
1245 %define _with_network --enable-network
1247 %define _with_network --disable-network
1251 %define _with_nfs --enable-nfs
1253 %define _with_nfs --disable-nfs
1257 %define _with_nginx --enable-nginx
1259 %define _with_nginx --disable-nginx
1262 %if %{with_notify_desktop}
1263 %define _with_notify_desktop --enable-notify_desktop
1265 %define _with_notify_desktop --disable-notify_desktop
1268 %if %{with_notify_email}
1269 %define _with_notify_email --enable-notify_email
1271 %define _with_notify_email --disable-notify_email
1274 %if %{with_notify_nagios}
1275 %define _with_notify_nagios --enable-notify_nagios
1277 %define _with_notify_nagios --disable-notify_nagios
1281 %define _with_ntpd --enable-ntpd
1283 %define _with_ntpd --disable-ntpd
1287 %define _with_numa --enable-numa
1289 %define _with_numa --disable-numa
1293 %define _with_nut --enable-nut
1295 %define _with_nut --disable-nut
1299 %define _with_olsrd --enable-olsrd
1301 %define _with_olsrd --disable-olsrd
1305 %define _with_onewire --enable-onewire
1307 %define _with_onewire --disable-onewire
1310 %if %{with_openldap}
1311 %define _with_openldap --enable-openldap
1313 %define _with_openldap --disable-openldap
1317 %define _with_openvpn --enable-openvpn
1319 %define _with_openvpn --disable-openvpn
1323 %define _with_oracle --enable-oracle
1325 %define _with_oracle --disable-oracle
1329 %define _with_perl --enable-perl --with-perl-bindings="INSTALLDIRS=vendor"
1331 %define _with_perl --disable-perl
1335 %define _with_pf --enable-pf
1337 %define _with_pf --disable-pf
1341 %define _with_pinba --enable-pinba
1343 %define _with_pinba --disable-pinba
1347 %define _with_ping --enable-ping
1349 %define _with_ping --disable-ping
1352 %if %{with_postgresql}
1353 %define _with_postgresql --enable-postgresql
1355 %define _with_postgresql --disable-postgresql
1358 %if %{with_powerdns}
1359 %define _with_powerdns --enable-powerdns
1361 %define _with_powerdns --disable-powerdns
1364 %if %{with_processes}
1365 %define _with_processes --enable-processes
1367 %define _with_processes --disable-processes
1370 %if %{with_protocols}
1371 %define _with_protocols --enable-protocols
1373 %define _with_protocols --disable-protocols
1378 %define _with_python --enable-python
1380 %define _with_python --enable-python --with-python=%{_bindir}/python2.6
1383 %define _with_python --disable-python
1387 %define _with_redis --enable-redis
1389 %define _with_redis --disable-redis
1392 %if %{with_routeros}
1393 %define _with_routeros --enable-routeros
1395 %define _with_routeros --disable-routeros
1398 %if %{with_rrdcached}
1399 %define _with_rrdcached --enable-rrdcached
1401 %define _with_rrdcached --disable-rrdcached
1405 %define _with_rrdtool --enable-rrdtool
1407 %define _with_rrdtool --disable-rrdtool
1411 %define _with_sensors --enable-sensors
1413 %define _with_sensors --disable-sensors
1417 %define _with_serial --enable-serial
1419 %define _with_serial --disable-serial
1423 %define _with_sigrok --enable-sigrok
1425 %define _with_sigrok --disable-sigrok
1429 %define _with_smart --enable-smart
1431 %define _with_smart --disable-smart
1435 %define _with_snmp --enable-snmp
1437 %define _with_snmp --disable-snmp
1441 %define _with_statsd --enable-statsd
1443 %define _with_statsd --disable-statsd
1447 %define _with_swap --enable-swap
1449 %define _with_swap --disable-swap
1453 %define _with_syslog --enable-syslog
1455 %define _with_syslog --disable-syslog
1459 %define _with_table --enable-table
1461 %define _with_table --disable-table
1465 %define _with_tail --enable-tail
1467 %define _with_tail --disable-tail
1470 %if %{with_tail_csv}
1471 %define _with_tail_csv --enable-tail_csv
1473 %define _with_tail_csv --disable-tail_csv
1477 %define _with_tape --enable-tape
1479 %define _with_tape --disable-tape
1482 %if %{with_tcpconns}
1483 %define _with_tcpconns --enable-tcpconns
1485 %define _with_tcpconns --disable-tcpconns
1488 %if %{with_teamspeak2}
1489 %define _with_teamspeak2 --enable-teamspeak2
1491 %define _with_teamspeak2 --disable-teamspeak2
1495 %define _with_ted --enable-ted
1497 %define _with_ted --disable-ted
1501 %define _with_thermal --enable-thermal
1503 %define _with_thermal --disable-thermal
1506 %if %{with_threshold}
1507 %define _with_threshold --enable-threshold
1509 %define _with_threshold --disable-threshold
1512 %if %{with_tokyotyrant}
1513 %define _with_tokyotyrant --enable-tokyotyrant
1515 %define _with_tokyotyrant --disable-tokyotyrant
1518 %if %{with_turbostat}
1519 %define _with_turbostat --enable-turbostat
1521 %define _with_turbostat --disable-turbostat
1524 %if %{with_unixsock}
1525 %define _with_unixsock --enable-unixsock
1527 %define _with_unixsock --disable-unixsock
1531 %define _with_uptime --enable-uptime
1533 %define _with_uptime --disable-uptime
1537 %define _with_users --enable-users
1539 %define _with_users --disable-users
1543 %define _with_uuid --enable-uuid
1545 %define _with_uuid --disable-uuid
1549 %define _with_varnish --enable-varnish
1551 %define _with_varnish --disable-varnish
1555 %define _with_vmem --enable-vmem
1557 %define _with_vmem --disable-vmem
1561 %define _with_vserver --enable-vserver
1563 %define _with_vserver --disable-vserver
1566 %if %{with_wireless}
1567 %define _with_wireless --enable-wireless
1569 %define _with_wireless --disable-wireless
1572 %if %{with_write_graphite}
1573 %define _with_write_graphite --enable-write_graphite
1575 %define _with_write_graphite --disable-write_graphite
1578 %if %{with_write_http}
1579 %define _with_write_http --enable-write_http
1581 %define _with_write_http --disable-write_http
1584 %if %{with_write_kafka}
1585 %define _with_write_kafka --enable-write_kafka
1587 %define _with_write_kafka --disable-write_kafka
1590 %if %{with_write_log}
1591 %define _with_write_log --enable-write_log
1593 %define _with_write_log --disable-write_log
1596 %if %{with_write_mongodb}
1597 %define _with_write_mongodb --enable-write_mongodb
1599 %define _with_write_mongodb --disable-write_mongodb
1602 %if %{with_write_redis}
1603 %define _with_write_redis --enable-write_redis
1605 %define _with_write_redis --disable-write_redis
1608 %if %{with_write_riemann}
1609 %define _with_write_riemann --enable-write_riemann
1611 %define _with_write_riemann --disable-write_riemann
1614 %if %{with_write_sensu}
1615 %define _with_write_sensu --enable-write_sensu
1617 %define _with_write_sensu --disable-write_sensu
1620 %if %{with_write_tsdb}
1621 %define _with_write_tsdb --enable-write_tsdb
1623 %define _with_write_tsdb --disable-write_tsdb
1627 %define _with_xencpu --enable-xencpu
1629 %define _with_xencpu --disable-xencpu
1633 %define _with_xmms --enable-xmms
1635 %define _with_xmms --disable-xmms
1639 %define _with_zfs_arc --enable-zfs_arc
1641 %define _with_zfs_arc --disable-zfs_arc
1645 %define _with_zone --enable-zone
1647 %define _with_zone --disable-zone
1650 %if %{with_zookeeper}
1651 %define _with_zookeeper --enable-zookeeper
1653 %define _with_zookeeper --disable-zookeeper
1656 %configure CFLAGS="%{optflags} -DLT_LAZY_OR_NOW=\"RTLD_LAZY|RTLD_GLOBAL\"" \
1658 --without-included-ltdl \
1659 --enable-all-plugins=yes \
1660 --enable-match_empty_counter \
1661 --enable-match_hashed \
1662 --enable-match_regex \
1663 --enable-match_timediff \
1664 --enable-match_value \
1665 --enable-target_notification \
1666 --enable-target_replace \
1667 --enable-target_scale \
1668 --enable-target_set \
1669 --enable-target_v5upgrade \
1670 %{?_with_aggregation} \
1674 %{?_with_apple_sensors} \
1677 %{?_with_barometer} \
1683 %{?_with_conntrack} \
1684 %{?_with_contextswitch} \
1688 %{?_with_curl_json} \
1689 %{?_with_curl_xml} \
1701 %{?_with_filecount} \
1705 %{?_with_interface} \
1708 %{?_with_iptables} \
1713 %{?_with_log_logstash} \
1720 %{?_with_memcachec} \
1721 %{?_with_memcached} \
1726 %{?_with_multimeter} \
1733 %{?_with_notify_desktop} \
1734 %{?_with_notify_email} \
1735 %{?_with_notify_nagios} \
1741 %{?_with_openldap} \
1748 %{?_with_postgresql} \
1749 %{?_with_powerdns} \
1750 %{?_with_processes} \
1751 %{?_with_protocols} \
1754 %{?_with_routeros} \
1755 %{?_with_rrdcached} \
1766 %{?_with_tail_csv} \
1769 %{?_with_tcpconns} \
1770 %{?_with_teamspeak2} \
1773 %{?_with_threshold} \
1774 %{?_with_tokyotyrant} \
1775 %{?_with_turbostat} \
1776 %{?_with_unixsock} \
1785 %{?_with_write_graphite} \
1786 %{?_with_write_http} \
1787 %{?_with_write_http} \
1788 %{?_with_write_kafka} \
1789 %{?_with_write_log} \
1790 %{?_with_write_mongodb} \
1791 %{?_with_write_redis} \
1792 %{?_with_write_riemann} \
1793 %{?_with_write_sensu} \
1794 %{?_with_write_tsdb} \
1802 %{__make} %{?_smp_mflags}
1807 %{__make} install DESTDIR=%{buildroot}
1809 %{__install} -Dp -m0644 contrib/systemd.collectd.service %{buildroot}%{_unitdir}/collectd.service
1811 %{__install} -Dp -m0755 contrib/redhat/init.d-collectd %{buildroot}%{_initrddir}/collectd
1813 %{__install} -Dp -m0644 src/collectd.conf %{buildroot}%{_sysconfdir}/collectd.conf
1814 %{__install} -d %{buildroot}%{_sharedstatedir}/collectd/
1815 %{__install} -d %{buildroot}%{_sysconfdir}/collectd.d/
1817 %{__mkdir} -p %{buildroot}%{_localstatedir}/www
1818 %{__mkdir} -p %{buildroot}/%{_sysconfdir}/httpd/conf.d
1820 %{__mv} contrib/collection3 %{buildroot}%{_localstatedir}/www
1821 %{__mv} contrib/redhat/collection3.conf %{buildroot}/%{_sysconfdir}/httpd/conf.d/
1823 %{__mv} contrib/php-collection %{buildroot}%{_localstatedir}/www
1824 %{__mv} contrib/redhat/php-collection.conf %{buildroot}/%{_sysconfdir}/httpd/conf.d/
1827 find contrib/ -type f -exec %{__chmod} a-x {} \;
1828 # *.la files shouldn't be distributed.
1829 rm -f %{buildroot}/%{_libdir}/{collectd/,}*.la
1831 # Remove Perl hidden .packlist files.
1832 find %{buildroot} -type f -name .packlist -delete
1833 # Remove Perl temporary file perllocal.pod
1834 find %{buildroot} -type f -name perllocal.pod -delete
1837 rm -f %{buildroot}%{_datadir}/collectd/java/collectd-api.jar
1838 rm -f %{buildroot}%{_datadir}/collectd/java/generic-jmx.jar
1839 rm -f %{buildroot}%{_mandir}/man5/collectd-java.5*
1843 rm -f %{buildroot}%{_mandir}/man5/collectd-perl.5*
1844 rm -f %{buildroot}%{_mandir}/man3/Collectd::Unixsock.3pm*
1845 rm -fr %{buildroot}/usr/lib/perl5/
1848 %if ! %{with_postgresql}
1849 rm -f %{buildroot}%{_datadir}/collectd/postgresql_default.conf
1852 %if ! %{with_python}
1853 rm -f %{buildroot}%{_mandir}/man5/collectd-python.5*
1857 rm -f %{buildroot}%{_mandir}/man5/collectd-snmp.5*
1866 # stop sysv-based instance before upgrading to systemd
1867 if [ $1 -eq 2 ] && [ -f /var/lock/subsys/collectd ]; then
1868 SYSTEMCTL_SKIP_REDIRECT=1 %{_initddir}/collectd stop >/dev/null 2>&1 || :
1874 if [ $1 -eq 2 ]; then
1875 /usr/bin/systemctl daemon-reload >/dev/null 2>&1 || :
1877 %systemd_post collectd.service
1879 /sbin/chkconfig --add collectd || :
1884 %systemd_preun collectd.service
1886 # stop collectd only when uninstalling
1887 if [ $1 -eq 0 ]; then
1888 /sbin/service collectd stop >/dev/null 2>&1 || :
1889 /sbin/chkconfig --del collectd || :
1895 %systemd_postun_with_restart collectd.service
1897 # restart collectd only when upgrading
1898 if [ $1 -eq 1 ]; then
1899 /sbin/service collectd condrestart >/dev/null 2>&1 || :
1903 %post -n libcollectdclient -p /sbin/ldconfig
1904 %postun -n libcollectdclient -p /sbin/ldconfig
1908 %doc AUTHORS COPYING ChangeLog README
1909 %config(noreplace) %{_sysconfdir}/collectd.conf
1911 %{_unitdir}/collectd.service
1913 %{_initrddir}/collectd
1915 %{_sbindir}/collectd
1916 %{_sbindir}/collectdmon
1917 %{_datadir}/collectd/types.db
1918 %{_sharedstatedir}/collectd
1919 %{_mandir}/man1/collectd.1*
1920 %{_mandir}/man1/collectdmon.1*
1921 %{_mandir}/man5/collectd-email.5*
1922 %{_mandir}/man5/collectd-exec.5*
1923 %{_mandir}/man5/collectd-threshold.5*
1924 %{_mandir}/man5/collectd-unixsock.5*
1925 %{_mandir}/man5/collectd.conf.5*
1926 %{_mandir}/man5/types.db.5*
1928 # all plugins bundled with the main collectd package
1929 %{_libdir}/%{name}/match_empty_counter.so
1930 %{_libdir}/%{name}/match_hashed.so
1931 %{_libdir}/%{name}/match_regex.so
1932 %{_libdir}/%{name}/match_timediff.so
1933 %{_libdir}/%{name}/match_value.so
1934 %{_libdir}/%{name}/target_notification.so
1935 %{_libdir}/%{name}/target_replace.so
1936 %{_libdir}/%{name}/target_scale.so
1937 %{_libdir}/%{name}/target_set.so
1938 %{_libdir}/%{name}/target_v5upgrade.so
1940 %if %{with_aggregation}
1941 %{_libdir}/%{name}/aggregation.so
1944 %{_libdir}/%{name}/apcups.so
1947 %{_libdir}/%{name}/battery.so
1950 %{_libdir}/%{name}/cgroups.so
1952 %if %{with_conntrack}
1953 %{_libdir}/%{name}/conntrack.so
1955 %if %{with_contextswitch}
1956 %{_libdir}/%{name}/contextswitch.so
1959 %{_libdir}/%{name}/cpu.so
1962 %{_libdir}/%{name}/cpufreq.so
1965 %{_libdir}/%{name}/csv.so
1968 %{_libdir}/%{name}/df.so
1971 %{_libdir}/%{name}/drbd.so
1974 %{_libdir}/%{name}/ethstat.so
1977 %{_libdir}/%{name}/entropy.so
1980 %{_libdir}/%{name}/exec.so
1983 %{_libdir}/%{name}/fhcount.so
1985 %if %{with_filecount}
1986 %{_libdir}/%{name}/filecount.so
1989 %{_libdir}/%{name}/fscache.so
1991 %if %{with_interface}
1992 %{_libdir}/%{name}/interface.so
1995 %{_libdir}/%{name}/ipc.so
1998 %{_libdir}/%{name}/ipvs.so
2001 %{_libdir}/%{name}/irq.so
2004 %{_libdir}/%{name}/load.so
2007 %{_libdir}/%{name}/logfile.so
2010 %{_libdir}/%{name}/madwifi.so
2013 %{_libdir}/%{name}/mbmon.so
2016 %{_libdir}/%{name}/md.so
2018 %if %{with_memcached}
2019 %{_libdir}/%{name}/memcached.so
2022 %{_libdir}/%{name}/memory.so
2024 %if %{with_multimeter}
2025 %{_libdir}/%{name}/multimeter.so
2028 %{_libdir}/%{name}/network.so
2031 %{_libdir}/%{name}/nfs.so
2033 %if %{with_notify_nagios}
2034 %{_libdir}/%{name}/notify_nagios.so
2037 %{_libdir}/%{name}/ntpd.so
2040 %{_libdir}/%{name}/numa.so
2043 %{_libdir}/%{name}/openvpn.so
2046 %{_libdir}/%{name}/olsrd.so
2048 %if %{with_powerdns}
2049 %{_libdir}/%{name}/powerdns.so
2051 %if %{with_processes}
2052 %{_libdir}/%{name}/processes.so
2054 %if %{with_protocols}
2055 %{_libdir}/%{name}/protocols.so
2058 %{_libdir}/%{name}/serial.so
2061 %{_libdir}/%{name}/statsd.so
2064 %{_libdir}/%{name}/swap.so
2067 %{_libdir}/%{name}/syslog.so
2070 %{_libdir}/%{name}/table.so
2073 %{_libdir}/%{name}/tail.so
2075 %if %{with_tail_csv}
2076 %{_libdir}/%{name}/tail_csv.so
2078 %if %{with_tcpconns}
2079 %{_libdir}/%{name}/tcpconns.so
2081 %if %{with_teamspeak2}
2082 %{_libdir}/%{name}/teamspeak2.so
2085 %{_libdir}/%{name}/ted.so
2088 %{_libdir}/%{name}/thermal.so
2090 %if %{with_threshold}
2091 %{_libdir}/%{name}/threshold.so
2093 %if %{with_turbostat}
2094 %{_libdir}/%{name}/turbostat.so
2096 %if %{with_unixsock}
2097 %{_libdir}/%{name}/unixsock.so
2100 %{_libdir}/%{name}/uptime.so
2103 %{_libdir}/%{name}/users.so
2106 %{_libdir}/%{name}/uuid.so
2109 %{_libdir}/%{name}/vmem.so
2112 %{_libdir}/%{name}/vserver.so
2114 %if %{with_wireless}
2115 %{_libdir}/%{name}/wireless.so
2117 %if %{with_write_graphite}
2118 %{_libdir}/%{name}/write_graphite.so
2120 %if %{with_write_log}
2121 %{_libdir}/%{name}/write_log.so
2123 %if %{with_write_sensu}
2124 %{_libdir}/%{name}/write_sensu.so
2126 %if %{with_write_tsdb}
2127 %{_libdir}/%{name}/write_tsdb.so
2130 %{_libdir}/%{name}/zfs_arc.so
2132 %if %{with_zookeeper}
2133 %{_libdir}/%{name}/zookeeper.so
2136 %files -n libcollectdclient-devel
2137 %{_includedir}/collectd/client.h
2138 %{_includedir}/collectd/network.h
2139 %{_includedir}/collectd/network_buffer.h
2140 %{_includedir}/collectd/lcc_features.h
2141 %{_libdir}/pkgconfig/libcollectdclient.pc
2142 %{_libdir}/libcollectdclient.so
2144 %files -n libcollectdclient
2145 %{_libdir}/libcollectdclient.so.*
2147 %files -n collectd-utils
2148 %{_bindir}/collectd-nagios
2149 %{_bindir}/collectd-tg
2150 %{_bindir}/collectdctl
2151 %{_mandir}/man1/collectdctl.1*
2152 %{_mandir}/man1/collectd-nagios.1*
2153 %{_mandir}/man1/collectd-tg.1*
2157 %{_libdir}/%{name}/amqp.so
2162 %{_libdir}/%{name}/apache.so
2167 %{_libdir}/%{name}/aquaero.so
2172 %{_libdir}/%{name}/ascent.so
2175 %if %{with_barometer}
2177 %{_libdir}/%{name}/barometer.so
2182 %{_libdir}/%{name}/bind.so
2187 %{_libdir}/%{name}/ceph.so
2192 %{_libdir}/%{name}/chrony.so
2197 %{_libdir}/%{name}/curl.so
2200 %if %{with_curl_json}
2202 %{_libdir}/%{name}/curl_json.so
2205 %if %{with_curl_xml}
2207 %{_libdir}/%{name}/curl_xml.so
2212 %{_libdir}/%{name}/disk.so
2217 %{_libdir}/%{name}/dns.so
2222 %{_libdir}/%{name}/dbi.so
2227 %{_libdir}/%{name}/email.so
2232 %{_libdir}/%{name}/gmond.so
2237 %{_libdir}/%{name}/hddtemp.so
2242 %{_libdir}/%{name}/ipmi.so
2245 %if %{with_iptables}
2247 %{_libdir}/%{name}/iptables.so
2252 %{_datadir}/collectd/java/collectd-api.jar
2253 %{_datadir}/collectd/java/generic-jmx.jar
2254 %{_libdir}/%{name}/java.so
2255 %{_mandir}/man5/collectd-java.5*
2260 %{_libdir}/%{name}/virt.so
2263 %if %{with_log_logstash}
2265 %{_libdir}/%{name}/log_logstash.so
2270 %{_libdir}/%{name}/lvm.so
2273 %if %{with_memcachec}
2275 %{_libdir}/%{name}/memcachec.so
2280 %{_libdir}/%{name}/mic.so
2285 %{_libdir}/%{name}/modbus.so
2290 %{_libdir}/%{name}/mqtt.so
2295 %{_libdir}/%{name}/mysql.so
2300 %{_libdir}/%{name}/netlink.so
2305 %{_libdir}/%{name}/nginx.so
2308 %if %{with_notify_desktop}
2309 %files notify_desktop
2310 %{_libdir}/%{name}/notify_desktop.so
2313 %if %{with_notify_email}
2315 %{_libdir}/%{name}/notify_email.so
2320 %{_libdir}/%{name}/nut.so
2323 %if %{with_openldap}
2325 %{_libdir}/%{name}/openldap.so
2330 %{perl_vendorlib}/Collectd.pm
2331 %{perl_vendorlib}/Collectd/
2332 %{_mandir}/man3/Collectd::Unixsock.3pm*
2333 %{_mandir}/man5/collectd-perl.5*
2334 %{_libdir}/%{name}/perl.so
2339 %{_libdir}/%{name}/pinba.so
2344 %{_libdir}/%{name}/ping.so
2347 %if %{with_postgresql}
2349 %{_datadir}/collectd/postgresql_default.conf
2350 %{_libdir}/%{name}/postgresql.so
2355 %{_mandir}/man5/collectd-python*
2356 %{_libdir}/%{name}/python.so
2361 %{_libdir}/%{name}/redis.so
2364 %if %{with_rrdcached}
2366 %{_libdir}/%{name}/rrdcached.so
2371 %{_libdir}/%{name}/rrdtool.so
2376 %{_libdir}/%{name}/sensors.so
2381 %{_libdir}/%{name}/sigrok.so
2386 %{_libdir}/%{name}/smart.so
2391 %{_mandir}/man5/collectd-snmp.5*
2392 %{_libdir}/%{name}/snmp.so
2397 %{_libdir}/%{name}/varnish.so
2400 %if %{with_write_http}
2402 %{_libdir}/%{name}/write_http.so
2405 %if %{with_write_kafka}
2407 %{_libdir}/%{name}/write_kafka.so
2410 %if %{with_write_redis}
2412 %{_libdir}/%{name}/write_redis.so
2415 %if %{with_write_riemann}
2416 %files write_riemann
2417 %{_libdir}/%{name}/write_riemann.so
2422 %{_libdir}/%{name}/xencpu.so
2427 %{_libdir}/%{name}/xmms.so
2431 %{_localstatedir}/www/collection3
2432 %{_sysconfdir}/httpd/conf.d/collection3.conf
2434 %files php-collection
2435 %{_localstatedir}/www/php-collection
2436 %{_sysconfdir}/httpd/conf.d/php-collection.conf
2442 * Sat Jun 04 2016 Ruben Kerkhof <ruben@rubenkerkhof.com> 5.5.1-1
2443 - New upstream version
2444 - New plugins enabled by default: chrony, mqtt, notify_nagios
2445 - New plugins disabled by default: zone, xencpu
2447 * Wed May 27 2015 Marc Fournier <marc.fournier@camptocamp.com> 5.5.0-1
2448 - New upstream version
2449 - New plugins enabled by default: ceph, drbd, log_logstash, write_tsdb, smart,
2450 openldap, redis, write_redis, zookeeper, write_log, write_sensu, ipc,
2452 - New plugins disabled by default: barometer, write_kafka
2453 - Enable zfs_arc, now supported on Linux
2454 - Install disk plugin in a dedicated package, as it depends on libudev
2455 - use systemd on EL7, sysvinit on EL6 & EL5
2456 - Install collectdctl, collectd-tg and collectd-nagios in collectd-utils.rpm
2457 - Add build-dependency on libcap-devel
2459 * Mon Aug 19 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.4.2-1
2460 - New upstream version
2461 - Build netlink plugin by default
2462 - Enable cgroups, lvm and statsd plugins
2463 - Enable (but don't build by default) mic, aquaero and sigrok plugins
2464 - Enable modbus, memcachec and xmms plugins on RHEL7
2466 * Tue Aug 06 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.3.1-1
2467 - New upstream version
2468 - Added RHEL5 support:
2469 * conditionally disable plugins not building on this platform
2470 * add/specify some build dependencies and options
2471 * replace some RPM macros not available on this platform
2472 - Removed duplicate --enable-aggregation
2473 - Added some comments & usage examples
2474 - Replaced a couple of "Buildrequires" by "BuildRequires"
2475 - Enabled modbus plugin on RHEL6
2476 - Enabled netlink plugin on RHEL6 and RHEL7
2477 - Allow perl plugin to build on RHEL5
2478 - Add support for RHEL7
2479 - Misc perl-related improvements:
2480 * prevent rpmbuild from extracting dependencies from files in /usr/share/doc
2481 * don't package collection3 and php-collection twice
2482 * keep perl scripts from contrib/ in collectd-contrib
2484 * Wed Apr 10 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.3.0-1
2485 - New upstream version
2486 - Enabled write_riemann plugin
2487 - Enabled tail_csv plugin
2488 - Installed collectd-tc manpage
2490 * Fri Jan 11 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.2.0-3
2491 - remove dependency on libstatgrab, which isn't required on linux
2493 * Thu Jan 03 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.2.0-2
2494 - collection3 and php-collection viewers are now in separate packages
2496 * Fri Dec 21 2012 Marc Fournier <marc.fournier@camptocamp.com> 5.2.0-1
2497 - New upstream version
2498 - Enabled aggregation plugin
2499 - Installed collectd-tc
2500 - Added network.h and network_buffer.h to libcollectdclient-devel
2501 - Moved libxml2-devel and libcurl-devel BRs to relevant plugins sections
2502 - Moved libcollectdclient.so from libcollectdclient-devel to libcollectdclient
2503 - Added rrdcached and redis plugin descriptions
2504 - Mentioned new pf plugin in disabled plugins list
2506 * Sun Nov 18 2012 Ruben Kerkhof <ruben@tilaa.nl> 5.1.0-3
2507 - Follow Fedora Packaging Guidelines in java subpackage
2509 * Sat Nov 17 2012 Ruben Kerkhof <ruben@tilaa.nl> 5.1.0-2
2510 - Move perl stuff to perl_vendorlib
2511 - Replace hardcoded paths with macros
2512 - Remove unnecessary Requires
2513 - Removed .a and .la files
2514 - Some other small cleanups
2516 * Fri Nov 16 2012 Marc Fournier <marc.fournier@camptocamp.com> 5.1.0-1
2517 - New upstream version
2518 - Changes to support 5.1.0
2519 - Enabled all buildable plugins based on libraries available on EL6 + EPEL
2520 - All plugins requiring external libraries are now shipped in separate
2522 - No longer treat Java plugin as an exception, correctly set $JAVA_HOME during
2523 the build process + ensure build deps are installed.
2524 - Dropped per-plugin configuration files, as they tend to diverge from upstream
2526 - Moved perl stuff to /usr/share/perl5/
2527 - Don't alter Interval and ReadThreads by default, let the user change this
2529 - Initscript improvements:
2530 * checks configuration before (re)starting, based on debian's initscript
2531 * use /etc/sysconfig instdead of /etc/default
2532 * include optional $ARGS in arguments passed to collectd.
2533 - Drop collection.cgi from main package, as it's been obsoleted by collection3
2534 - Moved contrib/ to its own package, to avoid cluttering the main package with
2535 non-essential stuff.
2536 - Replaced BuildPrereq by BuildRequires
2538 * Mon Jan 03 2011 Monetate <jason.stelzer@monetate.com> 5.0.1
2539 - New upstream version
2540 - Changes to support 5.0.1
2542 * Mon Jan 04 2010 Rackspace <stu.hood@rackspace.com> 4.9.0
2543 - New upstream version
2544 - Changes to support 4.9.0
2545 - Added support for Java/GenericJMX plugin
2547 * Mon Mar 17 2008 RightScale <support@rightscale.com> 4.3.1
2548 - New upstream version
2549 - Changes to support 4.3.1
2550 - Added More Prereqs to support more plugins
2551 - Added support for perl plugin
2553 * Mon Aug 06 2007 Kjell Randa <Kjell.Randa@broadpark.no> 4.0.6
2554 - New upstream version
2556 * Wed Jul 25 2007 Kjell Randa <Kjell.Randa@broadpark.no> 4.0.5
2558 - Changes to support 4.0.5
2560 * Thu Jan 11 2007 Iain Lea <iain@bricbrac.de> 3.11.0-0
2561 - fixed spec file to build correctly on fedora core
2562 - added improved init.d script to work with chkconfig
2563 - added %%post and %%postun to call chkconfig automatically
2565 * Sun Jul 09 2006 Florian octo Forster <octo@verplant.org> 3.10.0-1
2566 - New upstream version
2568 * Sun Jun 25 2006 Florian octo Forster <octo@verplant.org> 3.9.4-1
2569 - New upstream version
2571 * Thu Jun 01 2006 Florian octo Forster <octo@verplant.org> 3.9.3-1
2572 - New upstream version
2574 * Tue May 09 2006 Florian octo Forster <octo@verplant.org> 3.9.2-1
2575 - New upstream version
2577 * Tue May 09 2006 Florian octo Forster <octo@verplant.org> 3.8.5-1
2578 - New upstream version
2580 * Fri Apr 21 2006 Florian octo Forster <octo@verplant.org> 3.9.1-1
2581 - New upstream version
2583 * Fri Apr 14 2006 Florian octo Forster <octo@verplant.org> 3.9.0-1
2584 - New upstream version
2585 - Added the `apache' package.
2587 * Tue Mar 14 2006 Florian octo Forster <octo@verplant.org> 3.8.2-1
2588 - New upstream version
2590 * Mon Mar 13 2006 Florian octo Forster <octo@verplant.org> 3.8.1-1
2591 - New upstream version
2593 * Thu Mar 09 2006 Florian octo Forster <octo@verplant.org> 3.8.0-1
2594 - New upstream version
2596 * Sat Feb 18 2006 Florian octo Forster <octo@verplant.org> 3.7.2-1
2597 - Include `tape.so' so the build doesn't terminate because of missing files..
2598 - New upstream version
2600 * Sat Feb 04 2006 Florian octo Forster <octo@verplant.org> 3.7.1-1
2601 - New upstream version
2603 * Mon Jan 30 2006 Florian octo Forster <octo@verplant.org> 3.7.0-1
2604 - New upstream version
2605 - Removed the extra `hddtemp' package
2607 * Tue Jan 24 2006 Florian octo Forster <octo@verplant.org> 3.6.2-1
2608 - New upstream version
2610 * Fri Jan 20 2006 Florian octo Forster <octo@verplant.org> 3.6.1-1
2611 - New upstream version
2613 * Fri Jan 20 2006 Florian octo Forster <octo@verplant.org> 3.6.0-1
2614 - New upstream version
2615 - Added config file, `collectd.conf(5)', `df.so'
2616 - Added package `collectd-mysql', dependency on `mysqlclient10 | mysql'
2618 * Wed Dec 07 2005 Florian octo Forster <octo@verplant.org> 3.5.0-1
2619 - New upstream version
2621 * Sat Nov 26 2005 Florian octo Forster <octo@verplant.org> 3.4.0-1
2622 - New upstream version
2624 * Sat Nov 05 2005 Florian octo Forster <octo@verplant.org> 3.3.0-1
2625 - New upstream version
2627 * Wed Oct 26 2005 Florian octo Forster <octo@verplant.org> 3.2.0-1
2628 - New upstream version
2629 - Added statement to remove the `*.la' files. This fixes a problem when
2630 `Unpackaged files terminate build' is in effect.
2631 - Added `processes.so*' to the main package
2633 * Fri Oct 14 2005 Florian octo Forster <octo@verplant.org> 3.1.0-1
2634 - New upstream version
2635 - Added package `collectd-hddtemp'
2637 * Fri Sep 30 2005 Florian octo Forster <octo@verplant.org> 3.0.0-1
2638 - New upstream version
2639 - Split the package into `collectd' and `collectd-sensors'
2641 * Fri Sep 16 2005 Florian octo Forster <octo@verplant.org> 2.1.0-1
2642 - New upstream version
2644 * Sat Sep 10 2005 Florian octo Forster <octo@verplant.org> 2.0.0-1
2645 - New upstream version
2647 * Mon Aug 29 2005 Florian octo Forster <octo@verplant.org> 1.8.0-1
2648 - New upstream version
2650 * Thu Aug 25 2005 Florian octo Forster <octo@verplant.org> 1.7.0-1
2651 - New upstream version
2653 * Sun Aug 21 2005 Florian octo Forster <octo@verplant.org> 1.6.0-1
2654 - New upstream version
2656 * Sun Jul 17 2005 Florian octo Forster <octo@verplant.org> 1.5.1-1
2657 - New upstream version
2659 * Sun Jul 17 2005 Florian octo Forster <octo@verplant.org> 1.5-1
2660 - New upstream version
2662 * Mon Jul 11 2005 Florian octo Forster <octo@verplant.org> 1.4.2-1
2663 - New upstream version
2665 * Sat Jul 09 2005 Florian octo Forster <octo@verplant.org> 1.4-1
2666 - Built on RedHat 7.3