BOR-518: add raw line ingestion fallback#27
Conversation
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request introduces a more resilient log ingestion mechanism. It ensures that all raw log lines are captured and stored, regardless of whether they can be successfully parsed into structured events. This enhancement improves data retention and diagnostic capabilities by providing a complete record of all incoming log data, while still leveraging parsing for richer event data when possible. Highlights
Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request introduces a robust raw log line ingestion mechanism with a well-designed fallback strategy for parser failures. The implementation ensures that log lines are always stored, even if parsing fails, which is crucial for data integrity. The FromRawLine and StoreRawLine functions are clear and handle various scenarios, including the absence of a parser or errors during parsing. The cloneMap utility is correctly used to prevent unintended side effects with map references. The accompanying unit tests are comprehensive, covering both successful parsing and fallback behaviors, demonstrating a thorough approach to validation. Overall, the changes are well-implemented, maintainable, and correctly address the stated objective.
Summary
Validation
go vet ./...
go build -o output/lapp ./cmd/lapp/
golangci-lint run
0 issues.
go test ./pkg/...
ok github.com/strrl/lapp/pkg/analyzer (cached)
? github.com/strrl/lapp/pkg/config [no test files]
ok github.com/strrl/lapp/pkg/event (cached)
ok github.com/strrl/lapp/pkg/ingest (cached)
ok github.com/strrl/lapp/pkg/logsource (cached)
ok github.com/strrl/lapp/pkg/multiline (cached)
ok github.com/strrl/lapp/pkg/pattern (cached)
ok github.com/strrl/lapp/pkg/semantic (cached)
ok github.com/strrl/lapp/pkg/store (cached)
? github.com/strrl/lapp/pkg/tracing [no test files]
? github.com/strrl/lapp/pkg/workspace [no test files]
ok github.com/strrl/lapp/integration_test (cached)
ok github.com/strrl/lapp/integration_test/loghub (cached)
ok github.com/strrl/lapp/pkg/analyzer (cached)
? github.com/strrl/lapp/pkg/config [no test files]
ok github.com/strrl/lapp/pkg/event (cached)
ok github.com/strrl/lapp/pkg/ingest (cached)
ok github.com/strrl/lapp/pkg/logsource (cached)
ok github.com/strrl/lapp/pkg/multiline (cached)
ok github.com/strrl/lapp/pkg/pattern (cached)
ok github.com/strrl/lapp/pkg/semantic (cached)
ok github.com/strrl/lapp/pkg/store (cached)
? github.com/strrl/lapp/pkg/tracing [no test files]
? github.com/strrl/lapp/pkg/workspace [no test files]
Linear: https://linear.app/boringdesign/issue/BOR-518/phase-2ingestion-foundation-build-raw-log-line-ingestion-with-text