monitoring: add prometheus-exporter, promtail to
delite, blue-shell add instance labels to garage scrape jobs
This commit is contained in:
parent
ec5e9896fd
commit
19723f3812
|
@ -105,8 +105,8 @@
|
||||||
self.nixosModules.overlays
|
self.nixosModules.overlays
|
||||||
self.nixosModules.unlock-luks-on-boot
|
self.nixosModules.unlock-luks-on-boot
|
||||||
self.nixosModules.core
|
self.nixosModules.core
|
||||||
#self.nixosModules.prometheus-exporters
|
self.nixosModules.prometheus-exporters
|
||||||
#self.nixosModules.promtail
|
self.nixosModules.promtail
|
||||||
|
|
||||||
self.nixosModules.garage
|
self.nixosModules.garage
|
||||||
self.nixosModules.nginx
|
self.nixosModules.nginx
|
||||||
|
@ -122,8 +122,8 @@
|
||||||
self.nixosModules.overlays
|
self.nixosModules.overlays
|
||||||
self.nixosModules.unlock-luks-on-boot
|
self.nixosModules.unlock-luks-on-boot
|
||||||
self.nixosModules.core
|
self.nixosModules.core
|
||||||
#self.nixosModules.prometheus-exporters
|
self.nixosModules.prometheus-exporters
|
||||||
#self.nixosModules.promtail
|
self.nixosModules.promtail
|
||||||
|
|
||||||
self.nixosModules.garage
|
self.nixosModules.garage
|
||||||
self.nixosModules.nginx
|
self.nixosModules.nginx
|
||||||
|
|
|
@ -74,6 +74,22 @@
|
||||||
instance = "trinkgenossin";
|
instance = "trinkgenossin";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
targets = [
|
||||||
|
"delite.wg.${config.pub-solar-os.networking.domain}:${toString config.services.prometheus.exporters.node.port}"
|
||||||
|
];
|
||||||
|
labels = {
|
||||||
|
instance = "delite";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
targets = [
|
||||||
|
"blue-shell.wg.${config.pub-solar-os.networking.domain}:${toString config.services.prometheus.exporters.node.port}"
|
||||||
|
];
|
||||||
|
labels = {
|
||||||
|
instance = "blue-shell";
|
||||||
|
};
|
||||||
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
@ -94,9 +110,26 @@
|
||||||
{
|
{
|
||||||
targets = [
|
targets = [
|
||||||
"trinkgenossin.wg.${config.pub-solar-os.networking.domain}:3903"
|
"trinkgenossin.wg.${config.pub-solar-os.networking.domain}:3903"
|
||||||
|
];
|
||||||
|
labels = {
|
||||||
|
instance = "trinkgenossin";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
targets = [
|
||||||
"delite.wg.${config.pub-solar-os.networking.domain}:3903"
|
"delite.wg.${config.pub-solar-os.networking.domain}:3903"
|
||||||
|
];
|
||||||
|
labels = {
|
||||||
|
instance = "delite";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
targets = [
|
||||||
"blue-shell.wg.${config.pub-solar-os.networking.domain}:3903"
|
"blue-shell.wg.${config.pub-solar-os.networking.domain}:3903"
|
||||||
];
|
];
|
||||||
|
labels = {
|
||||||
|
instance = "blue-shell";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue