]> git.pld-linux.org Git - packages/opentsdb.git/blob - opentsdb.spec
18ffb8d05f60e0d626e2df540a7dd80974a6c7e9
[packages/opentsdb.git] / opentsdb.spec
1 Summary:        A scalable, distributed Time Series Database
2 Name:           opentsdb
3 Version:        2.0.0
4 Release:        0.1
5 License:        LGPL v2.1+
6 Group:          Applications/Databases
7 Source0:        https://github.com/OpenTSDB/opentsdb/releases/download/v2.0.0RC1/%{name}-%{version}.tar.gz
8 # Source0-md5:  e486e8a60a24f8169eebb5c663c5c082
9 URL:            http://opentsdb.net/
10 Requires:       gnuplot
11 BuildArch:      noarch
12 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14 %description
15 OpenTSDB is a distributed, scalable Time Series Database (TSDB)
16 written on top of HBase. OpenTSDB was written to address a common
17 need: store, index and serve metrics collected from computer systems
18 (network gear, operating systems, applications) at a large scale, and
19 make this data easily accessible and graphable.
20
21 Thanks to HBase's scalability, OpenTSDB allows you to collect many
22 thousands of metrics from thousands of hosts and applications, at a
23 high rate (every few seconds). OpenTSDB will never delete or
24 downsample data and can easily store billions of data points.
25
26 %prep
27 %setup -q
28
29 %build
30 %configure
31 %{__make}
32
33 %install
34 rm -rf $RPM_BUILD_ROOT
35 %{__make} install \
36         DESTDIR=$RPM_BUILD_ROOT
37 install -d $RPM_BUILD_ROOT/var/cache/opentsdb
38
39 %clean
40 rm -rf $RPM_BUILD_ROOT
41
42 %files
43 %defattr(644,root,root,755)
44 %doc README THANKS NEWS AUTHORS
45 %attr(755,root,root) %{_bindir}/tsdb
46 %dir %{_datadir}/opentsdb
47 %attr(755,root,root) %{_datadir}/opentsdb/*.sh
48 %dir %{_localstatedir}/cache/opentsdb
This page took 0.054732 seconds and 2 git commands to generate.