2021-03-19 17:16:10 +01:00
|
|
|
{ lib, fetchFromGitHub, elk6Version, buildGoPackage, libpcap, nixosTests, systemd }:
|
2017-06-13 22:36:08 +02:00
|
|
|
|
|
|
|
let beat = package : extraArgs : buildGoPackage (rec {
|
|
|
|
name = "${package}-${version}";
|
2017-12-18 20:53:54 +01:00
|
|
|
version = elk6Version;
|
2017-06-13 22:36:08 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "elastic";
|
|
|
|
repo = "beats";
|
|
|
|
rev = "v${version}";
|
2019-09-06 15:52:20 +02:00
|
|
|
sha256 = "0jkiz5dfdi9zsji04ipcmcj7pml9294v455y7s2c22k24gyzbaw8";
|
2017-06-13 22:36:08 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
goPackagePath = "github.com/elastic/beats";
|
|
|
|
|
|
|
|
subPackages = [ package ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.elastic.co/products/beats";
|
2017-06-13 22:36:08 +02:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ fadenb basvandijk ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
} // extraArgs);
|
2021-03-19 17:16:10 +01:00
|
|
|
in rec {
|
2018-08-03 12:45:06 +02:00
|
|
|
filebeat6 = beat "filebeat" {meta.description = "Lightweight shipper for logfiles";};
|
|
|
|
heartbeat6 = beat "heartbeat" {meta.description = "Lightweight shipper for uptime monitoring";};
|
2021-03-19 17:16:10 +01:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
};
|
2018-08-03 12:45:06 +02:00
|
|
|
packetbeat6 = beat "packetbeat" {
|
2017-06-13 22:36:08 +02:00
|
|
|
buildInputs = [ libpcap ];
|
2019-10-07 17:20:23 +02:00
|
|
|
meta.broken = true;
|
2017-06-13 22:36:08 +02:00
|
|
|
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.
|
|
|
|
'';
|
|
|
|
};
|
2018-11-29 17:10:15 +01:00
|
|
|
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 ];
|
2021-01-15 14:21:58 +01:00
|
|
|
postFixup = let libPath = lib.makeLibraryPath [ (lib.getLib systemd) ]; in ''
|
2020-04-28 03:50:57 +02:00
|
|
|
patchelf --set-rpath ${libPath} "$out/bin/journalbeat"
|
2019-05-10 15:29:35 +02:00
|
|
|
'';
|
2018-11-29 17:10:15 +01:00
|
|
|
};
|
2017-06-13 22:36:08 +02:00
|
|
|
}
|