我正在使用给定的配置将 Prometheus 与 Thanos 一起部署:
global:
scrape_interval: 15s # By default, scrape targets every 15 seconds.
# Attach these labels to any time series or alerts when communicating with
# external systems (federation, remote storage, Alertmanager).
external_labels:
monitor: %%CLUSTER%%
replica: $(HOSTNAME)
我从 Thanos 示例文档中得到了这个,但我无法完成这项工作。“%%CLUSTER%% 给出“不能从给定的令牌开始”错误,而 HOSTNAME 替换永远不会发生。
我在这个问题上读到不支持变量替换,但灭霸文档另有说明。 https://github.com/prometheus/prometheus/issues/2357
还有其他方法可以实现吗?