flake/systems/etna/metrics.nix
2024-07-29 10:58:43 +02:00

47 lines
825 B
Nix

{
cfTunnels."grafana.uku3lig.net" = "http://localhost:2432";
services.grafana = {
enable = true;
settings = {
server = {
http_port = 2432;
root_url = "https://grafana.uku3lig.net";
};
};
};
services.prometheus = {
enable = true;
port = 9090;
globalConfig.scrape_interval = "15s";
exporters = {
node = {
enable = true;
port = 9091;
enabledCollectors = ["systemd"];
};
};
scrapeConfigs = [
{
job_name = "scrape-node";
static_configs = [
{
targets = ["localhost:9091"];
}
];
}
{
job_name = "scrape-api-rs";
static_configs = [
{
targets = ["localhost:5001"];
}
];
}
];
};
}