feat(focus): add grafana dashboard

This commit is contained in:
514fpv 2024-01-29 17:44:41 +08:00
parent 5738dc8c3c
commit 1a69ea37ee
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw
2 changed files with 44 additions and 0 deletions

36
spec/focus/grafana.nix Normal file
View file

@ -0,0 +1,36 @@
{ config
, ... }: {
services.grafana = {
enable = true;
dataDir = "/nix/persist/service/grafana";
settings = {
server = {
http_addr = "127.0.0.1";
http_port = 3000;
domain = "sf.514fpv.io";
root_url = "https://sf.514fpv.io:8086/dash";
serve_from_sub_path = true;
};
};
};
services.prometheus = {
enable = true;
port = 9001;
exporters = {
node = {
enable = true;
enabledCollectors = [ "systemd" ];
port = 9002;
};
};
};
services.nginx.virtualHosts."sf.514fpv.io".locations."/dash/" = {
proxyPass = "http://${toString config.services.grafana.settings.server.http_addr}:${toString config.services.grafana.settings.server.http_port}";
proxyWebsockets = true;
recommendedProxySettings = true;
};
global.fs.zfs.mountpoints."/nix/persist/service/grafana" = "service/grafana";
}

View file

@ -17,6 +17,14 @@
useACMEHost = ".sf.514fpv.io";
extraConfig = "return 444;";
};
"sf.514fpv.io" = {
addSSL = true;
useACMEHost = "sf.514fpv.io";
locations."/" = {
return = "307 https://sf.514fpv.io:8086/dash/";
};
};
};
};