diff --git a/website/docs/observability/logging/cluster-logging/assets/logging-cluster-control-plane-logging-tab.webp b/website/docs/observability/logging/cluster-logging/assets/logging-cluster-control-plane-logging-tab.webp new file mode 100644 index 000000000..3f6c0f893 Binary files /dev/null and b/website/docs/observability/logging/cluster-logging/assets/logging-cluster-control-plane-logging-tab.webp differ diff --git a/website/docs/observability/logging/cluster-logging/assets/logging-cluster-enable-control-plane-logging.webp b/website/docs/observability/logging/cluster-logging/assets/logging-cluster-enable-control-plane-logging.webp new file mode 100644 index 000000000..9f6b5cc87 Binary files /dev/null and b/website/docs/observability/logging/cluster-logging/assets/logging-cluster-enable-control-plane-logging.webp differ diff --git a/website/docs/observability/logging/cluster-logging/assets/logging-cluster-observability-tab.webp b/website/docs/observability/logging/cluster-logging/assets/logging-cluster-observability-tab.webp new file mode 100644 index 000000000..d441ec162 Binary files /dev/null and b/website/docs/observability/logging/cluster-logging/assets/logging-cluster-observability-tab.webp differ diff --git a/website/docs/observability/logging/cluster-logging/enable-eks-logging.md b/website/docs/observability/logging/cluster-logging/enable-eks-logging.md index 2f9812fa4..ded84e7d0 100644 --- a/website/docs/observability/logging/cluster-logging/enable-eks-logging.md +++ b/website/docs/observability/logging/cluster-logging/enable-eks-logging.md @@ -3,7 +3,22 @@ title: "Configuring control plane logs" sidebar_position: 30 --- -Enabling EKS control plane logs is done on a per-cluster basis through the EKS API. This will often be configured using Terraform or CloudFormation, but in this lab we'll use the AWS CLI to enable the functionality: +You can enable each of the cluster log types individually, and in this lab we're enabling everything. + +Let's take a look this configuration in the EKS console: + + + +The **Logging** tab shows the current configuration for control plane logs for the cluster: + +![EKS Console Observability Tab](./assets/logging-cluster-observability-tab.webp) +![EKS Console Control Plane Tab](./assets/logging-cluster-control-plane-logging-tab.webp) + +You can alter the logging configuration by clicking the **Manage** button: + +![Enable Logging](./assets/logging-cluster-enable-control-plane-logging.webp) + +You can also enable EKS control plane logs on a per-cluster basis through the EKS API. This will often be configured using Terraform or CloudFormation, but in this lab we can use the AWS CLI to enable the functionality: ```bash hook=cluster-logging $ aws eks update-cluster-config \ @@ -28,17 +43,3 @@ $ aws eks update-cluster-config \ $ sleep 30 $ aws eks wait cluster-active --name $EKS_CLUSTER_NAME ``` - -As you can see we can enable each of the cluster log types individually, and in this lab we're enabling everything. - -Let's take a look this configuration in the EKS console: - - - -The **Logging** tab shows the current configuration for control plane logs for the cluster: - -![EKS Console Logging Tab](./assets/logging-cluster-logging-tab.webp) - -You can alter the logging configuration by clicking the **Manage** button: - -![Enable Logging](./assets/logging-cluster-enable-logging.webp)