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

feat: detect and extract json from log-lines #1248

Open
wants to merge 22 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 9 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 Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ RUN mkdir src && echo "fn main() {}" > src/main.rs && cargo build --release && r

# Build the actual binary
COPY src ./src
COPY resources ./resources
RUN cargo build --release

# final stage
Expand Down
1 change: 1 addition & 0 deletions Dockerfile.debug
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ RUN mkdir src && echo "fn main() {}" > src/main.rs && cargo build && rm -rf src

# Build the actual binary
COPY src ./src
COPY resources ./resources
RUN cargo build

# final stage
Expand Down
1 change: 1 addition & 0 deletions Dockerfile.kafka
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ RUN mkdir src && echo "fn main() {}" > src/main.rs && \

# Copy the actual source code
COPY src ./src
COPY resources ./resources

# Build the actual binary with kafka feature
RUN cargo build --release --features kafka
Expand Down
554 changes: 554 additions & 0 deletions resources/formats.json

Large diffs are not rendered by default.

Loading
Loading