Traces Pipeline Examples
We strongly advise reading the intro guide to working with remap transforms in order to fully understand the functionalities of writing pipelines steps.
Filtering out specific resources
The following example will filter out all HTTP traces that include the /health
URI.
Note that the filter
transform works by setting up an allow condition - meaning, events which fail the condition will be dropped.
The filter below implements this logic:
If the event isn't an HTTP event, allow it
If the event is an HTTP event, and the resource name doesn't contain "/health", allow it
If the event is an HTTP event AND it has "/health" in the resource name, drop it
We are using the abort
error handling below when calling the string
function. If the protocol type or resource name aren't valid strings, we drop the event.
Last updated