otelcol.processor.attributes
otelcol.processor.attributes
accepts telemetry data from other otelcol
components and modifies attributes of a span, log, or metric.
It also supports the ability to filter and match input data to determine if it should be included or excluded for attribute modifications.
Note
otelcol.processor.attributes
is a wrapper over the upstream OpenTelemetry Collectorattributes
processor. Bug reports or feature requests will be redirected to the upstream repository, if necessary.
You can specify multiple otelcol.processor.attributes
components by giving them different labels.
Usage
otelcol.processor.attributes "<LABEL>" {
output {
metrics = [...]
logs = [...]
traces = [...]
}
}
Arguments
otelcol.processor.attributes
doesn’t support any arguments.
Blocks
You can use the following blocks with otelcol.processor.attributes
:
The > symbol indicates deeper levels of nesting.
For example, include
> attribute
refers to an attribute
block defined inside an include
block.
If both an include
block and an exclude
block are specified, the include
properties are checked before the exclude
properties.
output
Required
The output
block configures a set of components to forward resulting telemetry data to.
The following arguments are supported:
You must specify the output
block, but all its arguments are optional.
By default, telemetry data is dropped.
Configure the metrics
, logs
, and traces
arguments accordingly to send telemetry data to other components.
action
The action
block configures how to modify the span, log, or metric.
The following attributes are supported:
The value
data type must be either a number, string, or boolean.
The supported values for action
are:
insert
: Inserts an attribute in input data where the key doesn’t already exist.- The
key
attribute is required. It specifies the attribute to act upon. - One of the
value
,from_attribute
orfrom_context
attributes is required.
- The
update
: Updates an attribute in input data where the key does exist.- The
key
attribute is required. It specifies the attribute to act upon. - One of the
value
,from_attribute
orfrom_context
attributes is required.
- The
upsert
: Either inserts an attribute in input data where the key doesn’t already exist or updates an attribute in input data where the key does exist.- The
key
attribute is required. It specifies the attribute to act upon. - One of the
value
,from_attribute
orfrom_context
attributes is required:value
specifies the value to populate for the key.from_attribute
specifies the attribute from the input data to use to populate the value. If the attribute doesn’t exist, no action is performed.from_context
specifies the context value used to populate the attribute value. If the key is prefixed withmetadata.
, the values are searched in the receiver’s transport protocol for additional information like gRPC Metadata or HTTP Headers. If the key is prefixed withauth.
, the values are searched in the authentication information set by the server authenticator. Refer to the server authenticator documentation part of your pipeline for more information about which attributes are available. If the key isclient.address
, the value will be set to the client address. If the key doesn’t exist, no action is performed. If the key has multiple values the values will be joined with a;
separator.
- The
hash
: Hashes (SHA1) an attribute value.- The
key
attribute or thepattern
attributes is required.
- The
extract
: Extracts values using a regular expression rule from the input key to target keys specified in the rule. If a target key already exists, it will be overridden. Note: It behaves similarly to the Span Processorto_attributes
setting with the attribute as the source.- The
key
attribute is required. It specifies the attribute to extract values from. The value ofkey
isn’t altered. - The
pattern
attribute is required. It’s the regular expression pattern used to extract attributes from the value ofkey
. The submatchers must be named. If attributes already exist, they will be overwritten.
- The
convert
: Converts an attribute to a specified type.- The
key
attribute is required. It specifies the attribute to act upon. - The
converted_type
attribute is required and must be one of int, double or string.
- The
delete
: Deletes an attribute from the input data.- The
key
attribute or thepattern
attribute is required. It specifies the attribute to act upon.
- The
debug_metrics
The debug_metrics
block configures the metrics that this component generates to monitor its state.
The following arguments are supported:
disable_high_cardinality_metrics
is the Alloy equivalent to the telemetry.disableHighCardinalityMetrics
feature gate in the OpenTelemetry Collector.
It removes attributes that could cause high cardinality metrics.
For example, attributes with IP addresses and port numbers in metrics about HTTP and gRPC connections are removed.
Note
If configured,
disable_high_cardinality_metrics
only applies tootelcol.exporter.*
andotelcol.receiver.*
components.
exclude
The exclude
block provides an option to exclude data from being fed into the
action blocks based on the properties of a span, log, or metric records.
Note
Signals excluded by the
exclude
block will still be propagated to downstream components as-is. If you would like to not propagate certain signals to downstream components, consider a processor such as otelcol.processor.tail_sampling.
The following arguments are supported:
match_type
is required and you must set it to either "regexp"
or "strict"
.
A match occurs if at least one item in the lists matches.
One of the following is also required:
- For spans, one of
services
,span_names
,span_kinds
, attribute, resource, or library must be specified with a non-empty value for a valid configuration. Thelog_bodies
,log_severity_texts
,log_severity
, andmetric_names
attributes are invalid. - For logs, one of
log_bodies
,log_severity_texts
,log_severity
, attribute, resource, or library must be specified with a non-empty value for a valid configuration. Thespan_names
,span_kinds
,metric_names
, andservices
attributes are invalid. - For metrics,
metric_names
must be specified with a valid non-empty value for a valid configuration. Thespan_names
,span_kinds
,log_bodies
,log_severity_texts
,log_severity
,services
, attribute, resource, and library attributes are invalid.
If the configuration includes filters which are specific to a particular signal type, it’s best to include only that signal type in the component’s output.
For example, adding a span_names
filter could cause the component to error if logs are configured in the component’s outputs.
attribute
This block specifies an attribute to match against:
- You can define more than one
attribute
block. - Only
match_type = "strict"
is allowed ifattribute
is specified. - All
attribute
blocks must match exactly for a match to occur.
The following arguments are supported:
If value
isn’t set, any value matches.
The type of value
could be a number, a string, or a boolean.
library
This block specifies properties to match the implementation library against:
- More than one
library
block can be defined. - A match occurs if the span’s implementation library matches at least one
library
block.
The following arguments are supported:
If version
is unset, any version matches.
If you set version
to an empty string, it only matches a library version, which is also an empty string.
log_severity
This block defines how to match based on a log record’s SeverityNumber field.
The following arguments are supported:
If match_undefined
is true, entries with undefined severity will match.
The following table lists the severities supported by OTel.
The value for min
should be one of the values in the “Log Severity” column.
For example, if the min
attribute in the log_severity
block is “INFO”, then INFO, WARN, ERROR, and FATAL logs will match.
regexp
This block is an optional configuration for the match_type
of "regexp"
.
It configures a Least Recently Used (LRU) cache.
The following arguments are supported:
Enabling cache_enabled
could make subsequent matches faster.
Cache size is unlimited unless cache_max_num_entries
is also specified.
cache_max_num_entries
is ignored if cache_enabled
is false.
resource
This block specifies items to match the resources against:
- More than one
resource
block can be defined. - A match occurs if the input data resources match at least one
resource
block.
The following arguments are supported:
If value
isn’t set, any value matches.
The type of value
could be a number, a string, or a boolean.
include
The include
block provides an option to include data being fed into the
action blocks based on the properties of a span, log, or metric records.
The following arguments are supported:
match_type
is required and you must set it to either "regexp"
or "strict"
.
A match occurs if at least one item in the lists matches.
One of the following is also required:
- For spans, one of
services
,span_names
,span_kinds
, attribute, resource, or library must be specified with a non-empty value for a valid configuration. Thelog_bodies
,log_severity_texts
,log_severity
, andmetric_names
attributes are invalid. - For logs, one of
log_bodies
,log_severity_texts
,log_severity
, attribute, resource, or library must be specified with a non-empty value for a valid configuration. Thespan_names
,span_kinds
,metric_names
, andservices
attributes are invalid. - For metrics, one of
metric_names
orresources
must be specified with a valid non-empty value for a valid configuration. Thespan_names
,span_kinds
,log_bodies
,log_severity_texts
,log_severity
,services
, attribute, resource, and library attributes are invalid.
If the configuration includes filters which are specific to a particular signal type, it’s best to include only that signal type in the component’s output.
For example, adding a span_names
filter could cause the component to error if logs are configured in the component’s outputs.
Exported fields
The following fields are exported and can be referenced by other components:
input
accepts otelcol.Consumer
data for any telemetry signal (metrics, logs, or traces).
Component health
otelcol.processor.attributes
is only reported as unhealthy if given an invalid configuration.
Debug information
otelcol.processor.attributes
doesn’t expose any component-specific debug information.
Examples
Various uses of the action
block
Exclude spans based on attributes
For example, the following spans match the properties and won’t be processed by the processor:
- Span1 Name:
"svcB", Attributes: {env: "dev", test_request: 123, credit_card: 1234}
- Span2 Name:
"svcA", Attributes: {env: "dev", test_request: false}
The following spans don’t match the properties and the processor actions are applied to it:
- Span3 Name:
"svcB", Attributes: {env: 1, test_request: "dev", credit_card: 1234}
- Span4 Name:
"svcC", Attributes: {env: "dev", test_request: false}
Due to the presence of the services
attribute, this configuration works only for trace signals.
This is why only traces are configured in the output
block.
otelcol.processor.attributes "default" {
exclude {
match_type = "strict"
services = ["svcA", "svcB"]
attribute {
key = "env"
value = "dev"
}
attribute {
key = "test_request"
}
}
action {
key = "credit_card"
action = "delete"
}
action {
key = "duplicate_key"
action = "delete"
}
output {
traces = [otelcol.exporter.otlp.default.input]
}
}
Exclude spans based on resources
A “strict” match_type
means that you must strictly match the resource
key/value pairs.
The resource
attribute isn’t used for metrics, which is why metrics aren’t configured in the component output.
otelcol.processor.attributes "default" {
exclude {
match_type = "strict"
resource {
key = "host.type"
value = "n1-standard-1"
}
}
action {
key = "credit_card"
action = "delete"
}
action {
key = "duplicate_key"
action = "delete"
}
output {
logs = [otelcol.exporter.otlp.default.input]
traces = [otelcol.exporter.otlp.default.input]
}
}
Exclude spans based on a specific library version
A “strict” match_type
means that you must strictly match the library
key/value pairs.
The library
attribute isn’t used for metrics, which is why metrics aren’t configured in the component output.
otelcol.processor.attributes "default" {
exclude {
match_type = "strict"
library {
name = "mongo-java-driver"
version = "3.8.0"
}
}
action {
key = "credit_card"
action = "delete"
}
action {
key = "duplicate_key"
action = "delete"
}
output {
logs = [otelcol.exporter.otlp.default.input]
traces = [otelcol.exporter.otlp.default.input]
}
}
Include and exclude spans based on regular expressions and services
This processor will remove the “token” attribute and will obfuscate the “password” attribute in spans where the service name matches "auth.*"
and where the span name doesn’t match "login.*"
.
Due to the presence of the services
and span_names
attributes, this configuration works only for trace signals.
This is why only traces are configured in the output
block.
otelcol.processor.attributes "default" {
// Specifies the span properties that must exist for the processor to be applied.
include {
// "match_type" defines that "services" is an array of regexp-es.
match_type = "regexp"
// The span service name must match "auth.*" pattern.
services = ["auth.*"]
}
exclude {
// "match_type" defines that "span_names" is an array of regexp-es.
match_type = "regexp"
// The span name must not match "login.*" pattern.
span_names = ["login.*"]
}
action {
key = "password"
action = "update"
value = "obfuscated"
}
action {
key = "token"
action = "delete"
}
output {
traces = [otelcol.exporter.otlp.default.input]
}
}
Include spans based on regular expressions and attributes
The following demonstrates how to process spans with attributes that match a regular expression pattern.
This processor will obfuscate the db.statement
attribute in spans where the db.statement
attribute matches a regular expression pattern.
otelcol.processor.attributes "default" {
include {
// "match_type" of "regexp" defines that the "value" attributes
// in the "attribute" blocks are regexp-es.
match_type = "regexp"
// This attribute ('db.statement') must exist in the span and match
// the regex ('SELECT \* FROM USERS.*') for a match.
attribute {
key = "db.statement"
value = "SELECT \* FROM USERS.*"
}
}
action {
key = "db.statement"
action = "update"
value = "SELECT * FROM USERS [obfuscated]"
}
output {
metrics = [otelcol.exporter.otlp.default.input]
logs = [otelcol.exporter.otlp.default.input]
traces = [otelcol.exporter.otlp.default.input]
}
}
Include spans based on a regular expression of log body
This processor removes the “token” attribute and obfuscates the “password” attribute in spans where the log body matches "AUTH.*"
.
Due to the presence of the log_bodies
attribute, this configuration works only for log signals.
This is why only logs are configured in the output
block.
otelcol.processor.attributes "default" {
include {
match_type = "regexp"
log_bodies = ["AUTH.*"]
}
action {
key = "password"
action = "update"
value = "obfuscated"
}
action {
key = "token"
action = "delete"
}
output {
logs = [otelcol.exporter.otlp.default.input]
}
}
Include spans based on a regular expression of log severity
The following example demonstrates how to process logs that have a severity level which is equal to or higher than the level specified in the log_severity
block.
This processor removes the “token” attribute and obfuscates the “password” attribute in logs where the severity is at least "INFO"
.
Due to the presence of the log_severity
attribute, this configuration works only for log signals.
This is why only logs are configured in the output
block.
otelcol.processor.attributes "default" {
include {
match_type = "regexp"
log_severity {
min = "INFO"
match_undefined = true
}
}
action {
key = "password"
action = "update"
value = "obfuscated"
}
action {
key = "token"
action = "delete"
}
output {
logs = [otelcol.exporter.otlp.default.input]
}
}
Include spans based on a regular expression of log severity text
The following demonstrates how to process logs that have a severity text that match regular expression patterns. This processor removes the “token” attribute and obfuscates the “password” attribute in logs where severity matches “info”.
Due to the presence of the log_severity_texts
attribute, this configuration works only for log signals.
This is why only logs are configured in the output
block.
otelcol.processor.attributes "default" {
include {
match_type = "regexp"
log_severity_texts = ["info.*"]
}
action {
key = "password"
action = "update"
value = "obfuscated"
}
action {
key = "token"
action = "delete"
}
output {
logs = [otelcol.exporter.otlp.default.input]
}
}
Include metrics based on metric names
The following demonstrates how to process metrics that have a name starting with “counter”.
This processor will add a label called "important_label"
with a value of "label_val"
to the metric.
If the label already exists, its value will be updated.
Due to the presence of the metric_names
attribute, this configuration works only for metric signals.
This is why only metrics are configured in the output
block.
otelcol.processor.attributes "default" {
include {
match_type = "regexp"
metric_names = ["counter.*"]
}
action {
key = "important_label"
action = "upsert"
value = "label_val"
}
output {
metrics = [otelcol.exporter.otlp.default.input]
}
}
Compatible components
otelcol.processor.attributes
can accept arguments from the following components:
- Components that export
OpenTelemetry
otelcol.Consumer
otelcol.processor.attributes
has exports that can be consumed by the following components:
- Components that consume
OpenTelemetry
otelcol.Consumer
Note
Connecting some components may not be sensible or components may require further configuration to make the connection work correctly. Refer to the linked documentation for more details.