mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
beats: upgrade default from v5 to v6
This commit is contained in:
parent
c3055ab3ce
commit
d50253237e
@ -23,10 +23,10 @@ let beat = package : extraArgs : buildGoPackage (rec {
|
||||
};
|
||||
} // extraArgs);
|
||||
in {
|
||||
filebeat = beat "filebeat" {meta.description = "Lightweight shipper for logfiles";};
|
||||
heartbeat = beat "heartbeat" {meta.description = "Lightweight shipper for uptime monitoring";};
|
||||
metricbeat = beat "metricbeat" {meta.description = "Lightweight shipper for metrics";};
|
||||
packetbeat = beat "packetbeat" {
|
||||
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 = ''
|
||||
|
@ -23,10 +23,10 @@ let beat = package : extraArgs : buildGoPackage (rec {
|
||||
};
|
||||
} // extraArgs);
|
||||
in {
|
||||
filebeat = beat "filebeat" {meta.description = "Lightweight shipper for logfiles";};
|
||||
heartbeat = beat "heartbeat" {meta.description = "Lightweight shipper for uptime monitoring";};
|
||||
metricbeat = beat "metricbeat" {meta.description = "Lightweight shipper for metrics";};
|
||||
packetbeat = beat "packetbeat" {
|
||||
filebeat6 = beat "filebeat" {meta.description = "Lightweight shipper for logfiles";};
|
||||
heartbeat6 = beat "heartbeat" {meta.description = "Lightweight shipper for uptime monitoring";};
|
||||
metricbeat6 = beat "metricbeat" {meta.description = "Lightweight shipper for metrics";};
|
||||
packetbeat6 = beat "packetbeat" {
|
||||
buildInputs = [ libpcap ];
|
||||
meta.description = "Network packet analyzer that ships data to Elasticsearch";
|
||||
meta.longDescription = ''
|
||||
|
@ -841,23 +841,23 @@ with pkgs;
|
||||
|
||||
bchunk = callPackage ../tools/cd-dvd/bchunk { };
|
||||
|
||||
inherit (callPackages ../misc/logging/beats/5.x.nix { })
|
||||
filebeat
|
||||
heartbeat
|
||||
metricbeat
|
||||
packetbeat;
|
||||
|
||||
inherit (let beats6 = callPackages ../misc/logging/beats/6.x.nix { }; in {
|
||||
filebeat6 = beats6.filebeat;
|
||||
heartbeat6 = beats6.heartbeat;
|
||||
metricbeat6 = beats6.metricbeat;
|
||||
packetbeat6 = beats6.packetbeat;
|
||||
})
|
||||
inherit (callPackages ../misc/logging/beats/6.x.nix { })
|
||||
filebeat6
|
||||
heartbeat6
|
||||
metricbeat6
|
||||
packetbeat6;
|
||||
|
||||
filebeat = filebeat6;
|
||||
heartbeat = heartbeat6;
|
||||
metricbeat = metricbeat6;
|
||||
packetbeat = packetbeat6;
|
||||
|
||||
inherit (callPackages ../misc/logging/beats/5.x.nix { })
|
||||
filebeat5
|
||||
heartbeat5
|
||||
metricbeat5
|
||||
packetbeat5;
|
||||
|
||||
bfr = callPackage ../tools/misc/bfr { };
|
||||
|
||||
bibtool = callPackage ../tools/misc/bibtool { };
|
||||
|
Loading…
Reference in New Issue
Block a user