--- reviewers: - piosz - x13n title: Logging Architecture content_type: concept weight: 60 --- Application logs can help you understand what is happening inside your application. The logs are particularly useful for debugging problems and monitoring cluster activity. Most modern applications have some kind of logging mechanism. Likewise, container engines are designed to support logging. The easiest and most adopted logging method for containerized applications is writing to standard output and standard error streams. However, the native functionality provided by a container engine or runtime is usually not enough for a complete logging solution. For example, you may want to access your application's logs if a container crashes, a pod gets evicted, or a node dies. In a cluster, logs should have a separate storage and lifecycle independent of nodes, pods, or containers. This concept is called [cluster-level logging](#cluster-level-logging-architectures). Cluster-level logging architectures require a separate backend to store, analyze, and query logs. Kubernetes does not provide a native storage solution for log data. Instead, there are many logging solutions that integrate with Kubernetes. The following sections describe how to handle and store logs on nodes. ## Pod and container logs {#basic-logging-in-kubernetes} Kubernetes captures logs from each container in a running Pod. This example uses a manifest for a `Pod` with a container that writes text to the standard output stream, once per second. {{< codenew file="debug/counter-pod.yaml" >}} To run this pod, use the following command: ```shell kubectl apply -f https://k8s.io/examples/debug/counter-pod.yaml ``` The output is: ```console pod/counter created ``` To fetch the logs, use the `kubectl logs` command, as follows: ```shell kubectl logs counter ``` The output is similar to: ```console 0: Fri Apr 1 11:42:23 UTC 2022 1: Fri Apr 1 11:42:24 UTC 2022 2: Fri Apr 1 11:42:25 UTC 2022 ``` You can use `kubectl logs --previous` to retrieve logs from a previous instantiation of a container. If your pod has multiple containers, specify which container's logs you want to access by appending a container name to the command, with a `-c` flag, like so: ```console kubectl logs counter -c count ``` See the [`kubectl logs` documentation](/docs/reference/generated/kubectl/kubectl-commands#logs) for more details. ### How nodes handle container logs ![Node level logging](/images/docs/user-guide/logging/logging-node-level.png) A container runtime handles and redirects any output generated to a containerized application's `stdout` and `stderr` streams. Different container runtimes implement this in different ways; however, the integration with the kubelet is standardized as the _CRI logging format_. By default, if a container restarts, the kubelet keeps one terminated container with its logs. If a pod is evicted from the node, all corresponding containers are also evicted, along with their logs. The kubelet makes logs available to clients via a special feature of the Kubernetes API. The usual way to access this is by running `kubectl logs`. ### Log rotation {{< feature-state for_k8s_version="v1.21" state="stable" >}} You can configure the kubelet to rotate logs automatically. If you configure rotation, the kubelet is responsible for rotating container logs and managing the logging directory structure. The kubelet sends this information to the container runtime (using CRI), and the runtime writes the container logs to the given location. You can configure two kubelet [configuration settings](/docs/reference/config-api/kubelet-config.v1beta1/#kubelet-config-k8s-io-v1beta1-KubeletConfiguration), `containerLogMaxSize` and `containerLogMaxFiles`, using the [kubelet configuration file](/docs/tasks/administer-cluster/kubelet-config-file/). These settings let you configure the maximum size for each log file and the maximum number of files allowed for each container respectively. When you run [`kubectl logs`](/docs/reference/generated/kubectl/kubectl-commands#logs) as in the basic logging example, the kubelet on the node handles the request and reads directly from the log file. The kubelet returns the content of the log file. {{< note >}} Only the contents of the latest log file are available through `kubectl logs`. For example, if a Pod writes 40 MiB of logs and the kubelet rotates logs after 10 MiB, running `kubectl logs` returns at most 10MiB of data. {{< /note >}} ## System component logs There are two types of system components: those that typically run in a container, and those components directly involved in running containers. For example: * The kubelet and container runtime do not run in containers. The kubelet runs your containers (grouped together in {{< glossary_tooltip text="pods" term_id="pod" >}}) * The Kubernetes scheduler, controller manager, and API server run within pods (usually {{< glossary_tooltip text="static Pods" term_id="static-pod" >}}). The etcd component runs in the control plane, and most commonly also as a static pod. If your cluster uses kube-proxy, you typically run this as a `DaemonSet`. ### Log locations {#log-location-node} The way that the kubelet and container runtime write logs depends on the operating system that the node uses: {{< tabs name="log_location_node_tabs" >}} {{% tab name="Linux" %}} On Linux nodes that use systemd, the kubelet and container runtime write to journald by default. You use `journalctl` to read the systemd journal; for example: `journalctl -u kubelet`. If systemd is not present, the kubelet and container runtime write to `.log` files in the `/var/log` directory. If you want to have logs written elsewhere, you can indirectly run the kubelet via a helper tool, `kube-log-runner`, and use that tool to redirect kubelet logs to a directory that you choose. You can also set a logging directory using the deprecated kubelet command line argument `--log-dir`. However, the kubelet always directs your container runtime to write logs into directories within `/var/log/pods`. For more information on `kube-log-runner`, read [System Logs](/docs/concepts/cluster-administration/system-logs/#klog). {{% /tab %}} {{% tab name="Windows" %}} By default, the kubelet writes logs to files within the directory `C:\var\logs` (notice that this is not `C:\var\log`). Although `C:\var\log` is the Kubernetes default location for these logs, several cluster deployment tools set up Windows nodes to log to `C:\var\log\kubelet` instead. If you want to have logs written elsewhere, you can indirectly run the kubelet via a helper tool, `kube-log-runner`, and use that tool to redirect kubelet logs to a directory that you choose. However, the kubelet always directs your container runtime to write logs within the directory `C:\var\log\pods`. For more information on `kube-log-runner`, read [System Logs](/docs/concepts/cluster-administration/system-logs/#klog). {{% /tab %}} {{< /tabs >}}
For Kubernetes cluster components that run in pods, these write to files inside the `/var/log` directory, bypassing the default logging mechanism (the components do not write to the systemd journal). You can use Kubernetes' storage mechanisms to map persistent storage into the container that runs the component. For details about etcd and its logs, view the [etcd documentation](https://etcd.io/docs/). Again, you can use Kubernetes' storage mechanisms to map persistent storage into the container that runs the component. {{< note >}} If you deploy Kubernetes cluster components (such as the scheduler) to log to a volume shared from the parent node, you need to consider and ensure that those logs are rotated. **Kubernetes does not manage that log rotation**. Your operating system may automatically implement some log rotation - for example, if you share the directory `/var/log` into a static Pod for a component, node-level log rotation treats a file in that directory the same as a file written by any component outside Kubernetes. Some deploy tools account for that log rotation and automate it; others leave this as your responsibility. {{< /note >}} ## Cluster-level logging architectures While Kubernetes does not provide a native solution for cluster-level logging, there are several common approaches you can consider. Here are some options: * Use a node-level logging agent that runs on every node. * Include a dedicated sidecar container for logging in an application pod. * Push logs directly to a backend from within an application. ### Using a node logging agent ![Using a node level logging agent](/images/docs/user-guide/logging/logging-with-node-agent.png) You can implement cluster-level logging by including a _node-level logging agent_ on each node. The logging agent is a dedicated tool that exposes logs or pushes logs to a backend. Commonly, the logging agent is a container that has access to a directory with log files from all of the application containers on that node. Because the logging agent must run on every node, it is recommended to run the agent as a `DaemonSet`. Node-level logging creates only one agent per node and doesn't require any changes to the applications running on the node. Containers write to stdout and stderr, but with no agreed format. A node-level agent collects these logs and forwards them for aggregation. ### Using a sidecar container with the logging agent {#sidecar-container-with-logging-agent} You can use a sidecar container in one of the following ways: * The sidecar container streams application logs to its own `stdout`. * The sidecar container runs a logging agent, which is configured to pick up logs from an application container. #### Streaming sidecar container ![Sidecar container with a streaming container](/images/docs/user-guide/logging/logging-with-streaming-sidecar.png) By having your sidecar containers write to their own `stdout` and `stderr` streams, you can take advantage of the kubelet and the logging agent that already run on each node. The sidecar containers read logs from a file, a socket, or journald. Each sidecar container prints a log to its own `stdout` or `stderr` stream. This approach allows you to separate several log streams from different parts of your application, some of which can lack support for writing to `stdout` or `stderr`. The logic behind redirecting logs is minimal, so it's not a significant overhead. Additionally, because `stdout` and `stderr` are handled by the kubelet, you can use built-in tools like `kubectl logs`. For example, a pod runs a single container, and the container writes to two different log files using two different formats. Here's a manifest for the Pod: {{< codenew file="admin/logging/two-files-counter-pod.yaml" >}} It is not recommended to write log entries with different formats to the same log stream, even if you managed to redirect both components to the `stdout` stream of the container. Instead, you can create two sidecar containers. Each sidecar container could tail a particular log file from a shared volume and then redirect the logs to its own `stdout` stream. Here's a manifest for a pod that has two sidecar containers: {{< codenew file="admin/logging/two-files-counter-pod-streaming-sidecar.yaml" >}} Now when you run this pod, you can access each log stream separately by running the following commands: ```shell kubectl logs counter count-log-1 ``` The output is similar to: ```console 0: Fri Apr 1 11:42:26 UTC 2022 1: Fri Apr 1 11:42:27 UTC 2022 2: Fri Apr 1 11:42:28 UTC 2022 ... ``` ```shell kubectl logs counter count-log-2 ``` The output is similar to: ```console Fri Apr 1 11:42:29 UTC 2022 INFO 0 Fri Apr 1 11:42:30 UTC 2022 INFO 0 Fri Apr 1 11:42:31 UTC 2022 INFO 0 ... ``` If you installed a node-level agent in your cluster, that agent picks up those log streams automatically without any further configuration. If you like, you can configure the agent to parse log lines depending on the source container. Even for Pods that only have low CPU and memory usage (order of a couple of millicores for cpu and order of several megabytes for memory), writing logs to a file and then streaming them to `stdout` can double how much storage you need on the node. If you have an application that writes to a single file, it's recommended to set `/dev/stdout` as the destination rather than implement the streaming sidecar container approach. Sidecar containers can also be used to rotate log files that cannot be rotated by the application itself. An example of this approach is a small container running `logrotate` periodically. However, it's more straightforward to use `stdout` and `stderr` directly, and leave rotation and retention policies to the kubelet. #### Sidecar container with a logging agent ![Sidecar container with a logging agent](/images/docs/user-guide/logging/logging-with-sidecar-agent.png) If the node-level logging agent is not flexible enough for your situation, you can create a sidecar container with a separate logging agent that you have configured specifically to run with your application. {{< note >}} Using a logging agent in a sidecar container can lead to significant resource consumption. Moreover, you won't be able to access those logs using `kubectl logs` because they are not controlled by the kubelet. {{< /note >}} Here are two example manifests that you can use to implement a sidecar container with a logging agent. The first manifest contains a [`ConfigMap`](/docs/tasks/configure-pod-container/configure-pod-configmap/) to configure fluentd. {{< codenew file="admin/logging/fluentd-sidecar-config.yaml" >}} {{< note >}} In the sample configurations, you can replace fluentd with any logging agent, reading from any source inside an application container. {{< /note >}} The second manifest describes a pod that has a sidecar container running fluentd. The pod mounts a volume where fluentd can pick up its configuration data. {{< codenew file="admin/logging/two-files-counter-pod-agent-sidecar.yaml" >}} ### Exposing logs directly from the application ![Exposing logs directly from the application](/images/docs/user-guide/logging/logging-from-application.png) Cluster-logging that exposes or pushes logs directly from every application is outside the scope of Kubernetes. ## {{% heading "whatsnext" %}} * Read about [Kubernetes system logs](/docs/concepts/cluster-administration/system-logs/) * Learn about [Traces For Kubernetes System Components](/docs/concepts/cluster-administration/system-traces/) * Learn how to [customise the termination message](/docs/tasks/debug/debug-application/determine-reason-pod-failure/#customizing-the-termination-message) that Kubernetes records when a Pod fails