@cryptotaxi247 / infra / commits / beb738d7

pluto: fix elasticsearch exporter collector flags

elasticsearch_exporter 1.10.0 renamed --es.cluster_settings and --es.snapshots to --collector.clustersettings and --collector.snapshots. The old flags caused the service to fail on startup with 'unknown long flag'.

Jörg Thalheim committed Jul 8, 2026 at 08:07 UTC beb738d753fc95efb52770e644c4c87df7bc062e
1 file changed +2 -2
build/pluto/prometheus/exporters/elasticsearch.nix
+2 -2
@@ -14,8 +14,8 @@
14 extraFlags = [
15 "--es.all"
16 "--es.indices"
17 - "--es.cluster_settings"
18 - "--es.snapshots"
17 + "--collector.clustersettings"
18 + "--collector.snapshots"
19 ];
20 };
21