New Filter Transform

Filter and route your logs based on defined conditions

by

We recently introduced a concept of conditions, which you can see in our route transform as well as our unit tests feature. This paved the way for a new filter transform, allowing you to filter events based on a set of conditions. This replaces our old field_filter transform since it is much more expressive.

Get Started

transforms:
  haproxy_errors:
    # General
    type: "filter"
    inputs: ["my-source-id"]

    # Conditions
    condition:
      "level.eq": "error"
      "service.eq": "haproxy"

Check out the docs for a fill list of available conditions.