Instana
Causely can leverage Instana application performance monitoring (APM).
Step 1: Create a user
Create an API token for your Instana account server.
Step 2: Create a Kubernetes Secret with the Instana URL and API token
After creating the API token create a Kubernetes Secret:
kubectl create secret generic \
--namespace causely instana-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:
instana:
enabled: true
accounts:
- secretName: instana-credentials