Kubernetes Instrumentation
Instrument your kubernetes cluster in one command!
Visualize metrics from kubernetes nodes, pods, services through this integration.
Installation
Use Integration page in Oodle UI
- Open settings page in Oodle UI.
- Click Connect on the
Kubernetes
integration tile.
Configure values.yaml
Set API keys in values.yaml file.
The Endpoint and API key can be seen from the Kubernetes
integration tile in
the settings page of your oodle account.
cat >> values.yaml << EOF
cluster:
name: my-cluster
externalServices:
prometheus:
host: '{OODLE_ENDPOINT}'
apiKey: '{OODLE_API_KEY}'
writeEndpoint: '/v1/prometheus/{OODLE_INSTANCE}/write'
EOF
Install the helm chart
Run the following helm command to start sending data to Oodle.
helm repo add oodle https://oodle-ai.github.io/helm-charts;
helm repo update oodle
helm install oodle-k8s-monitoring --atomic --timeout 300s oodle/k8s-monitoring --values values.yaml --namespace oodle-monitoring --create-namespace