Skip to content
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

Fluentbit improvements #189

Merged
merged 4 commits into from
Jul 13, 2023
Merged
Show file tree
Hide file tree
Changes from 3 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
2 changes: 1 addition & 1 deletion modules/eks-monitoring/add-ons/aws-for-fluentbit/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ locals {
name = local.name
chart = local.name
repository = "https://aws.github.io/eks-charts"
version = "0.1.24"
version = "0.1.27"
namespace = local.name
values = local.default_helm_values
description = "aws-for-fluentbit Helm Chart deployment configuration"
Expand Down
16 changes: 15 additions & 1 deletion modules/eks-monitoring/add-ons/aws-for-fluentbit/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,19 @@ cloudWatchLogs:
logGroupName: /aws/eks/observability-accelerator/workloads
logGroupTemplate: /aws/eks/observability-accelerator/${cluster_name}/$kubernetes['namespace_name']
logStreamTemplate: $kubernetes['container_name'].$kubernetes['pod_name']
log_key: log
logKey: log
logRetentionDays: ${log_retention_days}

input:
enabled: false

additionalInputs: |
[INPUT]
Name tail
Tag kube.*
Path /var/log/containers/*.log
DB /var/log/flb_kube.db
Mem_Buf_Limit 5MB
Skip_Long_Lines On
Refresh_Interval 10
bonclay7 marked this conversation as resolved.
Show resolved Hide resolved
multiline.parser cri, docker, go, java, python