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

fix: Correctly ingest logs #32

Merged
merged 1 commit into from
Oct 16, 2023
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions ecs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
FROM amazon/aws-for-fluent-bit:latest
ADD parsers.conf /parsers.conf
ADD custom.conf /custom.conf
16 changes: 10 additions & 6 deletions ecs/custom.conf
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
[SERVICE]
Parsers_File /fluent-bit/parsers/parsers.conf
Parsers_File /parsers.conf

[FILTER]
Name modify
Match *
Add ShippedBy devx-logs-for-ecs
Add stack ${STACK}
Add stage ${STAGE}
Add app ${APP}
Add gu:repo ${GU_REPO}
Rename log message

[FILTER]
Name parser
Match *
Key_Name message
Parser json

[FILTER]
Name modify
Match *
Add ShippedBy devx-logs
Add stack ${STACK}
Add stage ${STAGE}
Add app ${APP}
Add gu:repo ${GU_REPO}
5 changes: 5 additions & 0 deletions ecs/parsers.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[PARSER]
Name json
Format json
Time_Key time
Time_Format %Y-%m-%dT%H:%M:%SZ
Loading