Getting Started
Configuring Destination Fields
✅ Traces
✅ Metrics
✅ Logs
- ELASTIC_APM_SERVER_ENDPOINT
string : elastic APM server endpoint.
- ELASTIC_APM_SECRET_TOKEN
string : elastic APM server token.
Adding Destination to Odigos
There are two primary methods for configuring destinations in Odigos:
Using the UI
Click on Add Destination, select Elastic APM and follow the on-screen instructions
Using Kubernetes manifests
Save the YAML below to a file (e.g. elasticapm.yaml)apiVersion: odigos.io/v1alpha1
kind: Destination
metadata:
name: elasticapm-example
namespace: odigos-system
spec:
data:
ELASTIC_APM_SERVER_ENDPOINT: <elastic APM server endpoint>
destinationName: elasticapm
secretRef:
name: elasticapm-secret
signals:
- TRACES
- METRICS
- LOGS
type: elasticapm
---
apiVersion: v1
data:
ELASTIC_APM_SECRET_TOKEN: <Base64 elastic APM server token>
kind: Secret
metadata:
name: elasticapm-secret
namespace: odigos-system
type: Opaque
Apply the YAML using kubectlkubectl apply -f elasticapm.yaml