Add meta information to hbase, bosun, scollector, opentsdb
This commit is contained in:
parent
abd24523f3
commit
9cab0e1b8a
@ -10,4 +10,10 @@ stdenv.mkDerivation {
|
|||||||
mkdir -p $out
|
mkdir -p $out
|
||||||
cp -R * $out
|
cp -R * $out
|
||||||
'';
|
'';
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A distributed, scalable, big data store";
|
||||||
|
homepage = https://hbase.apache.org;
|
||||||
|
license = licenses.asl20;
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
@ -33,4 +33,13 @@ in stdenv.mkDerivation rec {
|
|||||||
cp bosun $out/bin
|
cp bosun $out/bin
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Time series alerting framework";
|
||||||
|
longDescription = ''
|
||||||
|
An advanced, open-source monitoring and alerting system by Stack Exchange.
|
||||||
|
'';
|
||||||
|
homepage = http://bosun.org;
|
||||||
|
license = licenses.mit;
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
@ -24,4 +24,10 @@ in stdenv.mkDerivation rec {
|
|||||||
cp scollector $out/bin
|
cp scollector $out/bin
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Collect system information and store it in OpenTSDB or Bosun";
|
||||||
|
homepage = http://bosun.org/scollector;
|
||||||
|
license = licenses.mit;
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
@ -23,4 +23,11 @@ stdenv.mkDerivation rec {
|
|||||||
--set JAVA_HOME "${jre}" \
|
--set JAVA_HOME "${jre}" \
|
||||||
--set JAVA "${jre}/bin/java"
|
--set JAVA "${jre}/bin/java"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Time series database with millisecond precision";
|
||||||
|
homepage = http://opentsdb.net;
|
||||||
|
license = licenses.lgpl21Plus;
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user