aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/misc/logging
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2019-10-05 12:43:18 +0000
committerKatharina Fey <kookie@spacekookie.de>2019-10-05 12:44:52 +0000
commitcf85056ba64caf3267d43255ef4a1243e9c8ee3b (patch)
tree3051519e9c8275b870aac43f80af875715c9d124 /nixpkgs/pkgs/misc/logging
parent1148b1d122bc03e9a3665856c9b7bb96bd4e3994 (diff)
parent2436c27541b2f52deea3a4c1691216a02152e729 (diff)
Add 'nixpkgs/' from commit '2436c27541b2f52deea3a4c1691216a02152e729'
git-subtree-dir: nixpkgs git-subtree-mainline: 1148b1d122bc03e9a3665856c9b7bb96bd4e3994 git-subtree-split: 2436c27541b2f52deea3a4c1691216a02152e729
Diffstat (limited to 'nixpkgs/pkgs/misc/logging')
-rw-r--r--nixpkgs/pkgs/misc/logging/beats/6.x.nix52
-rw-r--r--nixpkgs/pkgs/misc/logging/beats/7.x.nix52
2 files changed, 104 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/misc/logging/beats/6.x.nix b/nixpkgs/pkgs/misc/logging/beats/6.x.nix
new file mode 100644
index 00000000000..fe1f655246e
--- /dev/null
+++ b/nixpkgs/pkgs/misc/logging/beats/6.x.nix
@@ -0,0 +1,52 @@
+{ stdenv, fetchFromGitHub, elk6Version, buildGoPackage, libpcap, systemd }:
+
+let beat = package : extraArgs : buildGoPackage (rec {
+ name = "${package}-${version}";
+ version = elk6Version;
+
+ src = fetchFromGitHub {
+ owner = "elastic";
+ repo = "beats";
+ rev = "v${version}";
+ sha256 = "0jkiz5dfdi9zsji04ipcmcj7pml9294v455y7s2c22k24gyzbaw8";
+ };
+
+ 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 {
+ 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 = ''
+ 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 = stdenv.lib.makeLibraryPath [ systemd.lib ]; in ''
+ patchelf --set-rpath ${libPath} "$bin/bin/journalbeat"
+ '';
+ };
+}
diff --git a/nixpkgs/pkgs/misc/logging/beats/7.x.nix b/nixpkgs/pkgs/misc/logging/beats/7.x.nix
new file mode 100644
index 00000000000..7d0feef3868
--- /dev/null
+++ b/nixpkgs/pkgs/misc/logging/beats/7.x.nix
@@ -0,0 +1,52 @@
+{ stdenv, fetchFromGitHub, elk7Version, buildGoPackage, libpcap, systemd }:
+
+let beat = package : extraArgs : buildGoPackage (rec {
+ name = "${package}-${version}";
+ version = elk7Version;
+
+ src = fetchFromGitHub {
+ owner = "elastic";
+ repo = "beats";
+ rev = "v${version}";
+ sha256 = "0715fgqw6mqms4zld8wyf6appvvpfb1hglcmcn852c66a8zwr2r2";
+ };
+
+ 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 {
+ filebeat7 = beat "filebeat" {meta.description = "Lightweight shipper for logfiles";};
+ heartbeat7 = beat "heartbeat" {meta.description = "Lightweight shipper for uptime monitoring";};
+ metricbeat7 = beat "metricbeat" {meta.description = "Lightweight shipper for metrics";};
+ 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.
+ '';
+ };
+ journalbeat7 = 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 = stdenv.lib.makeLibraryPath [ systemd.lib ]; in ''
+ patchelf --set-rpath ${libPath} "$bin/bin/journalbeat"
+ '';
+ };
+}