1

我不确定这个问题是否与 promtail(使用的舵图)或舵本身有关。

我想将 loki 图表的默认主机值更新为 kubernetes 上使用的本地主机,所以我尝试了这个:

helm upgrade --install --namespace loki promtail grafana/promtail --set client.url=http://loki:3100/loki/api/v1/push

并使用这样的自定义 values.yaml:

helm upgrade --install --namespace loki promtail grafana/promtail -f promtail.yaml

但它仍然使用错误的默认网址:

level=warn ts=2021-10-08T11:51:59.782636939Z caller=client.go:344 component=client host=loki-gateway msg="error sending batch, will retry" status=-1 error="Post \"http://loki-gateway/loki/api/v1/push\": dial tcp: lookup loki-gateway on 10.43.0.10:53: no such host"

如果我检查 config.yaml,它的使用不会使用我在安装期间提供的内部 url:

root@promtail-69hwg:/# cat /etc/promtail/promtail.yaml 
server:
  log_level: info
  http_listen_port: 3101

client:
  url: http://loki-gateway/loki/api/v1/push

有任何想法吗?或者我错过了什么?

谢谢

4

1 回答 1

2

我不认为client.urlhelm 图表中的值,而是您的应用程序正在使用的配置文件中的值。

尝试设置config.lokiAddress

config:
  lokiAddress: http://loki-gateway/loki/api/v1/push

被模板化到我提到的配置文件中。

于 2021-10-08T14:03:31.360 回答