Configuration Options

Basic Example

The following example demonstrates how to rename the deprecated net.peer.address attribute to stable network.peer.address in all telemetry signals.

1

Create a YAML file with the following content:

rename-net-to-network.yaml
apiVersion: actions.odigos.io/v1alpha1
kind: RenameAttribute
metadata:
  name: rename-net-to-network
  namespace: odigos-system
spec:
  actionName: Rename network attributes
  renames:
    net.peer.address: network.peer.address
    net.local.address: network.local.address
    net.peer.ip: network.peer.address
    net.host.ip: network.local.address
  signals:
  - LOGS
  - METRICS
  - TRACES
2

Apply the action to the cluster:

kubectl apply -f rename-net-to-network.yaml