Promtail
Promtail是Log傳輸軟體,屬於Grafana的Loki生態系。
安裝
在Ubuntu上可以透過官方的APT repository安裝:
sudo curl -L -o /usr/share/keyrings/grafana.key https://apt.grafana.com/gpg.key; echo "deb [signed-by=/usr/share/keyrings/grafana.key] https://apt.grafana.com stable main" | sudo tee -a /etc/apt/sources.list.d/grafana.list; sudo apt update; sudo apt install -y promtail; sudo apt clean
設定
在/etc/promtail/config.yml
裡面把Loki預設的位置改成實際的位置:
clients:
- url: http://localhost:3100/loki/api/v1/push
然後重新啟動:
sudo service promtail restart
相關連結
外部連結
- 官方網站 (英文)