improve metrics
This commit is contained in:
parent
f10610c794
commit
03d75bcc71
6 changed files with 38 additions and 4 deletions
|
@ -23,13 +23,13 @@
|
||||||
#./jellyfin.nix
|
#./jellyfin.nix
|
||||||
./wireguard.nix
|
./wireguard.nix
|
||||||
#./tts.nix
|
#./tts.nix
|
||||||
./telegraf.nix
|
|
||||||
|
|
||||||
# logging
|
# logging
|
||||||
./loki.nix
|
./loki.nix
|
||||||
./loki-promtail.nix
|
./loki-promtail.nix
|
||||||
./prometheus.nix
|
./prometheus.nix
|
||||||
./grafana.nix
|
./grafana.nix
|
||||||
|
./telegraf.nix
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -68,12 +68,12 @@
|
||||||
books = {
|
books = {
|
||||||
enable = true;
|
enable = true;
|
||||||
path = "/media/syncthing/books";
|
path = "/media/syncthing/books";
|
||||||
rescanInterval = 8 * 3600;
|
rescanInterval = 40 * 24 * 3600;
|
||||||
};
|
};
|
||||||
lost-fotos = {
|
lost-fotos = {
|
||||||
enable = true;
|
enable = true;
|
||||||
path = "/media/syncthing/lost-fotos.ct";
|
path = "/media/syncthing/lost-fotos.ct";
|
||||||
rescanInterval = 8 * 3600;
|
rescanInterval = 5 * 31 * 24 * 3600;
|
||||||
};
|
};
|
||||||
movies = {
|
movies = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -24,6 +24,10 @@ in
|
||||||
interval = "30m"; # agent.interval = "10s" is default
|
interval = "30m"; # agent.interval = "10s" is default
|
||||||
}];
|
}];
|
||||||
http_response = [{ inherit urls; }];
|
http_response = [{ inherit urls; }];
|
||||||
|
processes = { };
|
||||||
|
systemd_units = { };
|
||||||
|
internet_speed.interval = "50m";
|
||||||
|
nginx.urls = [ "http://localhost/nginx_status" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -52,6 +52,7 @@
|
||||||
./loki-promtail.nix
|
./loki-promtail.nix
|
||||||
./prometheus.nix
|
./prometheus.nix
|
||||||
./grafana.nix
|
./grafana.nix
|
||||||
|
./telegraf.nix
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,19 @@
|
||||||
targets = [ "localhost:${toString config.services.prometheus.exporters.node.port}" ];
|
targets = [ "localhost:${toString config.services.prometheus.exporters.node.port}" ];
|
||||||
labels = {
|
labels = {
|
||||||
service = "node-exporter";
|
service = "node-exporter";
|
||||||
server = "pepe";
|
server = "robi";
|
||||||
|
};
|
||||||
|
}];
|
||||||
|
}
|
||||||
|
{
|
||||||
|
# see https://www.home-assistant.io/integrations/prometheus/
|
||||||
|
job_name = "telgraf";
|
||||||
|
metrics_path = "/metrics";
|
||||||
|
static_configs = [{
|
||||||
|
targets = [ "localhost:9273" ];
|
||||||
|
labels = {
|
||||||
|
service = "telegraf";
|
||||||
|
server = "robi";
|
||||||
};
|
};
|
||||||
}];
|
}];
|
||||||
}
|
}
|
||||||
|
|
17
nixos/machines/robi/telegraf.nix
Normal file
17
nixos/machines/robi/telegraf.nix
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
services.telegraf = {
|
||||||
|
enable = true;
|
||||||
|
extraConfig = {
|
||||||
|
outputs.prometheus_client = {
|
||||||
|
listen = ":9273";
|
||||||
|
metric_version = 2;
|
||||||
|
};
|
||||||
|
# https://github.com/influxdata/telegraf/tree/master/plugins/inputs < all them plugins
|
||||||
|
inputs = {
|
||||||
|
processes = { };
|
||||||
|
systemd_units = { };
|
||||||
|
nginx.urls = [ "http://localhost/nginx_status" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue