enum ClusterLoggingTypes
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.EKS.ClusterLoggingTypes |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awseks#ClusterLoggingTypes |
![]() | software.amazon.awscdk.services.eks.ClusterLoggingTypes |
![]() | aws_cdk.aws_eks.ClusterLoggingTypes |
![]() | aws-cdk-lib » aws_eks » ClusterLoggingTypes |
EKS cluster logging types.
Example
import { KubectlV32Layer } from '@aws-cdk/lambda-layer-kubectl-v32';
const cluster = new eks.Cluster(this, 'Cluster', {
// ...
version: eks.KubernetesVersion.V1_32,
clusterLogging: [
eks.ClusterLoggingTypes.API,
eks.ClusterLoggingTypes.AUTHENTICATOR,
eks.ClusterLoggingTypes.SCHEDULER,
],
kubectlLayer: new KubectlV32Layer(this, 'kubectl'),
});
Members
Name | Description |
---|---|
API | Logs pertaining to API requests to the cluster. |
AUDIT | Logs pertaining to cluster access via the Kubernetes API. |
AUTHENTICATOR | Logs pertaining to authentication requests into the cluster. |
CONTROLLER_MANAGER | Logs pertaining to state of cluster controllers. |
SCHEDULER | Logs pertaining to scheduling decisions. |
API
Logs pertaining to API requests to the cluster.
AUDIT
Logs pertaining to cluster access via the Kubernetes API.
AUTHENTICATOR
Logs pertaining to authentication requests into the cluster.
CONTROLLER_MANAGER
Logs pertaining to state of cluster controllers.
SCHEDULER
Logs pertaining to scheduling decisions.