]> git.pld-linux.org Git - packages/opentsdb.git/blame - opentsdb.spec
standard %doc
[packages/opentsdb.git] / opentsdb.spec
CommitLineData
1b40dbc4
ER
1Summary: A scalable, distributed Time Series Database
2Name: opentsdb
3Version: 2.0.0
4Release: 0.1
5License: LGPL v2.1+
6Group: Applications/Databases
7Source0: https://github.com/OpenTSDB/opentsdb/releases/download/v2.0.0RC1/%{name}-%{version}.tar.gz
8# Source0-md5: e486e8a60a24f8169eebb5c663c5c082
9URL: http://opentsdb.net/
10Requires: gnuplot
11BuildArch: noarch
12BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14%description
15OpenTSDB is a distributed, scalable Time Series Database (TSDB)
16written on top of HBase. OpenTSDB was written to address a common
17need: store, index and serve metrics collected from computer systems
18(network gear, operating systems, applications) at a large scale, and
19make this data easily accessible and graphable.
20
21Thanks to HBase's scalability, OpenTSDB allows you to collect many
22thousands of metrics from thousands of hosts and applications, at a
23high rate (every few seconds). OpenTSDB will never delete or
24downsample 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
34rm -rf $RPM_BUILD_ROOT
35%{__make} install \
36 DESTDIR=$RPM_BUILD_ROOT
37install -d $RPM_BUILD_ROOT/var/cache/opentsdb
38
39%clean
40rm -rf $RPM_BUILD_ROOT
41
42%files
43%defattr(644,root,root,755)
65a33558 44%doc README THANKS NEWS AUTHORS
1b40dbc4
ER
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.027187 seconds and 4 git commands to generate.