summary refs log blame commit diff
path: root/pkgs/servers/monitoring/prometheus/consul-exporter.nix
blob: c3cc7eff90aa3ec3c949f5f975f10e103a0252a7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                                         

                    
                            
                    






                                                          
                                                                    

    
                    
                                                           
                                                               




                                                
{ lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "consul_exporter";
  version = "0.7.1";

  goPackagePath = "github.com/prometheus/consul_exporter";

  src = fetchFromGitHub {
    owner = "prometheus";
    repo = "consul_exporter";
    rev = "v${version}";
    sha256 = "16ibafcbpiplsh1awcvblzzf2cbr4baf8wiwpdpibgmcwwf9m5ya";
  };

  meta = with lib; {
    description = "Prometheus exporter for Consul metrics";
    homepage = "https://github.com/prometheus/consul_exporter";
    license = licenses.asl20;
    maintainers = with maintainers; [ hectorj ];
    platforms = platforms.unix;
  };
}