From 3886c43de8152f5015edfc11c309dcac28e3075d Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Thu, 22 Jan 2026 16:48:32 -0800 Subject: [PATCH] Disable thermal collector on indri Alloy The thermal collector fails on macOS M1 with "no CPU power status has been recorded" - this hardware doesn't expose power metrics in a way the collector understands. Co-Authored-By: Claude Opus 4.5 --- ansible/roles/alloy/templates/config.alloy.j2 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ansible/roles/alloy/templates/config.alloy.j2 b/ansible/roles/alloy/templates/config.alloy.j2 index 1702505..b4171dd 100644 --- a/ansible/roles/alloy/templates/config.alloy.j2 +++ b/ansible/roles/alloy/templates/config.alloy.j2 @@ -6,6 +6,9 @@ // System metrics exporter (replaces node_exporter) prometheus.exporter.unix "system" { + // Disable collectors that don't work on macOS + disable_collectors = ["thermal"] + textfile { directory = "{{ alloy_textfile_dir }}" }