如何过滤kubernetes上的fluentD日志



我的kubernetes启用了liveness,它登录应用程序,如下所示:

kubectl logs -n example-namespace example-app node-app
::ffff:127.0.0.1 - - [17/Sep/2020:14:12:19 +0000] "GET /docs HTTP/1.1" 301 175
::ffff:127.0.0.1 - - [17/Sep/2020:14:13:19 +0000] "GET /docs/ HTTP/1.1" 200 3104
::192.168.0.1    - - [17/Sep/2020:14:13:19 +0000] "GET /home-page HTTP/1.1" 200 3104
::ffff:127.0.0.1 - - [17/Sep/2020:14:13:19 +0000] "GET /docs HTTP/1.1" 301 175
::ffff:127.0.0.1 - - [17/Sep/2020:14:13:22 +0000] "GET /docs/ HTTP/1.1" 200 3104

我使用fluentD将日志发送到ClowdWatch。我的fluentD配置:

https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/latest/k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/quickstart/cwagent-fluentd-quickstart.yaml

我如何过滤,到fluentD只匹配

:192.168.0.1-[2020年9月17日4:13:19+0000]";GET/主页HTTP/1.1";200 3104

并忽略

:ffff:120.0.1-[2020年9月17日4:13:19+0000]";GET/docs HTTP/1.1";301 175

谢谢!

经过一番研究,我找到了这个解决方案:

<match kubernetes.var.log.containers.**_kube-system_**>
@type null
</match>

和这个

<filter **>
@type grep
exclude1 log docs
</filter>

参考:

https://github.com/fabric8io/fluent-plugin-kubernetes_metadata_filter/issues/91

https://docs.fluentd.org/filter/grep

编辑

或添加:

exclude_path ["/var/log/containers/cloudwatch-agent*", "/var/log/containers/fluentd*", "/var/log/containers/*istio*"]    

此配置忽略模式为istio的源文件。

相关内容

  • 没有找到相关文章

最新更新