Filebeat没有将日志推送到Elasticsearch

时间:2018-03-15 13:30:41

标签: docker elasticsearch configuration elastic-stack filebeat

我是码头工人和所有这些日志记录的新手,所以也许我犯了一个错误的错误,所以感谢提前帮助。我让ELK通过Dockerfile行运行一个docker容器(6.2.2):

Privacy Badger

在一个单独的容器中,我通过后续的Dockerfile行安装并运行Filebeat:

FROM sebp/elk:latest

我的Filebeat配置是:

RUN curl -L -O -k https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-6.2.2-amd64.deb
RUN dpkg -i filebeat-6.2.2-amd64.deb
COPY resources/filebeat/filebeat.yml /etc/filebeat/filebeat.yml
RUN chmod go-w /etc/filebeat/filebeat.yml
RUN /usr/share/filebeat/bin/filebeat -e -d "publish" &

正如您所看到的,我正在尝试对弹性搜索进行自定义索引,但现在我只是试图让默认工作先行。 jetty日志都具有全局读取权限。

docker容器日志显示没有错误,运行后我确保配置和输出正常:

filebeat.prospectors:
- type: log
  enabled: true
  paths:
    - /jetty/jetty-distribution-9.3.8.v20160314/logs/*.log
output.logstash:
  enabled: false
  hosts: ["elk-stack:9002"]
  #index: 'audit'
output.elasticsearch:
  enabled: true
  hosts: ["elk-stack:9200"]
  #index: "audit-%{+yyyy.MM.dd}"
path.config: "/etc/filebeat"
#setup.template.name: "audit"
#setup.template.pattern: "audit-*"
#setup.template.fields: "${path.config}/fields.yml"

/ var / log / filebeat / filebeat显示:

# filebeat test config
Config OK
# filebeat test output
elasticsearch: http://elk-stack:9200...
  parse url... OK
  connection...
    parse host... OK
    dns lookup... OK
    addresses: 172.17.0.3
    dial up... OK
  TLS... WARN secure connection disabled
  talk to server... OK
  version: 6.2.2

但是当我点击localhost:9200 / _cat / indices?v它没有返回任何索引:

2018-03-15T13:23:38.859Z        INFO    instance/beat.go:468    Home path: [/usr/share/filebeat] Config path: [/etc/filebeat] Data path: [/var/lib/filebeat] Logs path: [/var/log/filebeat]
2018-03-15T13:23:38.860Z        INFO    instance/beat.go:475    Beat UUID: ed5cecaf-cbf5-438d-bbb9-30bab80c4cb9
2018-03-15T13:23:38.860Z        INFO    elasticsearch/client.go:145     Elasticsearch url: http://elk-stack:9200
2018-03-15T13:23:38.891Z        INFO    elasticsearch/client.go:690     Connected to Elasticsearch version 6.2.2

我如何让这个工作?我没有想法。再次感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

要回答我自己的问题,您无法使用以下命令启动filebeat:

RUN /usr/share/filebeat/bin/filebeat -e -d "publish" &

并在容器启动后继续运行。需要手动启动它或让它在带有ENTRYPOINT标记的自己的容器中启动。