about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/riemann-tools/default.nix
blob: 6a3e1f3deb10b7864a7f0cc06deb917d77fd0cd6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ lib, bundlerApp }:

bundlerApp {
  pname = "riemann-tools";
  gemdir = ./.;
  exes = [
    "riemann-apache-status"
    "riemann-bench"
    "riemann-cloudant"
    "riemann-consul"
    "riemann-dir-files-count"
    "riemann-dir-space"
    "riemann-diskstats"
    "riemann-fd"
    "riemann-freeswitch"
    "riemann-haproxy"
    "riemann-health"
    "riemann-kvminstance"
    "riemann-memcached"
    "riemann-net"
    "riemann-nginx-status"
    "riemann-ntp"
    "riemann-portcheck"
    "riemann-proc"
    "riemann-varnish"
    "riemann-zookeeper"
  ];

  meta = with lib; {
    description = "Tools to submit data to Riemann";
    homepage = "https://riemann.io";
    maintainers = with maintainers; [ manveru ];
    license = licenses.mit;
  };
}