Compare commits
2 Commits
179d0743ce
...
0f77a42e34
Author | SHA1 | Date | |
---|---|---|---|
0f77a42e34 | |||
c64d28fc26 |
1546
hosts/ildkule/services/monitoring/dashboards/gitea-dashbaord.json
Normal file
1546
hosts/ildkule/services/monitoring/dashboards/gitea-dashbaord.json
Normal file
File diff suppressed because it is too large
Load Diff
@ -75,6 +75,12 @@ in {
|
|||||||
url = "https://grafana.com/api/dashboards/240/revisions/3/download";
|
url = "https://grafana.com/api/dashboards/240/revisions/3/download";
|
||||||
options.path = dashboards/go-processes.json;
|
options.path = dashboards/go-processes.json;
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
name = "Gitea Dashbaord";
|
||||||
|
type = "file";
|
||||||
|
url = "https://grafana.com/api/dashboards/17802/revisions/3/download";
|
||||||
|
options.path = dashboards/gitea-dashbaord.json;
|
||||||
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
};
|
};
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{ config, ... }: {
|
{ config, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
./gogs.nix
|
./gitea.nix
|
||||||
./matrix-synapse.nix
|
./matrix-synapse.nix
|
||||||
# TODO: enable once https://github.com/NixOS/nixpkgs/pull/242365 gets merged
|
# TODO: enable once https://github.com/NixOS/nixpkgs/pull/242365 gets merged
|
||||||
# ./mysqld.nix
|
# ./mysqld.nix
|
||||||
|
16
hosts/ildkule/services/monitoring/prometheus/gitea.nix
Normal file
16
hosts/ildkule/services/monitoring/prometheus/gitea.nix
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
services.prometheus.scrapeConfigs = [{
|
||||||
|
job_name = "gitea";
|
||||||
|
scrape_interval = "60s";
|
||||||
|
scheme = "https";
|
||||||
|
|
||||||
|
static_configs = [
|
||||||
|
{
|
||||||
|
targets = [
|
||||||
|
"git.pvv.ntnu.no:443"
|
||||||
|
];
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}];
|
||||||
|
}
|
@ -1,16 +0,0 @@
|
|||||||
{ config, ... }: let
|
|
||||||
cfg = config.services.prometheus;
|
|
||||||
in {
|
|
||||||
services.prometheus.scrapeConfigs = [{
|
|
||||||
job_name = "git-gogs";
|
|
||||||
scheme = "https";
|
|
||||||
metrics_path = "/-/metrics";
|
|
||||||
static_configs = [
|
|
||||||
{
|
|
||||||
targets = [
|
|
||||||
"essendrop.pvv.ntnu.no:443"
|
|
||||||
];
|
|
||||||
}
|
|
||||||
];
|
|
||||||
}];
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user