ebaa226853
* elk7: 7.11.1 -> 7.16.1 * nixosTests.elk: Improve reliability and compatibility with ELK 7.x - Use comparisons in jq instead of grepping - Match for `.hits.total.value` if version >= 7, otherwise it always passes - Make curl fail if requests fails * nixos/filebeat: Add initial module and test Filebeat is an open source file harvester, mostly used to fetch logs files and feed them into logstash. This module can be used instead of journalbeat if used with `filebeat7` and configured with the `journald` input. * python3Packages.parsedmarc.tests: Fix breakage - Don't use the deprecated elasticsearch7-oss package - Improve jq query robustness and add tracing * rl-2205: Note the addition of the filebeat service * elk6: 6.8.3 -> 6.8.21 The latest version includes a fix for CVE-2021-44228. * nixos/journalbeat: Add a loose dependency on elasticsearch Avoid unnecssary back-off when elasticsearch is running on the same host.
69 lines
2.5 KiB
Nix
69 lines
2.5 KiB
Nix
{ lib, fetchFromGitHub, fetchpatch, elk6Version, buildGoPackage, libpcap, nixosTests, systemd }:
|
|
|
|
let beat = package : extraArgs : buildGoPackage (rec {
|
|
name = "${package}-${version}";
|
|
version = elk6Version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elastic";
|
|
repo = "beats";
|
|
rev = "v${version}";
|
|
sha256 = "1vnw9clsc10cfpjf6vxvc6m507b2q17sgsl079iwqbp4v0286il7";
|
|
};
|
|
|
|
goPackagePath = "github.com/elastic/beats";
|
|
|
|
subPackages = [ package ];
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
# Build fix for aarch64, possibly other systems, merged in beats 7.x https://github.com/elastic/beats/pull/9493
|
|
url = "https://github.com/elastic/beats/commit/5d796571de1aa2a299393d2045dacc2efac41a04.diff";
|
|
sha256 = "sha256:0b79fljbi5xd3h8iiv1m38ad0zhmj09f187asc0m9rxlqrz2l9r2";
|
|
})
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.elastic.co/products/beats";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fadenb basvandijk ];
|
|
platforms = platforms.linux;
|
|
};
|
|
} // extraArgs);
|
|
in rec {
|
|
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";
|
|
passthru.tests =
|
|
assert metricbeat6.drvPath == nixosTests.elk.ELK-6.elkPackages.metricbeat.drvPath;
|
|
{
|
|
elk = nixosTests.elk.ELK-6;
|
|
};
|
|
};
|
|
packetbeat6 = beat "packetbeat" {
|
|
buildInputs = [ libpcap ];
|
|
meta.broken = true;
|
|
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.
|
|
'';
|
|
};
|
|
journalbeat6 = beat "journalbeat" {
|
|
meta.description = ''
|
|
Journalbeat is an open source data collector to read and forward
|
|
journal entries from Linuxes with systemd.
|
|
'';
|
|
buildInputs = [ systemd.dev ];
|
|
postFixup = let libPath = lib.makeLibraryPath [ (lib.getLib systemd) ]; in ''
|
|
patchelf --set-rpath ${libPath} "$out/bin/journalbeat"
|
|
'';
|
|
};
|
|
}
|