18 lines
409 B
Nix
18 lines
409 B
Nix
|
{
|
||
|
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" ];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|