Skip to content

Eks system logs #45

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion charts/logan/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ fluentd:
# -- Kubernetes CSI Node Driver Logs collection configuration
csinode:
# csinode log files location.
path: /var/log/containers/csi-oci-node-*.log
path: /var/log/containers/csi-oci-node-*.log,/var/log/containers/ebs-csi-node-*.log
# Logging Analytics log source to use for parsing and processing Kubernetes CSI Node Driver Logs.
ociLALogSourceName: "Kubernetes CSI Node Driver Logs"

Expand All @@ -294,6 +294,21 @@ fluentd:
ociLALogSourceName: "Kubernetes Autoscaler Logs"
# The regular expression pattern for the starting line in case of multi-line logs.
multilineStartRegExp: /^\S\d{2}\d{2}\s+[^\:]+:[^\:]+:[^\.]+\.\d{0,3}/

# -- Kubernetes (EKS) AWS Node Logs collection configuration
aws-node:
# aws node log files location.
path: /var/log/containers/aws-node*aws-node*.log
# Logging Analytics log source to use for parsing and processing Kubernetes AWS Node Logs.
ociLALogSourceName: "Kubernetes AWS Node Logs"

# -- Kubernetes CSI Controller Logs collection configuration
csi-controller:
# csi controller log files location.
path: /var/log/containers/ebs-csi-controller-*.log
# Logging Analytics log source to use for parsing and processing Kubernetes CSI Controller Logs.
ociLALogSourceName: "Kubernetes CSI Controller Logs"

# Configuration for Linux System specific logs like CronLogs and SecureLogs
linuxSystem:
logs:
Expand Down Expand Up @@ -373,8 +388,11 @@ fluentd:
- '"/var/log/containers/kube-dns-autoscaler-*.log"'
- '"/var/log/containers/coredns-*.log"'
- '"/var/log/containers/csi-oci-node-*.log"'
- '"/var/log/containers/ebs-csi-node-*.log"'
- '"/var/log/containers/ebs-csi-controller-*.log"'
- '"/var/log/containers/proxymux-client-*.log"'
- '"/var/log/containers/cluster-autoscaler-*.log"'
- '"/var/log/containers/aws-node*aws-node*.log"'

# -- Configuration for any custom logs which are not part of the default configuration defined in this file.
# All the pod/container logs will be collected as per "genericContainerLogs" section.
Expand Down