This information is for Chronosphere Telemetry Pipeline, which is a standalone product separate from Chronosphere Observability Platform.
Configuration parameters
Use the parameters in this section to configure the . The Telemetry Pipeline web interface uses the items in the Name column to describe these parameters. Pipeline configuration files use the items in the Key column as YAML keys.Examples
Using the redact/mask value rule lets you remove private or sensitive information from your telemetry data.Full redaction
You can obscure the entire value of a specified key. For example, given this sample log data:$user.ip, the Regex value ^.+$,
and the Replacement value 0 returns the following result:
ip with a
string of zeroes.
Selective redaction
You can also redact specific strings while leaving other strings intact. For example, given this sample log data:action, the Regex value purchase,
and the Replacement value * returns the following result:
action key by replacing any instances
of purchase with a string of asterisks. However, other strings within the value
of action were unaffected.
