Skip to content

Commit 1590b8f

Browse files
committed
[Staging] Change Tekton Vector collection to in-memory and ack enabled
This is to resolve missing logs issue.
1 parent 54f6215 commit 1590b8f

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

components/vector-tekton-logs-collector/development/vector-helm-values.yaml

+7-2
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,14 @@ customConfig:
5858
aws_s3:
5959
type: "aws_s3"
6060
bucket: ${BUCKET}
61+
acknowledgements:
62+
enabled: true
6163
buffer:
62-
type: "disk"
63-
max_size: 1073741824
64+
type: "memory"
65+
max_events: 10000
66+
when_full: "block"
67+
batch:
68+
max_events: 100000
6469
inputs: ["remap_app_logs"]
6570
compression: "none"
6671
endpoint: ${ENDPOINT}

components/vector-tekton-logs-collector/staging/vector-helm-values.yaml

+7-2
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,14 @@ customConfig:
5858
aws_s3:
5959
type: "aws_s3"
6060
bucket: ${BUCKET}
61+
acknowledgements:
62+
enabled: true
6163
buffer:
62-
type: "disk"
63-
max_size: 1073741824
64+
type: "memory"
65+
max_events: 10000
66+
when_full: "block"
67+
batch:
68+
max_events: 100000
6469
inputs: ["remap_app_logs"]
6570
compression: "none"
6671
endpoint: ${ENDPOINT}

0 commit comments

Comments
 (0)