Filebeat 具有自定义日志文件和 kubernetes 元数据到 Elasticsearch 和 kibana
我们的应用程序部署在 AWS EKS 集群中,由于某些原因,我们需要将应用程序日志写入单独的文件,例如 ${POD_NAME}.applog 而不是 stdout(我们将 /var/log/container/ 安装到 pod /log 文件夹并且应用程序写入 /log/${POD_NAME}.applog )。我们使用 filebeat 将日志发送到 Elasticsearch,并使用 Kibana 进行可视化。我们的 filebeat 配置文件看起来像这样
data:
filebeat.yml: |-
filebeat.inputs:
- type: log
paths:
- /var/log/containers/*.applog
json.keys_under_root: true
json.message_key: log
processors:
- add_cloud_metadata:
- add_host_metadata:
这工作正常,但我们意识到我们缺少 ES 和 Kibana 中的 kuberenetes 元数据。但是当我们包含 -type: conatainer
时,我们就会获取 kuberenetes 元数据。
data:
filebeat.yml: |-
filebeat.inputs:
- type: log
paths:
- /var/log/containers/*.applog
json.keys_under_root: true
json.message_key: log
- type: container
paths:
- /var/log/containers/*.log
processors:
- add_kubernetes_metadata:
host: ${NODE_NAME}
matchers:
- logs_path:
logs_path: "/var/log/containers/"
因此,我们尝试添加这样的配置,
data:
filebeat.yml: |-
filebeat.inputs:
- type: log
paths:
- /var/log/containers/*.applog
json.keys_under_root: true
json.message_key: log
processors:
- add_kubernetes_metadata:
in_cluster: true
host: ${NODE_NAME}
- add_cloud_metadata:
- add_host_metadata:
但我们仍然没有在 kibana 中获取 kuberenetes 元数据。我尝试了所有的试错方法,但没有任何效果。
有人可以帮助我如何使用 filebeat 中的自定义日志文件获取 Kubernetes 元数据吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们在 EKS 1.24 下遇到了同样的问题,日志条目中没有 kubernetes 元数据。根据文档添加 Kubernetes 元数据编辑,我们在filebeat版本
7.17.8
下通过以下配置解决。应禁用默认索引器和匹配器。 pod_uid 索引器可以使用 pod 的 UID 来识别 pod 元数据。您可以从 logs_path 匹配器配置rel="nofollow noreferrer">此处
We meet the same issue under EKS 1.24, there is no kubernetes metadata in the log entry. Per doc Add Kubernetes metadataedit, we solve it through the following config under filebeat version
7.17.8
.The default indexer and matcher should be disabled. And the
pod_uid
indexers could identify the pod metadata using the UID of the pod. You could find thelogs_path
matchers config from here