Skip to content

Commit

Permalink
Update values.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
jawadqur authored Aug 30, 2023
1 parent 9af1c73 commit 2675c5b
Showing 1 changed file with 19 additions and 7 deletions.
26 changes: 19 additions & 7 deletions kube/services/datadog/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,17 @@ datadog:
## If set, this parameter takes precedence over "apiKey".
apiKeyExistingSecret: "datadog-agent"

# datadog.site -- The site of the Datadog intake to send Agent data to.
# (documentation: https://docs.datadoghq.com/getting_started/site/)

## Set to 'datadoghq.com' to send data to the US1 site (default).
## Set to 'datadoghq.eu' to send data to the EU site.
## Set to 'us3.datadoghq.com' to send data to the US3 site.
## Set to 'us5.datadoghq.com' to send data to the US5 site.
## Set to 'ddog-gov.com' to send data to the US1-FED site.
## Set to 'ap1.datadoghq.com' to send data to the AP1 site.
site: ddog-gov.com

# datadog.kubeStateMetricsEnabled -- If true, deploys the kube-state-metrics deployment
## ref: https://github.com/kubernetes/kube-state-metrics/tree/kube-state-metrics-helm-chart-2.13.2/charts/kube-state-metrics
kubeStateMetricsEnabled: false
Expand Down Expand Up @@ -59,11 +70,13 @@ datadog:
apm:
# datadog.apm.socketEnabled -- Enable APM over Socket (Unix Socket or windows named pipe)
## ref: https://docs.datadoghq.com/agent/kubernetes/apm/
socketEnabled: true
socketEnabled: false

# datadog.apm.portEnabled -- Enable APM over TCP communication (port 8126 by default)
## ref: https://docs.datadoghq.com/agent/kubernetes/apm/
portEnabled: true
portEnabled: false

enabled: false

# datadog.apm.port -- Override the trace Agent port
## Note: Make sure your client is sending to the same UDP port.
Expand All @@ -76,19 +89,19 @@ datadog:
# datadog.processAgent.enabled -- Set this to true to enable live process monitoring agent
## Note: /etc/passwd is automatically mounted to allow username resolution.
## ref: https://docs.datadoghq.com/graphing/infrastructure/process/#kubernetes-daemonset
enabled: true
enabled: false

# datadog.processAgent.processCollection -- Set this to true to enable process collection in process monitoring agent
## Requires processAgent.enabled to be set to true to have any effect
processCollection: true
processCollection: false

# datadog.processAgent.stripProcessArguments -- Set this to scrub all arguments from collected processes
## Requires processAgent.enabled and processAgent.processCollection to be set to true to have any effect
## ref: https://docs.datadoghq.com/infrastructure/process/?tab=linuxwindows#process-arguments-scrubbing
stripProcessArguments: true
stripProcessArguments: false

# datadog.processAgent.processDiscovery -- Enables or disables autodiscovery of integrations
processDiscovery: true
processDiscovery: false

## Enable systemProbe agent and provide custom configs
systemProbe:
Expand Down Expand Up @@ -327,4 +340,3 @@ agents:

# agents.rbac.serviceAccountAnnotations -- Annotations to add to the ServiceAccount if agents.rbac.create is true
serviceAccountAnnotations: {}

0 comments on commit 2675c5b

Please sign in to comment.