Skip to content

Latest commit

 

History

History

datadog-controller

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

datadog-controller

Version: 1.1 AppVersion: 0.1

This is a simple Kubernetes Controller to allow Datadog Monitors to be created, updated or deleted from custom resources in Kubernetes.

You will need to set datadog.client_api_key and datadog.client_app_key when installing the chart. These keys can be found at https://app.datadoghq.eu/account/settings#api or https://app.datadoghq.com/account/settings#api

Here's an example DatadogMonitor resource:

apiVersion: datadoghq.com/v1beta1
kind: DatadogMonitor
metadata:
  name: apm-error-rate-example
spec:
  name: my-service error rate
  query: "avg(last_5m):sum:trace.http.request.errors{env:stg,service:my-service} / sum:trace.http.request.hits{env:stg,service:my-service} > 1"
  type: "query alert"
  message: Service my-service has a high error rate on env:stg

Homepage: https://github.com/max-rocket-internet/datadog-controller

How to install this chart

Add Delivery Hero public chart repo:

helm repo add deliveryhero https://charts.deliveryhero.io/

A simple install with default values:

helm install deliveryhero/datadog-controller

To install the chart with the release name my-release:

helm install my-release deliveryhero/datadog-controller

To install with some set values:

helm install my-release deliveryhero/datadog-controller --set values_key1=value1 --set values_key2=value2

To install with custom values file:

helm install my-release deliveryhero/datadog-controller -f values.yaml

Source Code

Values

Key Type Default Description
affinity object {}
controller.environment object {} Any extra environment variables for the controller
controller.leaderElection bool false Enable leader election for running multiple controller pods
controller.logLevel string "DEBUG" The log level of the controller. Can be either "DEBUG" or "INFO"
controller.metricAddr string "0" Address to serve prometheus metrics on. "0" is disabled.
datadog.client_api_key string "put_your_api_key_here" Your Datadog API key, you can get/create one at https://app.datadoghq.eu/account/settings#api
datadog.client_app_key string "put_your_app_key_here" Your Datadog API key, you can get/create one at https://app.datadoghq.eu/account/settings#api
datadog.host string "datadoghq.eu" The datadog host. Usually datadoghq.eu or datadoghq.com
extraLabels object {}
fullnameOverride string ""
image.pullPolicy string "IfNotPresent"
image.repository string "maxrocketinternet/datadog-controller"
image.tag string ""
imagePullSecrets list []
nameOverride string ""
nodeSelector object {}
podAnnotations object {}
podSecurityContext object {}
replicaCount int 1
resources.limits.cpu string "100m"
resources.limits.memory string "128Mi"
resources.requests.cpu string "100m"
resources.requests.memory string "128Mi"
securityContext object {}
serviceAccount.annotations object {}
serviceAccount.create bool true
serviceAccount.name string ""
tolerations list []

Maintainers

Name Email Url
max-rocket-internet max.williams@deliveryhero.com