Logging
Logs are collected with Fluent Bit and are exported to CloudWatch.
Logs on AWS
Logs will automatically be pushed to CloudWatch and a log group with the same name as your cluster will be created to store your logs. API logs are tagged with labels to help with log aggregation and filtering. Log lines greater than 5 MB in size will be ignored.
You can use the cortex logs
command to get a CloudWatch Insights URL of query to fetch logs for your API. Please note that there may be a few minutes of delay from when a message is logged to when it is available in CloudWatch Insights.
RealtimeAPI:
AsyncAPI:
BatchAPI:
TaskAPI:
Streaming logs from the CLI
You can stream logs directly from a random pod of a running workload to iterate and debug quickly. These logs will not be as comprehensive as the logs that are available in CloudWatch.
Structured logging
If you log JSON strings from your APIs, they will be automatically parsed before pushing to CloudWatch.
It is recommended to configure your JSON logger to use message
or msg
as the key for the log line if you would like the sample queries above to display the messages in your logs.
Avoid using top-level keys that start with "cortex" to prevent collisions with Cortex's internal logging.
Exporting logs
You can export both the Cortex system logs and your application logs to your desired destination by configuring FluentBit.
Configure kubectl
Follow these instructions to set up kubectl.
Find supported destinations in FluentBit
Visit FluentBit's output docs to see a list supported destinations.
Make sure to navigate to the version of FluentBit being used in your cluster. You can find the version of FluentBit by looking at the first view lines of one of the FluentBit pod logs.
Get the FluentBit pods:
FluentBit's version should be in the first few log lines of a FluentBit pod:
Update FluentBit configuration
Define patch.yaml
with your new output configuration:
Update FluentBit's configuration:
Restart FluentBit
Restart FluentBit to apply the new configuration:
Last updated