17 lines
332 B
Nix
17 lines
332 B
Nix
|
{ config, ... }:
|
||
|
|
||
|
{
|
||
|
services.vmagent = {
|
||
|
enable = true;
|
||
|
|
||
|
remoteWrite = {
|
||
|
url = "https://victoria-metrics.dgnum.eu";
|
||
|
basicAuthUsername = "";
|
||
|
basicAuthPasswordFile = config.age.secrets."vmagent-aut_password_file".path;
|
||
|
};
|
||
|
|
||
|
# FIXME: Write the actual configuration
|
||
|
prometheusConfig = { };
|
||
|
};
|
||
|
}
|