Dynatrace
Causely can leverage Dynatrace application performance monitoring (APM).
Step 1: Create a user
Create an API token for your Dynatrace account server.
Step 2: Create a Kubernetes Secret with the Dynatrace URL and API token
After creating the API token create a Kubernetes Secret:
kubectl create secret generic \
--namespace causely dynatrace-credentials \
--from-literal=url="..." \
--from-literal=api-token="..."
Step 3: Update Causely configuration
Once the secret is created, update the Causely configuration to enable scraping for the dynatrace account. Below is an example configuration:
scrapers:
dynatrace:
enabled: true
accounts:
- secretName: dynatrace-credentials