The Kubernetes platform.
The Package manager.
The Open Service Broker.
The logging platform is made up of 2 components - Fluentbit and Logger.
Fluentbit runs on every worker node of the cluster and is deployed as a Daemon Set. The Fluentbit pods capture all of the stderr and stdout streams of every container running on the host (even those not hosted directly by kubernetes). Once the log message arrives in our custom fluentbit plugin we determine where the message originated.
If the message was from the Workflow Controller or from an application deployed via workflow we send it to the logs topic on the local Redis Stream instance.
Logger then acts as a consumer reading messages off of the Redis Stream logs topic storing those messages in a local Redis instance. When a user wants to retrieve log entries using the drycc logs
command we make an HTTP request from Controller to Logger which then fetches the appropriate data from Redis.
Even though we provide a redis instance with the default Workflow install, it is recommended that operators use a third-party source like Elasticache or similar offering. This way your data is durable across upgrades or outages. If you have a third-party Redis installation you would like to use all you need to do is set the following values in your helm chart:
These can be changed by running helm inspect values drycc/workflow > values.yaml
before using
helm install
to complete the installation. To customize the redis credentials, edit values.yaml
and modify the redis
section of the file to tune these settings.
If the drycc logs
command encounters an error it will return the following message:
Error: There are currently no log messages. Please check the following things:
1) Logger and fluentbit pods are running.
2) The application is writing logs to the logger component by checking that an entry in the ring buffer was created: kubectl --namespace=drycc logs <logger pod>
3) Making sure that the container logs were mounted properly into the fluentbit pod: kubectl --namespace=drycc exec <fluentbit pod> ls /var/log/containers
┌────────┐
│ Router │ ┌────────┐ ┌─────┐
└────────┘ │ Logger │◀───▶│Redis│
│ └────────┘ └─────┘
Log file ▲
│ │
▼ │
┌────────┐ ┌─────────┐ logs/metrics ┌──────────────┐
│App Logs│──Log File──▶│Fluentbit│───────topics─────▶│ Redis Stream │
└────────┘ └─────────┘ └──────────────┘
Fluent Bit is based in a pluggable architecture where different plugins plays a major role in the data pipeline, more than 70 built-in plugins available. Please refer to charts values.yaml for specific configurations.