Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
# Create separate namespace for the agent to be installed (if required)
kubectl create namespace kfuse-agent
helm upgrade --install kfuse-agent -f dd-values-kfuse.yaml datadog/datadog -n kfuse-agent --version 3.6.7

Adding custom tags

Custom tags can be added to the agent such that all metrics collected by the agent will have the tag added. To add custom tags, please follow these steps.

  1. Update dd-values-kfuse.yaml file to include following for the custom tags:

Code Block
datadog:
  tags:
    - custom_tag_name: custom_tag_value
  1. Update dd-values-kfuse.yaml file to whitelist the new custom tag (add to the existing list):

Code Block
ingester:
  config:
    hostTagIncludes:
      - custom_tag_name

Advance monitoring: Enable kubernetes_state_metrics

...