Shubham Chavan
05/20/2025, 3:07 PMfilter/drop_logs_by_body_regex
in the otel-agent
config (inside values.yaml
):
processors:
filter/drop_logs_by_body_regex:
logs:
exclude:
match_type: regexp
bodies:
- ".*Exception waiting for SSE connection to end.*"
- ".*skipping sse comment.*"
- ".*dispatching event: SSEEvent\\(event_id=None, event=None, retry=None, data=None\\).*"
- ".*GET /healthz HTTP/1.1.*"
2. Tried using the transform
processor to exclude logs at processing stage.
3. Explored the SigNoz pipeline, but I'm not sure how to configure it properly for our specific use case.
Would appreciate any guidance or best practices for cleanly excluding such noisy logs from being ingested. Thanks in advance!