Need Help with Excluding Irrelevant Logs in SigNoz...
# support
s
Need Help with Excluding Irrelevant Logs in SigNoz Cloud Hi everyone, I'm looking for help with excluding certain irrelevant logs that are currently cluttering our logs section in SigNoz. Despite trying a few approaches, the logs are still being collected. What I've tried so far: 1. Added
filter/drop_logs_by_body_regex
in the
otel-agent
config (inside
values.yaml
):
Copy code
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!