2023-02-06 17:28:27 +00:00
|
|
|
{ lib, fetchFromGitHub, elk7Version, buildGoModule, libpcap, nixosTests, systemd, config }:
|
2019-04-14 19:39:46 +00:00
|
|
|
|
2024-06-06 11:46:38 +00:00
|
|
|
let beat = package: extraArgs: buildGoModule (lib.attrsets.recursiveUpdate (rec {
|
2021-08-30 14:10:11 +00:00
|
|
|
pname = package;
|
2021-08-30 03:36:15 +00:00
|
|
|
version = elk7Version;
|
2019-04-14 19:39:46 +00:00
|
|
|
|
2021-08-30 03:36:15 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "elastic";
|
|
|
|
repo = "beats";
|
|
|
|
rev = "v${version}";
|
2024-01-14 11:21:45 +00:00
|
|
|
hash = "sha256-0qwWHRIDLlnaPOCRmiiFGg+/jdanWuQtggM2QSaMR1o=";
|
2021-08-30 03:36:15 +00:00
|
|
|
};
|
2019-04-14 19:39:46 +00:00
|
|
|
|
2024-01-14 11:21:45 +00:00
|
|
|
vendorHash = "sha256-rwCCpptppkpvwQWUtqTjBUumP8GSpPHBTCaj0nYVQv8=";
|
2019-04-14 19:39:46 +00:00
|
|
|
|
2021-08-30 03:36:15 +00:00
|
|
|
subPackages = [ package ];
|
2019-04-14 19:39:46 +00:00
|
|
|
|
2021-08-30 03:36:15 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://www.elastic.co/products/beats";
|
|
|
|
license = licenses.asl20;
|
2022-07-18 19:20:34 +00:00
|
|
|
maintainers = with maintainers; [ fadenb basvandijk dfithian ];
|
2021-08-30 03:36:15 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2024-06-06 11:46:38 +00:00
|
|
|
}) extraArgs);
|
2021-08-30 03:36:15 +00:00
|
|
|
in
|
|
|
|
rec {
|
2023-08-26 05:28:06 +00:00
|
|
|
auditbeat7 = beat "auditbeat" { meta.description = "Lightweight shipper for audit data"; };
|
2021-12-16 15:20:52 +00:00
|
|
|
filebeat7 = beat "filebeat" {
|
|
|
|
meta.description = "Lightweight shipper for logfiles";
|
|
|
|
buildInputs = [ systemd ];
|
|
|
|
tags = [ "withjournald" ];
|
|
|
|
postFixup = ''
|
|
|
|
patchelf --set-rpath ${lib.makeLibraryPath [ (lib.getLib systemd) ]} "$out/bin/filebeat"
|
|
|
|
'';
|
|
|
|
};
|
2021-08-30 03:36:15 +00:00
|
|
|
heartbeat7 = beat "heartbeat" { meta.description = "Lightweight shipper for uptime monitoring"; };
|
2021-03-19 16:16:10 +00:00
|
|
|
metricbeat7 = beat "metricbeat" {
|
|
|
|
meta.description = "Lightweight shipper for metrics";
|
|
|
|
passthru.tests =
|
2023-02-06 17:28:27 +00:00
|
|
|
lib.optionalAttrs config.allowUnfree (
|
|
|
|
assert metricbeat7.drvPath == nixosTests.elk.unfree.ELK-7.elkPackages.metricbeat.drvPath;
|
|
|
|
{
|
|
|
|
elk = nixosTests.elk.unfree.ELK-7;
|
|
|
|
}
|
|
|
|
);
|
2021-03-19 16:16:10 +00:00
|
|
|
};
|
2019-04-14 19:39:46 +00:00
|
|
|
packetbeat7 = 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.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|