monitoring: add prometheus-exporter, promtail to
delite, blue-shell add instance labels to garage scrape jobs
This commit is contained in:
parent
3556a653be
commit
b2cb9755e1
|
@ -105,8 +105,8 @@
|
|||
self.nixosModules.overlays
|
||||
self.nixosModules.unlock-luks-on-boot
|
||||
self.nixosModules.core
|
||||
#self.nixosModules.prometheus-exporters
|
||||
#self.nixosModules.promtail
|
||||
self.nixosModules.prometheus-exporters
|
||||
self.nixosModules.promtail
|
||||
|
||||
self.nixosModules.garage
|
||||
self.nixosModules.nginx
|
||||
|
@ -122,8 +122,8 @@
|
|||
self.nixosModules.overlays
|
||||
self.nixosModules.unlock-luks-on-boot
|
||||
self.nixosModules.core
|
||||
#self.nixosModules.prometheus-exporters
|
||||
#self.nixosModules.promtail
|
||||
self.nixosModules.prometheus-exporters
|
||||
self.nixosModules.promtail
|
||||
|
||||
self.nixosModules.garage
|
||||
self.nixosModules.nginx
|
||||
|
|
|
@ -74,6 +74,22 @@
|
|||
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 = [
|
||||
"trinkgenossin.wg.${config.pub-solar-os.networking.domain}:3903"
|
||||
];
|
||||
labels = {
|
||||
instance = "trinkgenossin";
|
||||
};
|
||||
}
|
||||
{
|
||||
targets = [
|
||||
"delite.wg.${config.pub-solar-os.networking.domain}:3903"
|
||||
];
|
||||
labels = {
|
||||
instance = "delite";
|
||||
};
|
||||
}
|
||||
{
|
||||
targets = [
|
||||
"blue-shell.wg.${config.pub-solar-os.networking.domain}:3903"
|
||||
];
|
||||
labels = {
|
||||
instance = "blue-shell";
|
||||
};
|
||||
}
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue