Enum ClusterLoggingTypes
EKS cluster logging types.
Namespace: Amazon.CDK.AWS.EKSv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public enum ClusterLoggingTypes
Syntax (vb)
Public Enum ClusterLoggingTypes
Remarks
ExampleMetadata: infused
Examples
var cluster = new Cluster(this, "Cluster", new ClusterProps {
// ...
Version = KubernetesVersion.V1_34,
ClusterLogging = new [] { ClusterLoggingTypes.API, ClusterLoggingTypes.AUTHENTICATOR, ClusterLoggingTypes.SCHEDULER }
});
Synopsis
Fields
| 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. |
Fields
| 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. |