beats-5.*: Drop EOL packages
This commit is contained in:
parent
4e30b30a65
commit
bded2f69d3
@ -1,42 +0,0 @@
|
|||||||
{ stdenv, fetchFromGitHub, elk5Version, buildGoPackage, libpcap }:
|
|
||||||
|
|
||||||
let beat = package : extraArgs : buildGoPackage (rec {
|
|
||||||
name = "${package}-${version}";
|
|
||||||
version = elk5Version;
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "elastic";
|
|
||||||
repo = "beats";
|
|
||||||
rev = "v${version}";
|
|
||||||
sha256 = "0sslcwjdf7zb9xj2c98jid3rb09l96m22k3af48gppimxg1lkh9b";
|
|
||||||
};
|
|
||||||
|
|
||||||
goPackagePath = "github.com/elastic/beats";
|
|
||||||
|
|
||||||
subPackages = [ package ];
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
|
||||||
homepage = https://www.elastic.co/products/beats;
|
|
||||||
license = licenses.asl20;
|
|
||||||
maintainers = with maintainers; [ fadenb basvandijk ];
|
|
||||||
platforms = platforms.linux;
|
|
||||||
};
|
|
||||||
} // extraArgs);
|
|
||||||
in {
|
|
||||||
filebeat5 = beat "filebeat" {meta.description = "Lightweight shipper for logfiles";};
|
|
||||||
heartbeat5 = beat "heartbeat" {meta.description = "Lightweight shipper for uptime monitoring";};
|
|
||||||
metricbeat5 = beat "metricbeat" {meta.description = "Lightweight shipper for metrics";};
|
|
||||||
packetbeat5 = beat "packetbeat" {
|
|
||||||
buildInputs = [ libpcap ];
|
|
||||||
meta.description = "Network packet analyzer that ships data to Elasticsearch";
|
|
||||||
meta.longDescription = ''
|
|
||||||
Packetbeat is an open source network packet analyzer that ships the
|
|
||||||
data to Elasticsearch.
|
|
||||||
|
|
||||||
Think of it like a distributed real-time Wireshark with a lot more
|
|
||||||
analytics features. The Packetbeat shippers sniff the traffic between
|
|
||||||
your application processes, parse on the fly protocols like HTTP, MySQL,
|
|
||||||
PostgreSQL, Redis or Thrift and correlate the messages into transactions.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
}
|
|
@ -1066,16 +1066,6 @@ in
|
|||||||
|
|
||||||
bchunk = callPackage ../tools/cd-dvd/bchunk { };
|
bchunk = callPackage ../tools/cd-dvd/bchunk { };
|
||||||
|
|
||||||
inherit (callPackages ../misc/logging/beats/5.x.nix {
|
|
||||||
# XXX: this is failing with Go 1.12. Error is related to cgo, an
|
|
||||||
# update to this package might fix it.
|
|
||||||
buildGoPackage = buildGo111Package;
|
|
||||||
})
|
|
||||||
filebeat5
|
|
||||||
heartbeat5
|
|
||||||
metricbeat5
|
|
||||||
packetbeat5;
|
|
||||||
|
|
||||||
inherit (callPackages ../misc/logging/beats/6.x.nix {
|
inherit (callPackages ../misc/logging/beats/6.x.nix {
|
||||||
# XXX: this is failing with Go 1.12. Error is related to cgo, an
|
# XXX: this is failing with Go 1.12. Error is related to cgo, an
|
||||||
# update to this package might fix it.
|
# update to this package might fix it.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user