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_conntrack 0%{!?_without_conntrack:1}
84 %define with_contextswitch 0%{!?_without_contextswitch:1}
85 %define with_cpu 0%{!?_without_cpu:1}
86 %define with_cpufreq 0%{!?_without_cpufreq:1}
87 %define with_csv 0%{!?_without_csv:1}
88 %define with_curl 0%{!?_without_curl:1}
89 %define with_curl_json 0%{!?_without_curl_json:0%{?_has_libyajl}}
90 %define with_curl_xml 0%{!?_without_curl_xml:1}
91 %define with_dbi 0%{!?_without_dbi:1}
92 %define with_df 0%{!?_without_df:1}
93 %define with_disk 0%{!?_without_disk:1}
94 %define with_dns 0%{!?_without_dns:0%{?_has_recent_libpcap}}
95 %define with_drbd 0%{!?_without_drbd:1}
96 %define with_email 0%{!?_without_email:1}
97 %define with_entropy 0%{!?_without_entropy:1}
98 %define with_ethstat 0%{!?_without_ethstat:0%{?_has_recent_sockios_h}}
99 %define with_exec 0%{!?_without_exec:1}
100 %define with_fhcount 0%{!?_without_fhcount:1}
101 %define with_filecount 0%{!?_without_filecount:1}
102 %define with_fscache 0%{!?_without_fscache:1}
103 %define with_gmond 0%{!?_without_gmond:0%{?_has_recent_libganglia}}
104 %define with_hddtemp 0%{!?_without_hddtemp:1}
105 %define with_interface 0%{!?_without_interface:1}
106 %define with_ipc 0%{!?_without_ipc:1}
107 %define with_ipmi 0%{!?_without_ipmi:1}
108 %define with_iptables 0%{!?_without_iptables:0%{?_has_working_libiptc}}
109 %define with_ipvs 0%{!?_without_ipvs:0%{?_has_ip_vs_h}}
110 %define with_irq 0%{!?_without_irq:1}
111 %define with_java 0%{!?_without_java:1}
112 %define with_virt 0%{!?_without_virt:1}
113 %define with_load 0%{!?_without_load:1}
114 %define with_logfile 0%{!?_without_logfile:1}
115 %define with_log_logstash 0%{!?_without_log_logstash:0%{?_has_libyajl}}
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_multimeter 0%{!?_without_multimeter:1}
124 %define with_modbus 0%{!?_without_modbus:0%{?_has_libmodbus}}
125 %define with_mqtt 0%{!?_without_mqtt:0%{?_has_libmosquitto}}
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_vmem 0%{!?_without_vmem:1}
173 %define with_vserver 0%{!?_without_vserver:1}
174 %define with_wireless 0%{!?_without_wireless:1}
175 %define with_write_graphite 0%{!?_without_write_graphite:1}
176 %define with_write_http 0%{!?_without_write_http:1}
177 %define with_write_log 0%{!?_without_write_log:1}
178 %define with_write_redis 0%{!?_without_write_redis:0%{?_has_hiredis}}
179 %define with_write_riemann 0%{!?_without_write_riemann:0%{?_has_recent_riemann_c_client}}
180 %define with_write_sensu 0%{!?_without_write_sensu:1}
181 %define with_write_tsdb 0%{!?_without_write_tsdb:1}
182 %define with_xmms 0%{!?_without_xmms:0%{?_has_xmms}}
183 %define with_zfs_arc 0%{!?_without_zfs_arc:1}
184 %define with_zookeeper 0%{!?_without_zookeeper:1}
186 # Plugins not built by default because of dependencies on libraries not
187 # available in RHEL or EPEL:
189 # plugin apple_sensors disabled, requires a Mac
190 %define with_apple_sensors 0%{!?_without_apple_sensors:0}
191 # plugin aquaero disabled, requires a libaquaero5
192 %define with_aquaero 0%{!?_without_aquaero:0}
193 # plugin barometer disabled, requires a libi2c
194 %define with_barometer 0%{!?_without_barometer:0}
195 # plugin lpar disabled, requires AIX
196 %define with_lpar 0%{!?_without_lpar:0}
197 # plugin mic disabled, requires Mic
198 %define with_mic 0%{!?_without_mic:0}
199 # plugin netapp disabled, requires libnetapp
200 %define with_netapp 0%{!?_without_netapp:0}
201 # plugin onewire disabled, requires libowfs
202 %define with_onewire 0%{!?_without_onewire:0}
203 # plugin oracle disabled, requires Oracle
204 %define with_oracle 0%{!?_without_oracle:0}
205 # plugin oracle disabled, requires BSD
206 %define with_pf 0%{!?_without_pf:0}
207 # plugin routeros disabled, requires librouteros
208 %define with_routeros 0%{!?_without_routeros:0}
209 # plugin sigrok disabled, requires libsigrok
210 %define with_sigrok 0%{!?_without_sigrok:0}
211 # plugin tape disabled, requires libkstat
212 %define with_tape 0%{!?_without_tape:0}
213 # plugin tokyotyrant disabled, requires tcrdb.h
214 %define with_tokyotyrant 0%{!?_without_tokyotyrant:0}
215 # plugin write_kafka disabled, requires librdkafka
216 %define with_write_kafka 0%{!?_without_write_kafka:0}
217 # plugin write_mongodb disabled, requires libmongoc
218 %define with_write_mongodb 0%{!?_without_write_mongodb:0}
219 # plugin xencpu disabled, requires xen-devel from non-default repo
220 %define with_xencpu 0%{!?_without_xencpu:0}
221 # plugin zone disabled, requires Solaris
222 %define with_zone 0%{!?_without_zone:0}
224 Summary: statistics collection and monitoring daemon
228 URL: http://collectd.org
229 Source: http://collectd.org/files/%{name}-%{version}.tar.bz2
231 Group: System Environment/Daemons
232 BuildRoot: %{_tmppath}/%{name}-%{version}-root
233 BuildRequires: libgcrypt-devel, kernel-headers, libtool-ltdl-devel, libcap-devel
234 Vendor: collectd development team <collectd@verplant.org>
237 Requires(pre): initscripts
238 Requires(post): systemd
239 Requires(preun): systemd
240 Requires(postun): systemd
242 Requires(post): chkconfig
243 Requires(preun): chkconfig, initscripts
244 Requires(postun): initscripts
248 collectd is a small daemon which collects system information periodically and
249 provides mechanisms to monitor and store the values in a variety of ways. It
250 is written in C for performance. Since the daemon doesn't need to start up
251 every time it wants to update the values it's very fast and easy on the
252 system. Also, the statistics are very fine grained since the files are updated
253 every 10 seconds by default.
257 Summary: AMQP plugin for collectd
258 Group: System Environment/Daemons
259 Requires: %{name}%{?_isa} = %{version}-%{release}
260 BuildRequires: librabbitmq-devel
262 The AMQP plugin transmits or receives values collected by collectd via the
263 Advanced Message Queuing Protocol (AMQP).
268 Summary: Apache plugin for collectd
269 Group: System Environment/Daemons
270 Requires: %{name}%{?_isa} = %{version}-%{release}
271 BuildRequires: curl-devel
273 This plugin collects data provided by Apache's `mod_status'.
278 Summary: aquaero plugin for collectd
279 Group: System Environment/Daemons
280 Requires: %{name}%{?_isa} = %{version}-%{release}
282 Various sensors in the Aquaero 5 watercooling board made by Aquacomputer.
287 Summary: Ascent plugin for collectd
288 Group: System Environment/Daemons
289 Requires: %{name}%{?_isa} = %{version}-%{release}
290 BuildRequires: libxml2-devel, curl-devel
292 The Ascent plugin reads and parses the statistics page of Ascent, a free and
293 open-source server software for the game World of Warcraft by Blizzard
297 %if %{with_barometer}
299 Summary: barometer plugin for collectd
300 Group: System Environment/Daemons
301 Requires: %{name}%{?_isa} = %{version}-%{release}
302 %description barometer
303 Collects pressure and temperature from digital barometers.
308 Summary: Bind plugin for collectd
309 Group: System Environment/Daemons
310 Requires: %{name}%{?_isa} = %{version}-%{release}
311 BuildRequires: libxml2-devel, curl-devel
313 The BIND plugin retrieves this information that's encoded in XML and provided
314 via HTTP and submits the values to collectd.
319 Summary: Ceph plugin for collectd
320 Group: System Environment/Daemons
321 Requires: %{name}%{?_isa} = %{version}-%{release}
322 BuildRequires: yajl-devel
324 Ceph plugin for collectd
329 Summary: Curl plugin for collectd
330 Group: System Environment/Daemons
331 Requires: %{name}%{?_isa} = %{version}-%{release}
332 BuildRequires: curl-devel
334 The cURL plugin uses libcurl to read files and then parses them according to
338 %if %{with_curl_json}
340 Summary: Curl_json plugin for collectd
341 Group: System Environment/Daemons
342 Requires: %{name}%{?_isa} = %{version}-%{release}
343 BuildRequires: curl-devel, yajl-devel
344 %description curl_json
345 The cURL-JSON plugin queries JavaScript Object Notation (JSON) data using the
346 cURL library and parses it according to the user's configuration.
351 Summary: Curl_xml plugin for collectd
352 Group: System Environment/Daemons
353 Requires: %{name}%{?_isa} = %{version}-%{release}
354 BuildRequires: curl-devel, libxml2-devel
355 %description curl_xml
356 The cURL-XML plugin reads files using libcurl and parses it as Extensible
357 Markup Language (XML).
362 Summary: DBI plugin for collectd
363 Group: System Environment/Daemons
364 Requires: %{name}%{?_isa} = %{version}-%{release}
365 BuildRequires: libdbi-devel
367 The DBI plugin uses libdbi, a database abstraction library, to execute SQL
368 statements on a database and read back the result.
373 Summary: disk plugin for collectd
374 Group: System Environment/Daemons
375 Requires: %{name}%{?_isa} = %{version}-%{release}
376 %{?_has_libudev:BuildRequires: libudev-devel}
378 The "disk" plugin collects information about the usage of physical disks and
379 logical disks (partitions).
384 Summary: DNS plugin for collectd
385 Group: System Environment/Daemons
386 Requires: %{name}%{?_isa} = %{version}-%{release}, libpcap >= 1.0
387 BuildRequires: libpcap-devel >= 1.0
389 The DNS plugin has a similar functionality to dnstop: It uses libpcap to get a
390 copy of all traffic from/to port UDP/53 (that's the DNS port), interprets the
391 packets and collects statistics of your DNS traffic.
396 Summary: Email plugin for collectd
397 Group: System Environment/Daemons
398 Requires: %{name}%{?_isa} = %{version}-%{release}, spamassassin
400 This plugin collects data provided by spamassassin.
405 Summary: Gmond plugin for collectd
406 Group: System Environment/Daemons
407 Requires: %{name}%{?_isa} = %{version}-%{release}
408 BuildRequires: ganglia-devel
410 The gmond plugin subscribes to a Multicast group to receive data from gmond,
411 the client daemon of the Ganglia project.
416 Summary: Hddtemp plugin for collectd
417 Group: System Environment/Daemons
418 Requires: %{name}%{?_isa} = %{version}-%{release}, hddtemp
420 The HDDTemp plugin collects the temperature of hard disks. The temperatures are
421 provided via SMART and queried by the external hddtemp daemon.
426 Summary: IPMI plugin for collectd
427 Group: System Environment/Daemons
428 Requires: %{name}%{?_isa} = %{version}-%{release}
429 BuildRequires: OpenIPMI-devel
431 The IPMI plugin uses the OpenIPMI library to read hardware sensors from servers
432 using the Intelligent Platform Management Interface (IPMI).
437 Summary: IPtables plugin for collectd
438 Group: System Environment/Daemons
439 Requires: %{name}%{?_isa} = %{version}-%{release}
440 BuildRequires: iptables-devel
441 %description iptables
442 The IPtables plugin can gather statistics from your ip_tables based packet
443 filter (aka. firewall) for both the IPv4 and the IPv6 protocol. It can collect
444 the byte- and packet-counters of selected rules and submit them to collectd.
449 Summary: Java plugin for collectd
450 Group: System Environment/Daemons
451 Requires: %{name}%{?_isa} = %{version}-%{release}
452 BuildRequires: java-devel, jpackage-utils
453 Requires: java, jpackage-utils
455 This plugin for collectd allows plugins to be written in Java and executed
459 %if %{with_log_logstash}
460 %package log_logstash
461 Summary: log_logstash plugin for collectd
462 Group: System Environment/Daemons
463 Requires: %{name}%{?_isa} = %{version}-%{release}
464 BuildRequires: yajl-devel
465 %description log_logstash
466 This plugin logs in logstash JSON format
471 Summary: LVM plugin for collectd
472 Group: System Environment/Daemons
473 Requires: %{name}%{?_isa} = %{version}-%{release}
474 BuildRequires: lvm2-devel
476 This plugin collects size of “Logical Volumes” (LV) and “Volume Groups” (VG)
477 of Linux' “Logical Volume Manager” (LVM).
480 %if %{with_memcachec}
482 Summary: Memcachec plugin for collectd
483 Group: System Environment/Daemons
484 Requires: %{name}%{?_isa} = %{version}-%{release}
485 BuildRequires: libmemcached-devel
486 %description memcachec
487 The Memcachec plugin uses libmemcached to read statistics from a Memcached
488 instance. Note that another plugin, named `memcached', exists and does a
489 similar job, without requiring the installation of libmemcached.
494 Summary: mic plugin for collectd
495 Group: System Environment/Daemons
496 Requires: %{name}%{?_isa} = %{version}-%{release}
498 The mic plugin collects CPU usage, memory usage, temperatures and power
499 consumption from Intel Many Integrated Core (MIC) CPUs.
504 Summary: modbus plugin for collectd
505 Group: System Environment/Daemons
506 Requires: %{name}%{?_isa} = %{version}-%{release}
507 BuildRequires: libmodbus-devel
509 The modbus plugin collects values from Modbus/TCP enabled devices
514 Summary: MySQL plugin for collectd
515 Group: System Environment/Daemons
516 Requires: %{name}%{?_isa} = %{version}-%{release}
517 BuildRequires: mysql-devel
519 MySQL querying plugin. This plugin provides data of issued commands, called
520 handlers and database traffic.
525 Summary: mqtt plugin for collectd
526 Group: System Environment/Daemons
527 Requires: %{name}%{?_isa} = %{version}-%{release}
528 BuildRequires: mosquitto-devel
530 The MQTT plugin publishes and subscribes to MQTT topics.
535 Summary: netlink plugin for collectd
536 Group: System Environment/Daemons
537 Requires: %{name}%{?_isa} = %{version}-%{release}
538 BuildRequires: libmnl-devel, iproute-devel
540 The netlink plugin collects detailed network interface and routing statistics.
545 Summary: Nginx plugin for collectd
546 Group: System Environment/Daemons
547 Requires: %{name}%{?_isa} = %{version}-%{release}
548 BuildRequires: curl-devel
550 This plugin gets data provided by nginx.
553 %if %{with_notify_desktop}
554 %package notify_desktop
555 Summary: Notify_desktop plugin for collectd
556 Group: System Environment/Daemons
557 Requires: %{name}%{?_isa} = %{version}-%{release}
558 BuildRequires: libnotify-devel, gtk2-devel
559 %description notify_desktop
560 The Notify Desktop plugin uses libnotify to display notifications to the user
561 via the desktop notification specification, i. e. on an X display.
564 %if %{with_notify_email}
565 %package notify_email
566 Summary: Notify_email plugin for collectd
567 Group: System Environment/Daemons
568 Requires: %{name}%{?_isa} = %{version}-%{release}
569 BuildRequires: libesmtp-devel
570 %description notify_email
571 The Notify Email plugin uses libESMTP to send notifications to a configured
577 Summary: Nut plugin for collectd
578 Group: System Environment/Daemons
579 Requires: %{name}%{?_isa} = %{version}-%{release}
580 BuildRequires: nut-devel
582 This plugin for collectd provides Network UPS Tools support.
587 Summary: Openldap plugin for collectd
588 Group: System Environment/Daemons
589 Requires: %{name}%{?_isa} = %{version}-%{release}
590 BuildRequires: openldap-devel
591 %description openldap
592 This plugin reads monitoring information from OpenLDAP's cn=Monitor subtree.
597 Summary: Perl plugin for collectd
598 Group: System Environment/Daemons
599 Requires: %{name}%{?_isa} = %{version}-%{release}
600 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
602 BuildRequires: perl-ExtUtils-Embed
607 The Perl plugin embeds a Perl interpreter into collectd and exposes the
608 application programming interface (API) to Perl-scripts.
613 Summary: Pinba plugin for collectd
614 Group: System Environment/Daemons
615 Requires: %{name}%{?_isa} = %{version}-%{release}
616 BuildRequires: protobuf-c-devel
618 The Pinba plugin receives and dispatches timing values from Pinba, a profiling
624 Summary: Ping plugin for collectd
625 Group: System Environment/Daemons
626 Requires: %{name}%{?_isa} = %{version}-%{release}
627 BuildRequires: liboping-devel
629 The Ping plugin measures network latency using ICMP “echo requests”, usually
633 %if %{with_postgresql}
635 Summary: PostgreSQL plugin for collectd
636 Group: System Environment/Daemons
637 Requires: %{name}%{?_isa} = %{version}-%{release}
638 BuildRequires: postgresql-devel
639 %description postgresql
640 The PostgreSQL plugin connects to and executes SQL statements on a PostgreSQL
646 Summary: Python plugin for collectd
647 Group: System Environment/Daemons
648 Requires: %{name}%{?_isa} = %{version}-%{release}
650 BuildRequires: python-devel
652 BuildRequires: python26-devel
655 The Python plugin embeds a Python interpreter into collectd and exposes the
656 application programming interface (API) to Python-scripts.
661 Summary: Redis plugin for collectd
662 Group: System Environment/Daemons
663 Requires: %{name}%{?_isa} = %{version}-%{release}
664 BuildRequires: hiredis-devel
666 The Redis plugin connects to one or more instances of Redis, a key-value store,
667 and collects usage information using the hiredis library.
670 %if %{with_rrdcached}
672 Summary: RRDCached plugin for collectd
673 Group: System Environment/Daemons
674 Requires: %{name}%{?_isa} = %{version}-%{release}, rrdtool >= 1.4
675 BuildRequires: rrdtool-devel
676 %description rrdcached
677 The RRDCacheD plugin connects to the “RRD caching daemon”, rrdcached and
678 submits updates for RRD files to that daemon.
683 Summary: RRDtool plugin for collectd
684 Group: System Environment/Daemons
685 Requires: %{name}%{?_isa} = %{version}-%{release}
686 BuildRequires: rrdtool-devel
688 The RRDtool plugin writes values to RRD-files using librrd.
693 Summary: Sensors plugin for collectd
694 Group: System Environment/Daemons
695 Requires: %{name}%{?_isa} = %{version}-%{release}
696 BuildRequires: lm_sensors-devel
698 This plugin for collectd provides querying of sensors supported by lm_sensors.
703 Summary: sigrok plugin for collectd
704 Group: System Environment/Daemons
705 Requires: %{name}%{?_isa} = %{version}-%{release}
707 Uses libsigrok as a backend, allowing any sigrok-supported device to have its
708 measurements fed to collectd. This includes multimeters, sound level meters,
709 thermometers, and much more.
714 Summary: SMART plugin for collectd
715 Group: System Environment/Daemons
716 Requires: %{name}%{?_isa} = %{version}-%{release}
717 BuildRequires: libatasmart-devel
719 Collect SMART statistics, notably load cycle count, temperature and bad
725 Summary: SNMP plugin for collectd
726 Group: System Environment/Daemons
727 Requires: %{name}%{?_isa} = %{version}-%{release}
728 BuildRequires: net-snmp-devel
730 This plugin for collectd allows querying of network equipment using SNMP.
735 Summary: Varnish plugin for collectd
736 Group: System Environment/Daemons
737 Requires: %{name}%{?_isa} = %{version}-%{release}
738 BuildRequires: varnish-libs-devel
740 The Varnish plugin collects information about Varnish, an HTTP accelerator.
745 Summary: Virt plugin for collectd
746 Group: System Environment/Daemons
747 Requires: %{name}%{?_isa} = %{version}-%{release}
748 BuildRequires: libvirt-devel
750 This plugin collects information from virtualized guests.
753 %if %{with_write_http}
755 Summary: Write-HTTP plugin for collectd
756 Group: System Environment/Daemons
757 Requires: %{name}%{?_isa} = %{version}-%{release}
758 BuildRequires: curl-devel
759 %description write_http
760 The Write-HTTP plugin sends the values collected by collectd to a web-server
761 using HTTP POST requests.
764 %if %{with_write_kafka}
766 Summary: Write-kafka plugin for collectd
767 Group: System Environment/Daemons
768 Requires: %{name}%{?_isa} = %{version}-%{release}
769 BuildRequires: rdkafka-devel
770 %description write_kafka
771 The write_kafka plugin sends values to kafka, a distributed messaging system.
774 %if %{with_write_redis}
776 Summary: Write-Redis plugin for collectd
777 Group: System Environment/Daemons
778 Requires: %{name}%{?_isa} = %{version}-%{release}
779 BuildRequires: hiredis-devel
780 %description write_redis
781 The Write Redis plugin stores values in Redis, a “data structures server”.
784 %if %{with_write_riemann}
785 %package write_riemann
786 Summary: riemann plugin for collectd
787 Group: System Environment/Daemons
788 Requires: %{name}%{?_isa} = %{version}-%{release}
789 BuildRequires: protobuf-c-devel
790 %description write_riemann
791 The riemann plugin submits values to Riemann, an event stream processor.
796 Summary: xencpu plugin for collectd
797 Group: System Environment/Daemons
798 Requires: %{name}%{?_isa} = %{version}-%{release}
799 BuildRequires: xen-devel
801 The xencpu plugin collects CPU statistics from Xen.
806 Summary: XMMS plugin for collectd
807 Group: System Environment/Daemons
808 Requires: %{name}%{?_isa} = %{version}-%{release}
809 BuildRequires: xmms-devel
811 The xmms plugin collects information from the XMMS music player.
815 Summary: Web-based viewer for collectd
816 Group: System Environment/Daemons
817 Requires: %{name}%{?_isa} = %{version}-%{release}
819 %description collection3
820 collection3 is a graphing front-end for the RRD files created by and filled
821 with collectd. It is written in Perl and should be run as an CGI-script.
822 Graphs are generated on-the-fly, so no cron job or similar is necessary.
824 %package php-collection
825 Summary: collect php webfrontent
826 Group: System Environment/Daemons
827 Requires: collectd = %{version}-%{release}
830 Requires: php-rrdtool
831 %description php-collection
832 PHP graphing frontend for RRD files created by and filled with collectd.
835 Summary: Contrib files for collectd
836 Group: System Environment/Daemons
837 Requires: %{name}%{?_isa} = %{version}-%{release}
839 All the files found under contrib/ in the source tree are bundled in this
842 %package -n libcollectdclient
843 Summary: Collectd client library
844 Group: System Environment/Daemons
845 %description -n libcollectdclient
846 Collectd client library
848 %package -n libcollectdclient-devel
849 Summary: Development files for libcollectdclient
850 Group: System Environment/Daemons
852 Requires: libcollectdclient%{?_isa} = %{version}-%{release}
853 %description -n libcollectdclient-devel
854 Development files for libcollectdclient
856 %package -n collectd-utils
857 Summary: Collectd utilities
858 Group: System Environment/Daemons
859 Requires: libcollectdclient%{?_isa} = %{version}-%{release}
860 Requires: collectd%{?_isa} = %{version}-%{release}
861 %description -n collectd-utils
868 %if %{with_aggregation}
869 %define _with_aggregation --enable-aggregation
871 %define _with_aggregation --disable-aggregation
875 %define _with_amqp --enable-amqp
877 %define _with_amqp --disable-amqp
881 %define _with_apache --enable-apache
883 %define _with_apache --disable-apache
887 %define _with_apcups --enable-apcups
889 %define _with_apcups --disable-apcups
892 %if %{with_apple_sensors}
893 %define _with_apple_sensors --enable-apple_sensors
895 %define _with_apple_sensors --disable-apple_sensors
899 %define _with_aquaero --enable-aquaero
901 %define _with_aquaero --disable-aquaero
905 %define _with_ascent --enable-ascent
907 %define _with_ascent --disable-ascent
910 %if %{with_barometer}
911 %define _with_barometer --enable-barometer
913 %define _with_barometer --disable-barometer
917 %define _with_battery --enable-battery
919 %define _with_battery --disable-battery
923 %define _with_bind --enable-bind
925 %define _with_bind --disable-bind
929 %define _with_cgroups --enable-cgroups
931 %define _with_cgroups --disable-cgroups
934 %if %{with_conntrack}
935 %define _with_conntrack --enable-conntrack
937 %define _with_conntrack --disable-conntrack
940 %if %{with_contextswitch}
941 %define _with_contextswitch --enable-contextswitch
943 %define _with_contextswitch --disable-contextswitch
947 %define _with_cpu --enable-cpu
949 %define _with_cpu --disable-cpu
953 %define _with_cpufreq --enable-cpufreq
955 %define _with_cpufreq --disable-cpufreq
959 %define _with_csv --enable-csv
961 %define _with_csv --disable-csv
965 %define _with_ceph --enable-ceph
967 %define _with_ceph --disable-ceph
971 %define _with_curl --enable-curl
973 %define _with_curl --disable-curl
976 %if %{with_curl_json}
977 %define _with_curl_json --enable-curl_json
979 %define _with_curl_json --disable-curl_json
983 %define _with_curl_xml --enable-curl_xml
985 %define _with_curl_xml --disable-curl_xml
989 %define _with_dbi --enable-dbi
991 %define _with_dbi --disable-dbi
995 %define _with_df --enable-df
997 %define _with_df --disable-df
1001 %define _with_disk --enable-disk
1003 %define _with_disk --disable-disk
1007 %define _with_dns --enable-dns
1009 %define _with_dns --disable-dns
1013 %define _with_drbd --enable-drbd
1015 %define _with_drbd --disable-drbd
1019 %define _with_email --enable-email
1021 %define _with_email --disable-email
1025 %define _with_entropy --enable-entropy
1027 %define _with_entropy --disable-entropy
1031 %define _with_ethstat --enable-ethstat
1033 %define _with_ethstat --disable-ethstat
1037 %define _with_exec --enable-exec
1039 %define _with_exec --disable-exec
1043 %define _with_fhcount --enable-fhcount
1045 %define _with_fhcount --disable-fhcount
1048 %if %{with_filecount}
1049 %define _with_filecount --enable-filecount
1051 %define _with_filecount --disable-filecount
1055 %define _with_fscache --enable-fscache
1057 %define _with_fscache --disable-fscache
1061 %define _with_gmond --enable-gmond
1063 %define _with_gmond --disable-gmond
1067 %define _with_hddtemp --enable-hddtemp
1069 %define _with_hddtemp --disable-hddtemp
1072 %if %{with_interface}
1073 %define _with_interface --enable-interface
1075 %define _with_interface --disable-interface
1079 %define _with_ipc --enable-ipc
1081 %define _with_ipc --disable-ipc
1085 %define _with_ipmi --enable-ipmi
1087 %define _with_ipmi --disable-ipmi
1090 %if %{with_iptables}
1091 %define _with_iptables --enable-iptables
1093 %define _with_iptables --disable-iptables
1097 %define _with_ipvs --enable-ipvs
1099 %define _with_ipvs --disable-ipvs
1103 %define _with_irq --enable-irq
1105 %define _with_irq --disable-irq
1109 %define _with_java --enable-java --with-java=%{java_home}/
1111 %define _with_java --disable-java
1115 %define _with_virt --enable-virt
1117 %define _with_virt --disable-virt
1121 %define _with_load --enable-load
1123 %define _with_load --disable-load
1127 %define _with_logfile --enable-logfile
1129 %define _with_logfile --disable-logfile
1132 %if %{with_log_logstash}
1133 %define _with_log_logstash --enable-log_logstash
1135 %define _with_log_logstash --disable-log_logstash
1139 %define _with_lpar --enable-lpar
1141 %define _with_lpar --disable-lpar
1145 %define _with_lvm --enable-lvm
1147 %define _with_lvm --disable-lvm
1151 %define _with_madwifi --enable-madwifi
1153 %define _with_madwifi --disable-madwifi
1157 %define _with_mbmon --enable-mbmon
1159 %define _with_mbmon --disable-mbmon
1163 %define _with_md --enable-md
1165 %define _with_md --disable-md
1168 %if %{with_memcachec}
1169 %define _with_memcachec --enable-memcachec
1171 %define _with_memcachec --disable-memcachec
1174 %if %{with_memcached}
1175 %define _with_memcached --enable-memcached
1177 %define _with_memcached --disable-memcached
1181 %define _with_memory --enable-memory
1183 %define _with_memory --disable-memory
1187 %define _with_mic --enable-mic
1189 %define _with_mic --disable-mic
1193 %define _with_modbus --enable-modbus
1195 %define _with_modbus --disable-modbus
1198 %if %{with_multimeter}
1199 %define _with_multimeter --enable-multimeter
1201 %define _with_multimeter --disable-multimeter
1205 %define _with_mqtt --enable-mqtt
1207 %define _with_mqtt --disable-mqtt
1211 %define _with_mysql --enable-mysql
1213 %define _with_mysql --disable-mysql
1217 %define _with_netapp --enable-netapp
1219 %define _with_netapp --disable-netapp
1223 %define _with_netlink --enable-netlink
1225 %define _with_netlink --disable-netlink
1229 %define _with_network --enable-network
1231 %define _with_network --disable-network
1235 %define _with_nfs --enable-nfs
1237 %define _with_nfs --disable-nfs
1241 %define _with_nginx --enable-nginx
1243 %define _with_nginx --disable-nginx
1246 %if %{with_notify_desktop}
1247 %define _with_notify_desktop --enable-notify_desktop
1249 %define _with_notify_desktop --disable-notify_desktop
1252 %if %{with_notify_email}
1253 %define _with_notify_email --enable-notify_email
1255 %define _with_notify_email --disable-notify_email
1258 %if %{with_notify_nagios}
1259 %define _with_notify_nagios --enable-notify_nagios
1261 %define _with_notify_nagios --disable-notify_nagios
1265 %define _with_ntpd --enable-ntpd
1267 %define _with_ntpd --disable-ntpd
1271 %define _with_numa --enable-numa
1273 %define _with_numa --disable-numa
1277 %define _with_nut --enable-nut
1279 %define _with_nut --disable-nut
1283 %define _with_olsrd --enable-olsrd
1285 %define _with_olsrd --disable-olsrd
1289 %define _with_onewire --enable-onewire
1291 %define _with_onewire --disable-onewire
1294 %if %{with_openldap}
1295 %define _with_openldap --enable-openldap
1297 %define _with_openldap --disable-openldap
1301 %define _with_openvpn --enable-openvpn
1303 %define _with_openvpn --disable-openvpn
1307 %define _with_oracle --enable-oracle
1309 %define _with_oracle --disable-oracle
1313 %define _with_perl --enable-perl --with-perl-bindings="INSTALLDIRS=vendor"
1315 %define _with_perl --disable-perl
1319 %define _with_pf --enable-pf
1321 %define _with_pf --disable-pf
1325 %define _with_pinba --enable-pinba
1327 %define _with_pinba --disable-pinba
1331 %define _with_ping --enable-ping
1333 %define _with_ping --disable-ping
1336 %if %{with_postgresql}
1337 %define _with_postgresql --enable-postgresql
1339 %define _with_postgresql --disable-postgresql
1342 %if %{with_powerdns}
1343 %define _with_powerdns --enable-powerdns
1345 %define _with_powerdns --disable-powerdns
1348 %if %{with_processes}
1349 %define _with_processes --enable-processes
1351 %define _with_processes --disable-processes
1354 %if %{with_protocols}
1355 %define _with_protocols --enable-protocols
1357 %define _with_protocols --disable-protocols
1362 %define _with_python --enable-python
1364 %define _with_python --enable-python --with-python=%{_bindir}/python2.6
1367 %define _with_python --disable-python
1371 %define _with_redis --enable-redis
1373 %define _with_redis --disable-redis
1376 %if %{with_routeros}
1377 %define _with_routeros --enable-routeros
1379 %define _with_routeros --disable-routeros
1382 %if %{with_rrdcached}
1383 %define _with_rrdcached --enable-rrdcached
1385 %define _with_rrdcached --disable-rrdcached
1389 %define _with_rrdtool --enable-rrdtool
1391 %define _with_rrdtool --disable-rrdtool
1395 %define _with_sensors --enable-sensors
1397 %define _with_sensors --disable-sensors
1401 %define _with_serial --enable-serial
1403 %define _with_serial --disable-serial
1407 %define _with_sigrok --enable-sigrok
1409 %define _with_sigrok --disable-sigrok
1413 %define _with_smart --enable-smart
1415 %define _with_smart --disable-smart
1419 %define _with_snmp --enable-snmp
1421 %define _with_snmp --disable-snmp
1425 %define _with_statsd --enable-statsd
1427 %define _with_statsd --disable-statsd
1431 %define _with_swap --enable-swap
1433 %define _with_swap --disable-swap
1437 %define _with_syslog --enable-syslog
1439 %define _with_syslog --disable-syslog
1443 %define _with_table --enable-table
1445 %define _with_table --disable-table
1449 %define _with_tail --enable-tail
1451 %define _with_tail --disable-tail
1454 %if %{with_tail_csv}
1455 %define _with_tail_csv --enable-tail_csv
1457 %define _with_tail_csv --disable-tail_csv
1461 %define _with_tape --enable-tape
1463 %define _with_tape --disable-tape
1466 %if %{with_tcpconns}
1467 %define _with_tcpconns --enable-tcpconns
1469 %define _with_tcpconns --disable-tcpconns
1472 %if %{with_teamspeak2}
1473 %define _with_teamspeak2 --enable-teamspeak2
1475 %define _with_teamspeak2 --disable-teamspeak2
1479 %define _with_ted --enable-ted
1481 %define _with_ted --disable-ted
1485 %define _with_thermal --enable-thermal
1487 %define _with_thermal --disable-thermal
1490 %if %{with_threshold}
1491 %define _with_threshold --enable-threshold
1493 %define _with_threshold --disable-threshold
1496 %if %{with_tokyotyrant}
1497 %define _with_tokyotyrant --enable-tokyotyrant
1499 %define _with_tokyotyrant --disable-tokyotyrant
1502 %if %{with_turbostat}
1503 %define _with_turbostat --enable-turbostat
1505 %define _with_turbostat --disable-turbostat
1508 %if %{with_unixsock}
1509 %define _with_unixsock --enable-unixsock
1511 %define _with_unixsock --disable-unixsock
1515 %define _with_uptime --enable-uptime
1517 %define _with_uptime --disable-uptime
1521 %define _with_users --enable-users
1523 %define _with_users --disable-users
1527 %define _with_uuid --enable-uuid
1529 %define _with_uuid --disable-uuid
1533 %define _with_varnish --enable-varnish
1535 %define _with_varnish --disable-varnish
1539 %define _with_vmem --enable-vmem
1541 %define _with_vmem --disable-vmem
1545 %define _with_vserver --enable-vserver
1547 %define _with_vserver --disable-vserver
1550 %if %{with_wireless}
1551 %define _with_wireless --enable-wireless
1553 %define _with_wireless --disable-wireless
1556 %if %{with_write_graphite}
1557 %define _with_write_graphite --enable-write_graphite
1559 %define _with_write_graphite --disable-write_graphite
1562 %if %{with_write_http}
1563 %define _with_write_http --enable-write_http
1565 %define _with_write_http --disable-write_http
1568 %if %{with_write_kafka}
1569 %define _with_write_kafka --enable-write_kafka
1571 %define _with_write_kafka --disable-write_kafka
1574 %if %{with_write_log}
1575 %define _with_write_log --enable-write_log
1577 %define _with_write_log --disable-write_log
1580 %if %{with_write_mongodb}
1581 %define _with_write_mongodb --enable-write_mongodb
1583 %define _with_write_mongodb --disable-write_mongodb
1586 %if %{with_write_redis}
1587 %define _with_write_redis --enable-write_redis
1589 %define _with_write_redis --disable-write_redis
1592 %if %{with_write_riemann}
1593 %define _with_write_riemann --enable-write_riemann
1595 %define _with_write_riemann --disable-write_riemann
1598 %if %{with_write_sensu}
1599 %define _with_write_sensu --enable-write_sensu
1601 %define _with_write_sensu --disable-write_sensu
1604 %if %{with_write_tsdb}
1605 %define _with_write_tsdb --enable-write_tsdb
1607 %define _with_write_tsdb --disable-write_tsdb
1611 %define _with_xencpu --enable-xencpu
1613 %define _with_xencpu --disable-xencpu
1617 %define _with_xmms --enable-xmms
1619 %define _with_xmms --disable-xmms
1623 %define _with_zfs_arc --enable-zfs_arc
1625 %define _with_zfs_arc --disable-zfs_arc
1629 %define _with_zone --enable-zone
1631 %define _with_zone --disable-zone
1634 %if %{with_zookeeper}
1635 %define _with_zookeeper --enable-zookeeper
1637 %define _with_zookeeper --disable-zookeeper
1640 %configure CFLAGS="%{optflags} -DLT_LAZY_OR_NOW=\"RTLD_LAZY|RTLD_GLOBAL\"" \
1642 --without-included-ltdl \
1643 --enable-all-plugins=yes \
1644 --enable-match_empty_counter \
1645 --enable-match_hashed \
1646 --enable-match_regex \
1647 --enable-match_timediff \
1648 --enable-match_value \
1649 --enable-target_notification \
1650 --enable-target_replace \
1651 --enable-target_scale \
1652 --enable-target_set \
1653 --enable-target_v5upgrade \
1654 %{?_with_aggregation} \
1658 %{?_with_apple_sensors} \
1661 %{?_with_barometer} \
1666 %{?_with_conntrack} \
1667 %{?_with_contextswitch} \
1672 %{?_with_curl_json} \
1673 %{?_with_curl_xml} \
1684 %{?_with_filecount} \
1688 %{?_with_interface} \
1691 %{?_with_iptables} \
1695 %{?_with_log_logstash} \
1698 %{?_with_memcachec} \
1701 %{?_with_multimeter} \
1707 %{?_with_notify_desktop} \
1708 %{?_with_notify_email} \
1711 %{?_with_openldap} \
1717 %{?_with_postgresql} \
1720 %{?_with_routeros} \
1721 %{?_with_rrdcached} \
1728 %{?_with_tokyotyrant} \
1730 %{?_with_write_http} \
1731 %{?_with_write_kafka} \
1732 %{?_with_write_mongodb} \
1733 %{?_with_write_redis} \
1738 %{?_with_zookeeper} \
1745 %{?_with_memcached} \
1749 %{?_with_notify_nagios} \
1754 %{?_with_powerdns} \
1755 %{?_with_processes} \
1756 %{?_with_protocols} \
1763 %{?_with_tail_csv} \
1764 %{?_with_tcpconns} \
1765 %{?_with_teamspeak2} \
1768 %{?_with_threshold} \
1769 %{?_with_turbostat} \
1770 %{?_with_unixsock} \
1777 %{?_with_write_graphite} \
1778 %{?_with_write_http} \
1779 %{?_with_write_log} \
1780 %{?_with_write_riemann} \
1781 %{?_with_write_sensu} \
1782 %{?_with_write_tsdb}
1785 %{__make} %{?_smp_mflags}
1790 %{__make} install DESTDIR=%{buildroot}
1792 %{__install} -Dp -m0644 contrib/systemd.collectd.service %{buildroot}%{_unitdir}/collectd.service
1794 %{__install} -Dp -m0755 contrib/redhat/init.d-collectd %{buildroot}%{_initrddir}/collectd
1796 %{__install} -Dp -m0644 src/collectd.conf %{buildroot}%{_sysconfdir}/collectd.conf
1797 %{__install} -d %{buildroot}%{_sharedstatedir}/collectd/
1798 %{__install} -d %{buildroot}%{_sysconfdir}/collectd.d/
1800 %{__mkdir} -p %{buildroot}%{_localstatedir}/www
1801 %{__mkdir} -p %{buildroot}/%{_sysconfdir}/httpd/conf.d
1803 %{__mv} contrib/collection3 %{buildroot}%{_localstatedir}/www
1804 %{__mv} contrib/redhat/collection3.conf %{buildroot}/%{_sysconfdir}/httpd/conf.d/
1806 %{__mv} contrib/php-collection %{buildroot}%{_localstatedir}/www
1807 %{__mv} contrib/redhat/php-collection.conf %{buildroot}/%{_sysconfdir}/httpd/conf.d/
1810 find contrib/ -type f -exec %{__chmod} a-x {} \;
1811 # *.la files shouldn't be distributed.
1812 rm -f %{buildroot}/%{_libdir}/{collectd/,}*.la
1814 # Remove Perl hidden .packlist files.
1815 find %{buildroot} -type f -name .packlist -delete
1816 # Remove Perl temporary file perllocal.pod
1817 find %{buildroot} -type f -name perllocal.pod -delete
1820 rm -f %{buildroot}%{_datadir}/collectd/java/collectd-api.jar
1821 rm -f %{buildroot}%{_datadir}/collectd/java/generic-jmx.jar
1822 rm -f %{buildroot}%{_mandir}/man5/collectd-java.5*
1826 rm -f %{buildroot}%{_mandir}/man5/collectd-perl.5*
1827 rm -f %{buildroot}%{_mandir}/man3/Collectd::Unixsock.3pm*
1828 rm -fr %{buildroot}/usr/lib/perl5/
1831 %if ! %{with_postgresql}
1832 rm -f %{buildroot}%{_datadir}/collectd/postgresql_default.conf
1835 %if ! %{with_python}
1836 rm -f %{buildroot}%{_mandir}/man5/collectd-python.5*
1840 rm -f %{buildroot}%{_mandir}/man5/collectd-snmp.5*
1849 # stop sysv-based instance before upgrading to systemd
1850 if [ $1 -eq 2 ] && [ -f /var/lock/subsys/collectd ]; then
1851 SYSTEMCTL_SKIP_REDIRECT=1 %{_initddir}/collectd stop >/dev/null 2>&1 || :
1857 if [ $1 -eq 2 ]; then
1858 /usr/bin/systemctl daemon-reload >/dev/null 2>&1 || :
1860 %systemd_post collectd.service
1862 /sbin/chkconfig --add collectd || :
1867 %systemd_preun collectd.service
1869 # stop collectd only when uninstalling
1870 if [ $1 -eq 0 ]; then
1871 /sbin/service collectd stop >/dev/null 2>&1 || :
1872 /sbin/chkconfig --del collectd || :
1878 %systemd_postun_with_restart collectd.service
1880 # restart collectd only when upgrading
1881 if [ $1 -eq 1 ]; then
1882 /sbin/service collectd condrestart >/dev/null 2>&1 || :
1886 %post -n libcollectdclient -p /sbin/ldconfig
1887 %postun -n libcollectdclient -p /sbin/ldconfig
1891 %doc AUTHORS COPYING ChangeLog README
1892 %config(noreplace) %{_sysconfdir}/collectd.conf
1894 %{_unitdir}/collectd.service
1896 %{_initrddir}/collectd
1898 %{_sbindir}/collectd
1899 %{_sbindir}/collectdmon
1900 %{_datadir}/collectd/types.db
1901 %{_sharedstatedir}/collectd
1902 %{_mandir}/man1/collectd.1*
1903 %{_mandir}/man1/collectdmon.1*
1904 %{_mandir}/man5/collectd-email.5*
1905 %{_mandir}/man5/collectd-exec.5*
1906 %{_mandir}/man5/collectd-threshold.5*
1907 %{_mandir}/man5/collectd-unixsock.5*
1908 %{_mandir}/man5/collectd.conf.5*
1909 %{_mandir}/man5/types.db.5*
1911 # all plugins bundled with the main collectd package
1912 %{_libdir}/%{name}/match_empty_counter.so
1913 %{_libdir}/%{name}/match_hashed.so
1914 %{_libdir}/%{name}/match_regex.so
1915 %{_libdir}/%{name}/match_timediff.so
1916 %{_libdir}/%{name}/match_value.so
1917 %{_libdir}/%{name}/target_notification.so
1918 %{_libdir}/%{name}/target_replace.so
1919 %{_libdir}/%{name}/target_scale.so
1920 %{_libdir}/%{name}/target_set.so
1921 %{_libdir}/%{name}/target_v5upgrade.so
1923 %if %{with_aggregation}
1924 %{_libdir}/%{name}/aggregation.so
1927 %{_libdir}/%{name}/apcups.so
1930 %{_libdir}/%{name}/battery.so
1933 %{_libdir}/%{name}/cgroups.so
1935 %if %{with_conntrack}
1936 %{_libdir}/%{name}/conntrack.so
1938 %if %{with_contextswitch}
1939 %{_libdir}/%{name}/contextswitch.so
1942 %{_libdir}/%{name}/cpu.so
1945 %{_libdir}/%{name}/cpufreq.so
1948 %{_libdir}/%{name}/csv.so
1951 %{_libdir}/%{name}/df.so
1954 %{_libdir}/%{name}/drbd.so
1957 %{_libdir}/%{name}/ethstat.so
1960 %{_libdir}/%{name}/entropy.so
1963 %{_libdir}/%{name}/exec.so
1966 %{_libdir}/%{name}/fhcount.so
1968 %if %{with_filecount}
1969 %{_libdir}/%{name}/filecount.so
1972 %{_libdir}/%{name}/fscache.so
1974 %if %{with_interface}
1975 %{_libdir}/%{name}/interface.so
1978 %{_libdir}/%{name}/ipc.so
1981 %{_libdir}/%{name}/ipvs.so
1984 %{_libdir}/%{name}/irq.so
1987 %{_libdir}/%{name}/load.so
1990 %{_libdir}/%{name}/logfile.so
1993 %{_libdir}/%{name}/madwifi.so
1996 %{_libdir}/%{name}/mbmon.so
1999 %{_libdir}/%{name}/md.so
2001 %if %{with_memcached}
2002 %{_libdir}/%{name}/memcached.so
2005 %{_libdir}/%{name}/memory.so
2007 %if %{with_multimeter}
2008 %{_libdir}/%{name}/multimeter.so
2011 %{_libdir}/%{name}/network.so
2014 %{_libdir}/%{name}/nfs.so
2016 %if %{with_notify_nagios}
2017 %{_libdir}/%{name}/notify_nagios.so
2020 %{_libdir}/%{name}/ntpd.so
2023 %{_libdir}/%{name}/numa.so
2026 %{_libdir}/%{name}/openvpn.so
2029 %{_libdir}/%{name}/olsrd.so
2031 %if %{with_powerdns}
2032 %{_libdir}/%{name}/powerdns.so
2034 %if %{with_processes}
2035 %{_libdir}/%{name}/processes.so
2037 %if %{with_protocols}
2038 %{_libdir}/%{name}/protocols.so
2041 %{_libdir}/%{name}/serial.so
2044 %{_libdir}/%{name}/statsd.so
2047 %{_libdir}/%{name}/swap.so
2050 %{_libdir}/%{name}/syslog.so
2053 %{_libdir}/%{name}/table.so
2056 %{_libdir}/%{name}/tail.so
2058 %if %{with_tail_csv}
2059 %{_libdir}/%{name}/tail_csv.so
2061 %if %{with_tcpconns}
2062 %{_libdir}/%{name}/tcpconns.so
2064 %if %{with_teamspeak2}
2065 %{_libdir}/%{name}/teamspeak2.so
2068 %{_libdir}/%{name}/ted.so
2071 %{_libdir}/%{name}/thermal.so
2073 %if %{with_threshold}
2074 %{_libdir}/%{name}/threshold.so
2076 %if %{with_turbostat}
2077 %{_libdir}/%{name}/turbostat.so
2079 %if %{with_unixsock}
2080 %{_libdir}/%{name}/unixsock.so
2083 %{_libdir}/%{name}/uptime.so
2086 %{_libdir}/%{name}/users.so
2089 %{_libdir}/%{name}/uuid.so
2092 %{_libdir}/%{name}/vmem.so
2095 %{_libdir}/%{name}/vserver.so
2097 %if %{with_wireless}
2098 %{_libdir}/%{name}/wireless.so
2100 %if %{with_write_graphite}
2101 %{_libdir}/%{name}/write_graphite.so
2103 %if %{with_write_log}
2104 %{_libdir}/%{name}/write_log.so
2106 %if %{with_write_sensu}
2107 %{_libdir}/%{name}/write_sensu.so
2109 %if %{with_write_tsdb}
2110 %{_libdir}/%{name}/write_tsdb.so
2113 %{_libdir}/%{name}/zfs_arc.so
2115 %if %{with_zookeeper}
2116 %{_libdir}/%{name}/zookeeper.so
2119 %files -n libcollectdclient-devel
2120 %{_includedir}/collectd/client.h
2121 %{_includedir}/collectd/network.h
2122 %{_includedir}/collectd/network_buffer.h
2123 %{_includedir}/collectd/lcc_features.h
2124 %{_libdir}/pkgconfig/libcollectdclient.pc
2125 %{_libdir}/libcollectdclient.so
2127 %files -n libcollectdclient
2128 %{_libdir}/libcollectdclient.so.*
2130 %files -n collectd-utils
2131 %{_bindir}/collectd-nagios
2132 %{_bindir}/collectd-tg
2133 %{_bindir}/collectdctl
2134 %{_mandir}/man1/collectdctl.1*
2135 %{_mandir}/man1/collectd-nagios.1*
2136 %{_mandir}/man1/collectd-tg.1*
2140 %{_libdir}/%{name}/amqp.so
2145 %{_libdir}/%{name}/apache.so
2150 %{_libdir}/%{name}/aquaero.so
2155 %{_libdir}/%{name}/ascent.so
2158 %if %{with_barometer}
2160 %{_libdir}/%{name}/barometer.so
2165 %{_libdir}/%{name}/bind.so
2170 %{_libdir}/%{name}/ceph.so
2175 %{_libdir}/%{name}/curl.so
2178 %if %{with_curl_json}
2180 %{_libdir}/%{name}/curl_json.so
2183 %if %{with_curl_xml}
2185 %{_libdir}/%{name}/curl_xml.so
2190 %{_libdir}/%{name}/disk.so
2195 %{_libdir}/%{name}/dns.so
2200 %{_libdir}/%{name}/dbi.so
2205 %{_libdir}/%{name}/email.so
2210 %{_libdir}/%{name}/gmond.so
2215 %{_libdir}/%{name}/hddtemp.so
2220 %{_libdir}/%{name}/ipmi.so
2223 %if %{with_iptables}
2225 %{_libdir}/%{name}/iptables.so
2230 %{_datadir}/collectd/java/collectd-api.jar
2231 %{_datadir}/collectd/java/generic-jmx.jar
2232 %{_libdir}/%{name}/java.so
2233 %{_mandir}/man5/collectd-java.5*
2238 %{_libdir}/%{name}/virt.so
2241 %if %{with_log_logstash}
2243 %{_libdir}/%{name}/log_logstash.so
2248 %{_libdir}/%{name}/lvm.so
2251 %if %{with_memcachec}
2253 %{_libdir}/%{name}/memcachec.so
2258 %{_libdir}/%{name}/mic.so
2263 %{_libdir}/%{name}/modbus.so
2268 %{_libdir}/%{name}/mqtt.so
2273 %{_libdir}/%{name}/mysql.so
2278 %{_libdir}/%{name}/netlink.so
2283 %{_libdir}/%{name}/nginx.so
2286 %if %{with_notify_desktop}
2287 %files notify_desktop
2288 %{_libdir}/%{name}/notify_desktop.so
2291 %if %{with_notify_email}
2293 %{_libdir}/%{name}/notify_email.so
2298 %{_libdir}/%{name}/nut.so
2301 %if %{with_openldap}
2303 %{_libdir}/%{name}/openldap.so
2308 %{perl_vendorlib}/Collectd.pm
2309 %{perl_vendorlib}/Collectd/
2310 %{_mandir}/man3/Collectd::Unixsock.3pm*
2311 %{_mandir}/man5/collectd-perl.5*
2312 %{_libdir}/%{name}/perl.so
2317 %{_libdir}/%{name}/pinba.so
2322 %{_libdir}/%{name}/ping.so
2325 %if %{with_postgresql}
2327 %{_datadir}/collectd/postgresql_default.conf
2328 %{_libdir}/%{name}/postgresql.so
2333 %{_mandir}/man5/collectd-python*
2334 %{_libdir}/%{name}/python.so
2339 %{_libdir}/%{name}/redis.so
2342 %if %{with_rrdcached}
2344 %{_libdir}/%{name}/rrdcached.so
2349 %{_libdir}/%{name}/rrdtool.so
2354 %{_libdir}/%{name}/sensors.so
2359 %{_libdir}/%{name}/sigrok.so
2364 %{_libdir}/%{name}/smart.so
2369 %{_mandir}/man5/collectd-snmp.5*
2370 %{_libdir}/%{name}/snmp.so
2375 %{_libdir}/%{name}/varnish.so
2378 %if %{with_write_http}
2380 %{_libdir}/%{name}/write_http.so
2383 %if %{with_write_kafka}
2385 %{_libdir}/%{name}/write_kafka.so
2388 %if %{with_write_redis}
2390 %{_libdir}/%{name}/write_redis.so
2393 %if %{with_write_riemann}
2394 %files write_riemann
2395 %{_libdir}/%{name}/write_riemann.so
2400 %{_libdir}/%{name}/xencpu.so
2405 %{_libdir}/%{name}/xmms.so
2409 %{_localstatedir}/www/collection3
2410 %{_sysconfdir}/httpd/conf.d/collection3.conf
2412 %files php-collection
2413 %{_localstatedir}/www/php-collection
2414 %{_sysconfdir}/httpd/conf.d/php-collection.conf
2420 #* TODO: next feature release changelog
2421 #- New upstream version
2422 #- New plugins enabled by default: mqtt, notify_nagios
2423 #- New plugins disabled by default: zone, xencpu
2425 * Wed May 27 2015 Marc Fournier <marc.fournier@camptocamp.com> 5.5.0-1
2426 - New upstream version
2427 - New plugins enabled by default: ceph, drbd, log_logstash, write_tsdb, smart,
2428 openldap, redis, write_redis, zookeeper, write_log, write_sensu, ipc,
2430 - New plugins disabled by default: barometer, write_kafka
2431 - Enable zfs_arc, now supported on Linux
2432 - Install disk plugin in a dedicated package, as it depends on libudev
2433 - use systemd on EL7, sysvinit on EL6 & EL5
2434 - Install collectdctl, collectd-tg and collectd-nagios in collectd-utils.rpm
2435 - Add build-dependency on libcap-devel
2437 * Mon Aug 19 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.4.2-1
2438 - New upstream version
2439 - Build netlink plugin by default
2440 - Enable cgroups, lvm and statsd plugins
2441 - Enable (but don't build by default) mic, aquaero and sigrok plugins
2442 - Enable modbus, memcachec and xmms plugins on RHEL7
2444 * Tue Aug 06 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.3.1-1
2445 - New upstream version
2446 - Added RHEL5 support:
2447 * conditionally disable plugins not building on this platform
2448 * add/specify some build dependencies and options
2449 * replace some RPM macros not available on this platform
2450 - Removed duplicate --enable-aggregation
2451 - Added some comments & usage examples
2452 - Replaced a couple of "Buildrequires" by "BuildRequires"
2453 - Enabled modbus plugin on RHEL6
2454 - Enabled netlink plugin on RHEL6 and RHEL7
2455 - Allow perl plugin to build on RHEL5
2456 - Add support for RHEL7
2457 - Misc perl-related improvements:
2458 * prevent rpmbuild from extracting dependencies from files in /usr/share/doc
2459 * don't package collection3 and php-collection twice
2460 * keep perl scripts from contrib/ in collectd-contrib
2462 * Wed Apr 10 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.3.0-1
2463 - New upstream version
2464 - Enabled write_riemann plugin
2465 - Enabled tail_csv plugin
2466 - Installed collectd-tc manpage
2468 * Fri Jan 11 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.2.0-3
2469 - remove dependency on libstatgrab, which isn't required on linux
2471 * Thu Jan 03 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.2.0-2
2472 - collection3 and php-collection viewers are now in separate packages
2474 * Fri Dec 21 2012 Marc Fournier <marc.fournier@camptocamp.com> 5.2.0-1
2475 - New upstream version
2476 - Enabled aggregation plugin
2477 - Installed collectd-tc
2478 - Added network.h and network_buffer.h to libcollectdclient-devel
2479 - Moved libxml2-devel and libcurl-devel BRs to relevant plugins sections
2480 - Moved libcollectdclient.so from libcollectdclient-devel to libcollectdclient
2481 - Added rrdcached and redis plugin descriptions
2482 - Mentioned new pf plugin in disabled plugins list
2484 * Sun Nov 18 2012 Ruben Kerkhof <ruben@tilaa.nl> 5.1.0-3
2485 - Follow Fedora Packaging Guidelines in java subpackage
2487 * Sat Nov 17 2012 Ruben Kerkhof <ruben@tilaa.nl> 5.1.0-2
2488 - Move perl stuff to perl_vendorlib
2489 - Replace hardcoded paths with macros
2490 - Remove unnecessary Requires
2491 - Removed .a and .la files
2492 - Some other small cleanups
2494 * Fri Nov 16 2012 Marc Fournier <marc.fournier@camptocamp.com> 5.1.0-1
2495 - New upstream version
2496 - Changes to support 5.1.0
2497 - Enabled all buildable plugins based on libraries available on EL6 + EPEL
2498 - All plugins requiring external libraries are now shipped in separate
2500 - No longer treat Java plugin as an exception, correctly set $JAVA_HOME during
2501 the build process + ensure build deps are installed.
2502 - Dropped per-plugin configuration files, as they tend to diverge from upstream
2504 - Moved perl stuff to /usr/share/perl5/
2505 - Don't alter Interval and ReadThreads by default, let the user change this
2507 - Initscript improvements:
2508 * checks configuration before (re)starting, based on debian's initscript
2509 * use /etc/sysconfig instdead of /etc/default
2510 * include optional $ARGS in arguments passed to collectd.
2511 - Drop collection.cgi from main package, as it's been obsoleted by collection3
2512 - Moved contrib/ to its own package, to avoid cluttering the main package with
2513 non-essential stuff.
2514 - Replaced BuildPrereq by BuildRequires
2516 * Mon Jan 03 2011 Monetate <jason.stelzer@monetate.com> 5.0.1
2517 - New upstream version
2518 - Changes to support 5.0.1
2520 * Mon Jan 04 2010 Rackspace <stu.hood@rackspace.com> 4.9.0
2521 - New upstream version
2522 - Changes to support 4.9.0
2523 - Added support for Java/GenericJMX plugin
2525 * Mon Mar 17 2008 RightScale <support@rightscale.com> 4.3.1
2526 - New upstream version
2527 - Changes to support 4.3.1
2528 - Added More Prereqs to support more plugins
2529 - Added support for perl plugin
2531 * Mon Aug 06 2007 Kjell Randa <Kjell.Randa@broadpark.no> 4.0.6
2532 - New upstream version
2534 * Wed Jul 25 2007 Kjell Randa <Kjell.Randa@broadpark.no> 4.0.5
2536 - Changes to support 4.0.5
2538 * Thu Jan 11 2007 Iain Lea <iain@bricbrac.de> 3.11.0-0
2539 - fixed spec file to build correctly on fedora core
2540 - added improved init.d script to work with chkconfig
2541 - added %%post and %%postun to call chkconfig automatically
2543 * Sun Jul 09 2006 Florian octo Forster <octo@verplant.org> 3.10.0-1
2544 - New upstream version
2546 * Sun Jun 25 2006 Florian octo Forster <octo@verplant.org> 3.9.4-1
2547 - New upstream version
2549 * Thu Jun 01 2006 Florian octo Forster <octo@verplant.org> 3.9.3-1
2550 - New upstream version
2552 * Tue May 09 2006 Florian octo Forster <octo@verplant.org> 3.9.2-1
2553 - New upstream version
2555 * Tue May 09 2006 Florian octo Forster <octo@verplant.org> 3.8.5-1
2556 - New upstream version
2558 * Fri Apr 21 2006 Florian octo Forster <octo@verplant.org> 3.9.1-1
2559 - New upstream version
2561 * Fri Apr 14 2006 Florian octo Forster <octo@verplant.org> 3.9.0-1
2562 - New upstream version
2563 - Added the `apache' package.
2565 * Tue Mar 14 2006 Florian octo Forster <octo@verplant.org> 3.8.2-1
2566 - New upstream version
2568 * Mon Mar 13 2006 Florian octo Forster <octo@verplant.org> 3.8.1-1
2569 - New upstream version
2571 * Thu Mar 09 2006 Florian octo Forster <octo@verplant.org> 3.8.0-1
2572 - New upstream version
2574 * Sat Feb 18 2006 Florian octo Forster <octo@verplant.org> 3.7.2-1
2575 - Include `tape.so' so the build doesn't terminate because of missing files..
2576 - New upstream version
2578 * Sat Feb 04 2006 Florian octo Forster <octo@verplant.org> 3.7.1-1
2579 - New upstream version
2581 * Mon Jan 30 2006 Florian octo Forster <octo@verplant.org> 3.7.0-1
2582 - New upstream version
2583 - Removed the extra `hddtemp' package
2585 * Tue Jan 24 2006 Florian octo Forster <octo@verplant.org> 3.6.2-1
2586 - New upstream version
2588 * Fri Jan 20 2006 Florian octo Forster <octo@verplant.org> 3.6.1-1
2589 - New upstream version
2591 * Fri Jan 20 2006 Florian octo Forster <octo@verplant.org> 3.6.0-1
2592 - New upstream version
2593 - Added config file, `collectd.conf(5)', `df.so'
2594 - Added package `collectd-mysql', dependency on `mysqlclient10 | mysql'
2596 * Wed Dec 07 2005 Florian octo Forster <octo@verplant.org> 3.5.0-1
2597 - New upstream version
2599 * Sat Nov 26 2005 Florian octo Forster <octo@verplant.org> 3.4.0-1
2600 - New upstream version
2602 * Sat Nov 05 2005 Florian octo Forster <octo@verplant.org> 3.3.0-1
2603 - New upstream version
2605 * Wed Oct 26 2005 Florian octo Forster <octo@verplant.org> 3.2.0-1
2606 - New upstream version
2607 - Added statement to remove the `*.la' files. This fixes a problem when
2608 `Unpackaged files terminate build' is in effect.
2609 - Added `processes.so*' to the main package
2611 * Fri Oct 14 2005 Florian octo Forster <octo@verplant.org> 3.1.0-1
2612 - New upstream version
2613 - Added package `collectd-hddtemp'
2615 * Fri Sep 30 2005 Florian octo Forster <octo@verplant.org> 3.0.0-1
2616 - New upstream version
2617 - Split the package into `collectd' and `collectd-sensors'
2619 * Fri Sep 16 2005 Florian octo Forster <octo@verplant.org> 2.1.0-1
2620 - New upstream version
2622 * Sat Sep 10 2005 Florian octo Forster <octo@verplant.org> 2.0.0-1
2623 - New upstream version
2625 * Mon Aug 29 2005 Florian octo Forster <octo@verplant.org> 1.8.0-1
2626 - New upstream version
2628 * Thu Aug 25 2005 Florian octo Forster <octo@verplant.org> 1.7.0-1
2629 - New upstream version
2631 * Sun Aug 21 2005 Florian octo Forster <octo@verplant.org> 1.6.0-1
2632 - New upstream version
2634 * Sun Jul 17 2005 Florian octo Forster <octo@verplant.org> 1.5.1-1
2635 - New upstream version
2637 * Sun Jul 17 2005 Florian octo Forster <octo@verplant.org> 1.5-1
2638 - New upstream version
2640 * Mon Jul 11 2005 Florian octo Forster <octo@verplant.org> 1.4.2-1
2641 - New upstream version
2643 * Sat Jul 09 2005 Florian octo Forster <octo@verplant.org> 1.4-1
2644 - Built on RedHat 7.3