WIP prometheus testing
This commit is contained in:
parent
753377fc3f
commit
884d2c3282
3 changed files with 44 additions and 1 deletions
|
@ -33,6 +33,7 @@ in
|
|||
networking.firewall = lib.mkForce {
|
||||
enable = true;
|
||||
allowedTCPPorts = [
|
||||
22
|
||||
80 # for acme challenges
|
||||
443
|
||||
3000 # forgejo
|
||||
|
@ -61,9 +62,14 @@ in
|
|||
ports = [ 56528 ];
|
||||
};
|
||||
|
||||
services.endlessh = {
|
||||
services.endlessh-go = {
|
||||
enable = true;
|
||||
port = 22;
|
||||
prometheus = {
|
||||
enable = true;
|
||||
listenAddress = "127.0.0.1";
|
||||
port = 9090;
|
||||
};
|
||||
};
|
||||
|
||||
environment.systemPackages = map lib.lowPrio [
|
||||
|
|
|
@ -11,6 +11,8 @@
|
|||
./disk-config.nix
|
||||
../../modules
|
||||
./adguard.nix
|
||||
../../modules/nix
|
||||
./prometheus.nix
|
||||
];
|
||||
|
||||
age.secrets.navidrome.file = ../../secrets/navidrome.age;
|
||||
|
|
35
hosts/shan/prometheus.nix
Normal file
35
hosts/shan/prometheus.nix
Normal file
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
...
|
||||
}:
|
||||
let
|
||||
port = 9090;
|
||||
grafanaPort = 3000;
|
||||
in
|
||||
{
|
||||
services.prometheus = {
|
||||
enable = true;
|
||||
inherit port;
|
||||
scrapeConfigs = [
|
||||
{
|
||||
job_name = "endlessh-go";
|
||||
static_configs = [ { targets = [ "raptus:9090" ]; } ];
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
networking.firewall.allowedTCPPorts = [
|
||||
port
|
||||
grafanaPort
|
||||
];
|
||||
|
||||
services.grafana = {
|
||||
enable = true;
|
||||
settings = {
|
||||
analytics.enabled = false;
|
||||
server = {
|
||||
http_addr = "0.0.0.0";
|
||||
http_port = grafanaPort;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue