summaryrefslogtreecommitdiff
path: root/hosts/atlas/prometheus.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/atlas/prometheus.nix')
-rw-r--r--hosts/atlas/prometheus.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/hosts/atlas/prometheus.nix b/hosts/atlas/prometheus.nix
deleted file mode 100644
index 041c407..0000000
--- a/hosts/atlas/prometheus.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{config, ...}: {
- networking.firewall.allowedTCPPorts = [config.services.prometheus.exporters.node.port];
-
- services.prometheus.exporters.node = {
- enable = true;
- enabledCollectors = ["systemd"];
- };
-
- getchoo.server.services.promtail.clients = [
- {
- url = "http://p-body:3030/loki/api/v1/push";
- }
- ];
-}