30 lines
435 B
Nix
30 lines
435 B
Nix
rec {
|
|
git = {
|
|
port = 3000;
|
|
domain = "git.nudelerde.de";
|
|
};
|
|
|
|
"metric-exporter" = {
|
|
port = 9100;
|
|
collectors = [
|
|
"systemd"
|
|
"processes"
|
|
];
|
|
};
|
|
|
|
prometheus = {
|
|
port = 9090;
|
|
scrapeConfigs = {
|
|
node = {
|
|
static_configs = [
|
|
{
|
|
targets = [
|
|
"localhost:9100"
|
|
"pi.home:9100"
|
|
];
|
|
}
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|