prometheus: Enable gitea metrics

This commit is contained in:
The Hedgehog 2022-08-05 11:06:01 -04:00
parent 2a354b2425
commit 2ae121d666
No known key found for this signature in database

View file

@ -12,7 +12,17 @@
{
job_name = "marvin";
static_configs = [{
targets = [ "127.0.0.1:${toString config.services.prometheus.exporters.node.port}" ];
targets = [
"127.0.0.1:${toString config.services.prometheus.exporters.node.port}"
];
}];
}
{
job_name = "gitea";
static_configs = [{
targets = [
"127.0.0.1:${toString config.services.gitea.httpPort}"
];
}];
}
];