perf(focus): remove grafana dashboard

This commit is contained in:
514fpv 2024-02-18 17:59:13 +08:00
parent 633cecfcde
commit 5d0252ac68
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw
2 changed files with 0 additions and 44 deletions

View file

@ -1,36 +0,0 @@
{ 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,14 +17,6 @@
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/";
};
};
};
};