登录
首页 >  Golang >  Go问答

为什么使用了 -c 参数,filebeat 还是去加载 etc 中的 filebeat.yml?

来源:SegmentFault

时间:2023-01-26 19:20:15 291浏览 收藏

亲爱的编程学习爱好者,如果你点开了这篇文章,说明你对《为什么使用了 -c 参数,filebeat 还是去加载 etc 中的 filebeat.yml?》很感兴趣。本篇文章就来给大家详细解析一下,主要介绍一下Java、go、python、后端、elk,希望所有认真读完的童鞋们,都有实质性的提高。

问题内容

路径

/home/bot/Desktop/coder/ideaboom/test_ELK_EFK
filebeat.yml
文件

┌──(bot㉿kali)-[~/Desktop/coder/ideaboom/test_ELK_EFK]
└─$ ll                                                                                                             130 ⨯
总用量 35476
drwxr-xr-x  2 bot bot     4096  7月 22 23:10 .
drwxr-xr-x 74 bot bot     4096  7月 22 23:07 ..
-rw-r--r--  1 bot bot 36311970  2月 28 22:11 filebeat-7.17.1-amd64.deb
-rw-r--r--  1 bot bot        0  7月 22 23:07 filebeat_send.py
-rwxr-xr-x  1 bot bot      224  7月 22 23:07 filebeat.yml

filebeat.yml
文件内容

filebeat.inputs:
  - type: log
    enabled: true
    paths:
      - /Users/ponponon/Desktop/code/me/ideaboom/test_ELK_EFK/logs/*.log

setup.kibana:
  host: "localhost:5601"

output.elasticsearch:
  hosts: ["localhost:9200"]

当我运行 filebeat 的时候:

┌──(bot㉿kali)-[~/Desktop/coder/ideaboom/test_ELK_EFK]
└─$ filebeat -c ./filebeat.yml                                                                                     130 ⨯
Exiting: error loading config file: open /etc/filebeat/filebeat.yml: permission denied

?????????????????????????

我都

-c ./filebeat.yml
了,
filebeat
为什么还要去
/etc/filebeat/filebeat.yml

我是通过

wget https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-7.17.1-amd64.deb
然后
sudo apt install ./filebeat-7.17.1-amd64.deb
安装的 filebeat,不是跑在 docker 中!

正确答案

global flags

-c, --c FILE

Specifies the configuration file to use for Filebeat. The file you specify here is relative to
path.config
.
If the -c flag is not specified, the default config file, filebeat.yml, is used.
--path.config

Sets the path for configuration files. See the Directory layout section for details.

根据 Directory layou

path.config
默认值是
/etc/filebeat

所以,它去找了

/etc/filebeat/filebeat.yml

以上就是本文的全部内容了,是否有顺利帮助你解决问题?若是能给你带来学习上的帮助,请大家多多支持golang学习网!更多关于Golang的相关知识,也可关注golang学习网公众号。

声明:本文转载于:SegmentFault 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>
评论列表