Newer
Older
# Prometheus server
#
# Scope: Pull data from our cluster machines into TSDB
# See https://christine.website/blog/prometheus-grafana-loki-nixos-2020-11-20
{ config, lib, ... }:
let
exportersCfg = config.services.prometheus.exporters;
cfg = config.services.private-storage.monitoring.prometheus;
dropPortNumber = {
source_labels = [ "__address__" ];
regex = "^(.*):\\d+$";
target_label = "instance";
};
in {
options.services.private-storage.monitoring.prometheus = {
nodeExporterTargets = lib.mkOption {
type = with lib.types; listOf str;
example = lib.literalExample "[ node1 node2 ]";
description = "List of nodes (hostnames or IPs) to scrape.";
};
nginxExporterTargets = lib.mkOption {
type = with lib.types; listOf str;
example = lib.literalExample "[ node1 node2 ]";
description = "List of nodes (hostnames or IPs) to scrape.";
};
paymentExporterTargets = lib.mkOption {
type = with lib.types; listOf str;
example = lib.literalExample "[ node1 node2 ]";
description = "List of nodes (hostnames or IPs) to scrape.";
};
};
config = rec {
# networking.firewall.allowedTCPPorts = [ services.prometheus.port ];
services.prometheus = {
enable = true;
# port = 9090; # Option only in recent (20.09?) nixpkgs, 9090 default
scrapeConfigs = [
{
job_name = "node-exporters";
static_configs = [{
targets = map (x: x + ":" + (toString exportersCfg.node.port)) cfg.nodeExporterTargets;
}];
relabel_configs = [ dropPortNumber ];
}
{
job_name = "nginx-exporters";
static_configs = [{
targets = map (x: x + ":" + (toString exportersCfg.nginx.port)) cfg.nginxExporterTargets;
}];
relabel_configs = [ dropPortNumber ];
{
job_name = "payment-exporters";
scheme = "https";
tls_config.insecure_skip_verify = true;
static_configs = [{
targets = cfg.paymentExporterTargets;
}];
relabel_configs = [ dropPortNumber ];
}
];
};
};
}