Kubernetes Logging With Fluentd and Fluent Bit
k8s logging fluentd fluent-bit
Introduction Part of observability is logging. Logging is heavily used to debug and understand what is happening in systems.
The end goal is to have logging to Elasticsearch that is running in the cluster with fluent-bit to a fluentd.
Fluent-bit Fluent-bit is going to be used to grab the logs from pods, check if they are json, if so parse them, and then forward them to fluentd. The reason for using both fluent-bit and fluentd is that we can aggregate the logs in fluentd.
Read more...