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 {
|
networking.firewall = lib.mkForce {
|
||||||
enable = true;
|
enable = true;
|
||||||
allowedTCPPorts = [
|
allowedTCPPorts = [
|
||||||
|
22
|
||||||
80 # for acme challenges
|
80 # for acme challenges
|
||||||
443
|
443
|
||||||
3000 # forgejo
|
3000 # forgejo
|
||||||
|
@ -61,9 +62,14 @@ in
|
||||||
ports = [ 56528 ];
|
ports = [ 56528 ];
|
||||||
};
|
};
|
||||||
|
|
||||||
services.endlessh = {
|
services.endlessh-go = {
|
||||||
enable = true;
|
enable = true;
|
||||||
port = 22;
|
port = 22;
|
||||||
|
prometheus = {
|
||||||
|
enable = true;
|
||||||
|
listenAddress = "127.0.0.1";
|
||||||
|
port = 9090;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = map lib.lowPrio [
|
environment.systemPackages = map lib.lowPrio [
|
||||||
|
|
|
@ -11,6 +11,8 @@
|
||||||
./disk-config.nix
|
./disk-config.nix
|
||||||
../../modules
|
../../modules
|
||||||
./adguard.nix
|
./adguard.nix
|
||||||
|
../../modules/nix
|
||||||
|
./prometheus.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
age.secrets.navidrome.file = ../../secrets/navidrome.age;
|
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