0

我正在尝试使用原始适配器在远程机器上发送日志。在我的日志机器上使用 ELK(logstash)。我在 go 模板中收到了容器名称,但我无法正确接收主机名。“主机”字段是 IP 号而不是主机名。我尝试在 go-template 中使用我在 raw_format 变量中使用的接收主机名,如下所示:

"RAW_FORMAT={ "container": {{ toJSON .Container.Name }},"message": {{ toJSON .Data }},"hostname": {{ toJSON .Container.Config.Hostname }} }\n" but i receive "localhost"

这是我的 docker-compose.yaml 文件

networks:
logging:
services:
logspout:
image: gliderlabs/logspout:v3.2.12
command: 'raw+tcp://some.addres:5000'
environment:
- DEBUG=1
- "RAW_FORMAT={ "container": {{ toJSON .Container.Name }},"message": {{ toJSON .Data }},"hostname": {{ toJSON .Container.Config.Hostname }} }\n"
volumes:
- /etc/hostname:/etc/hostname
- /etc/hosts:/etc/hosts
- /var/run/docker.sock:/var/run/docker.sock
networks:
- logging```
4

0 回答 0