services.telegraf.extraConfig
NixOS option
Extra configuration options for telegraf
type: TOML valueDefault
{ }Example
declared in: nixos/modules/services/monitoring/telegraf.nixView source on NixOS/nixpkgs →{
inputs = {
statsd = {
delete_timings = true;
service_address = ":8125";
};
};
outputs = {
influxdb = {
database = "telegraf";
urls = [
"http://localhost:8086"
];
};
};
}