20 lines
		
	
	
	
		
			408 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			408 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ ... }:
 | 
						|
{
 | 
						|
  services.prometheus = {
 | 
						|
    enable = true;
 | 
						|
    retentionTime = "2y";
 | 
						|
    scrapeConfigs = [
 | 
						|
      {
 | 
						|
        job_name = "meshcore_repeater_telemetry";
 | 
						|
        scrape_interval = "15m";
 | 
						|
        static_configs = [{
 | 
						|
          targets = [ "localhost:9091" ];
 | 
						|
        }];
 | 
						|
      }
 | 
						|
    ];
 | 
						|
    pushgateway = {
 | 
						|
      enable = true;
 | 
						|
      web.external-url = "metrics-nekomesh.vs.grzb.de:9091";
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |