Agent v2.16.0

Incident.IO connector, configurable multiline flush interval, and custom items in port strategy.

May 5, 2026

New Features

  • Incident.IO Connector: Added support for ingesting events from Incident.IO, allowing users to bring incident data into Edge Delta pipelines for correlation and analysis.

  • Multiline Flush Interval: Added a multiline_flush_interval setting that controls how long the multiline accumulator waits for a follow-up line before flushing what it has buffered. The setting is configured globally under pipeline settings and can be overridden per node on the Kubernetes, Docker, and file input nodes.

    Configure the global default:

    settings:
      ...
      # multiline_flush_interval defines how long the multiline accumulator waits for a
      # follow-up line before flushing what it has buffered. Increase this for slow
      # producers (e.g. Jenkins build logs streamed line-by-line) so long stack traces
      # stay merged into a single event. Default is 500ms.
      # time.Duration type (e.g. "2s")
      multiline_flush_interval: "2s"
    

    Override the value on a specific input node:

    - name: file_input
      type: file_input
      user_description: File Source
      ...
      multiline_flush_interval: "7s"
    
  • Custom Items in Port Strategy: The port strategy now supports custom items, letting users define additional port mappings beyond the built-in set when configuring inputs that listen on network ports.

Bug Fixes

  • Output Streamer and Gateway Destination: Improved delivery handling in the output streamer and gateway destination.