当前位置: 首页 > 工具软件 > Beats > 使用案例 >

elastic beats 开发

仉昂熙
2023-12-01

1. elastic beats 开发

1.1. 搭建开发环境

参考自这篇文章: https://www.elastic.co/guide/en/beats/devguide/7.15/beats-contributing.html#setting-up-dev-environment

1.1.1. Go 版本

需要 Go 版本: 1.17+。虽然官方文档说是 1.16,但如果不用 1.17+ 的话会报错: sf.IsExported undefined (type reflect.StructField has no field or method IsExported)

1.1.2. 下载代码

mkdir -p ${GOPATH}/src/github.com/elastic
git clone https://github.com/elastic/beats ${GOPATH}/src/github.com/elastic/beats

1.2. filebeat 编译

cd beats/filebeat
make

1.3. 总结

1.3.1. 找对文档是非常重要的

一开始找到的文章叫我到 scripts 下面去执行 generate.py, 结果被告知要安装 mage。绕了一圈才找到上面的文章。

找对文档是非常重要的!

 类似资料: