flake/systems/etna/metrics.nix

48 lines
832 B
Nix
Raw Normal View History

2024-07-20 14:28:40 +02:00
{...}: {
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"];
}
];
}
];
};
}