about summary refs log tree commit diff
path: root/pkgs/servers/tracing
diff options
context:
space:
mode:
authorIan Duncan <ian@iankduncan.com>2022-01-07 16:32:31 +0000
committerIan Duncan <ian@iankduncan.com>2022-01-07 16:37:52 +0000
commit3db1a83518a8a65c24d9ab73a7d3eff0915e7627 (patch)
tree8c525c6ce229e66bd0b3880de4822e63b11fab89 /pkgs/servers/tracing
parent017328f71d87198561becbbf7f2b5e500630d654 (diff)
honeytail: init at 1.6.0
Diffstat (limited to 'pkgs/servers/tracing')
-rw-r--r--pkgs/servers/tracing/honeycomb/honeytail/default.nix21
-rw-r--r--pkgs/servers/tracing/honeycomb/honeytail/versions.nix6
2 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/servers/tracing/honeycomb/honeytail/default.nix b/pkgs/servers/tracing/honeycomb/honeytail/default.nix
new file mode 100644
index 0000000000000..cbe901f2859a1
--- /dev/null
+++ b/pkgs/servers/tracing/honeycomb/honeytail/default.nix
@@ -0,0 +1,21 @@
+{ lib, buildGoModule, fetchurl }:
+import ./versions.nix ({version, sha256}:
+  buildGoModule {
+  pname = "honeytail";
+  inherit version;
+  vendorSha256 = "sha256-LtiiLGLjhbfT49A6Fw5CbSbnmTHMxtcUssr+ayCVrvY=";
+
+  src = fetchurl {
+    url = "https://github.com/honeycombio/honeytail/archive/refs/tags/v${version}.tar.gz";
+    inherit sha256;
+  };
+  inherit (buildGoModule.go) GOOS GOARCH;
+
+  meta = with lib; {
+    description = "agent for ingesting log file data into honeycomb.io and making it available for exploration";
+    homepage = "https://honeycomb.io/";
+    license = licenses.asl20;
+    maintainers = [ maintainers.iand675 ];
+  };
+})
+
diff --git a/pkgs/servers/tracing/honeycomb/honeytail/versions.nix b/pkgs/servers/tracing/honeycomb/honeytail/versions.nix
new file mode 100644
index 0000000000000..370d645ab6269
--- /dev/null
+++ b/pkgs/servers/tracing/honeycomb/honeytail/versions.nix
@@ -0,0 +1,6 @@
+generic: {
+  v1_6_0 = generic {
+    version = "1.6.0";
+    sha256 = "039svpvqjck7s3rq86s29xgcyxl1wr0zj90s3jsyp058zk1dgwdy";
+  };
+}