grafana: init
All checks were successful
Build and Deploy / deploy (push) Successful in 2m14s

Shows powerdraw, temps, uptime, and jellyfin streams
This commit is contained in:
2026-03-31 10:57:40 -04:00
parent 5375f8ee34
commit e3be112b82
3 changed files with 552 additions and 0 deletions

View File

@@ -153,6 +153,22 @@ rec {
port = 8020;
proto = "tcp";
};
grafana = {
port = 3000;
proto = "tcp";
};
prometheus = {
port = 9090;
proto = "tcp";
};
prometheus_node = {
port = 9100;
proto = "tcp";
};
prometheus_apcupsd = {
port = 9162;
proto = "tcp";
};
};
};
@@ -266,6 +282,11 @@ rec {
domain = "firefox-sync.${https.domain}";
};
grafana = {
dir = services_dir + "/grafana";
domain = "grafana.${https.domain}";
};
media = {
moviesDir = torrents_path + "/media/movies";
tvDir = torrents_path + "/media/tv";