Cloud Foundry deployments can send metrics and events to Datadog. You can track the health and availability of all nodes in a deployment, monitor the jobs they run, collect metrics from the Loggregator Firehose, and more. This page walks you through how to set up monitoring for your Cloud Foundry environment.
There are four main components for the Cloud Foundry integration with Datadog.
The Cloud Foundry Buildpack - used to collect custom metrics, logs, traces, and profiles from your Cloud Foundry applications.
The Agent BOSH Release - used to collect events and metrics from BOSH VMs and sends them to Datadog.
The Cluster Agent BOSH Release - used to collect cluster-level and application-level metadata from the CAPI and the BBS and container tags.
The Firehose Nozzle - collects all other metrics from the Loggregator Firehose in your infrastructure.
Use the Datadog Cloud Foundry Buildpack to monitor your Cloud Foundry application. This is a Cloud Foundry supply buildpack that installs the Datadog Container Agent (a lightweight version of the Agent), Datadog Trace Agent for APM, and Datadog DogStatsD binary file in the container your app is running on.
Push your application, including both the Datadog buildpack and your regular buildpacks. The process to push your application with multiple buildpacks is described in Pushing an App with Multiple Buildpacks.
Note: If you were using a single buildpack before, it should be the last one loaded so it acts as a final buildpack. To learn more, see Cloud Foundry’s How Buildpacks Work.
For older versions, Cloud Foundry provides a backwards compatible version of this feature in the form of a multi-buildpack. You must install and configure this version to use Datadog’s buildpack.
Download the latest multi-buildpack release and upload it to your Cloud Foundry environment.
Add a multi-buildpack manifest to your application. As detailed in the usage section of the multi-buildpack repository, create a multi-buildpack.yml file at the root of your application and configure it for your environment. Add a link to the Datadog Cloud Foundry Buildpack and to your regular buildpack:
buildpacks:- "https://cloudfoundry.datadoghq.com/datadog-cloudfoundry-buildpack/datadog-cloudfoundry-buildpack-4.36.0.zip"- "https://github.com/cloudfoundry/ruby-buildpack#v1.7.18"# Replace this with your regular buildpack
There are three points of integration with Datadog, each of which achieves a different goal:
Datadog Agent BOSH release - Install the Datadog Agent on every node in your deployment to track system, network, and disk metrics. Enable any other Agent checks you wish.
Datadog Cluster Agent BOSH release - Deploy one Datadog Cluster Agent job. The job queries the CAPI and BBS API to collect cluster-level and application-level metadata to provide improved tagging capabilities in your applications and containers.
Datadog Firehose Nozzle - Deploy one or more Datadog Firehose Nozzle jobs. The jobs tap into your deployment’s Loggregator Firehose and send all non-container metrics to Datadog.
These integrations are meant for Cloud Foundry deployment administrators, not end users.
You must have a working Cloud Foundry deployment and access to the BOSH Director that manages it. You also need BOSH CLI to deploy each integration. You may use either major version of the CLI – v1 or v2.
Datadog provides tarballs of the Datadog Agent packaged as a BOSH release. Upload the latest release to your BOSH Director and then install it on every node in your deployment as an addon (the same way a Director deploys the BOSH Agent to all nodes).
# BOSH CLI v1
bosh upload release https://cloudfoundry.datadoghq.com/datadog-agent/datadog-agent-boshrelease-latest.tgz
# BOSH CLI v2
bosh upload-release -e <BOSH_ENV> https://cloudfoundry.datadoghq.com/datadog-agent/datadog-agent-boshrelease-latest.tgz
Add the following to your BOSH Director’s runtime configuration file (runtime.yml):
---
releases:
- name: datadog-agent
version: <VERSION_YOU_UPLOADED> # specify the real version (x.y.z not 'latest')
addons:
- name: datadog
jobs:
- name: dd-agent
release: datadog-agent
properties:
dd:
use_dogstatsd: true
dogstatsd_port: 18125 # Many CF deployments have a StatsD already on port 8125
api_key: <DATADOG_API_KEY>
tags: ["<KEY:VALUE>"] # any tags you wish
generate_processes: true # to enable the process check
To see which datadog-agent release version was uploaded earlier, run bosh releases.
The configuration under each check name uses the same format as when configuring the check in its own file in the Agent’s conf.d directory.
Everything you configure in runtime.yml applies to every node. You cannot configure a check for a subset of nodes in your deployment.
To customize configuration for the default checks (system, network, disk, and NTP), see the full list of configuration options for the Datadog Agent BOSH release.
# BOSH CLI v1
bosh deployment <YOUR_DEPLOYMENT_MANIFEST>.yml
bosh -n deploy --recreate
# BOSH CLI v2
bosh -n -d <YOUR_DEPLOYMENT> -e <BOSH_ENV> deploy --recreate <YOUR_DEPLOYMENT_MANIFEST>.yml
Since runtime configuration applies globally, BOSH redeploys every node in your deployment. If you have more than one deployment, redeploy all deployments to install the Datadog Agent everywhere.
To check if the Agent installations were successful, filter by cloudfoundry on the Host Map. The Datadog Agent BOSH release tags each host with cloudfoundry. Optionally, group hosts by any tag, such as bosh_job, as in the following screenshot:
Click on any host to zoom in, then click system within its hexagon to make sure Datadog is receiving system metrics:
For Datadog Agent versions 7.40.1 and later, you can collect CAPI metadata and Datadog Cluster Agent (DCA) tags from Cloud Foundry containers. Application labels and annotations are present in the application logs, metrics, and traces.
The Datadog Cluster Agent BOSH release is a BOSH package for running the Datadog Cluster Agent on Cloud Foundry.
This package is to be used in conjunction with the Datadog Agent BOSH Release.
It provides a BOSH link consumed by the Datadog Agent BOSH release to Autodiscover and schedule integrations for your apps, as well as improved tagging for application containers and process discovery. For more information, see the spec in GitHub.
# BOSH CLI v1
bosh upload release https://cloudfoundry.datadoghq.com/datadog-cluster-agent/datadog-cluster-agent-boshrelease-latest.tgz
# BOSH CLI v2
bosh upload-release -e <BOSH_ENV> https://cloudfoundry.datadoghq.com/datadog-cluster-agent/datadog-cluster-agent-boshrelease-latest.tgz
Use the example deploy manifest template below to deploy the Datadog Cluster Agent and expose it to the Datadog Agent. See the spec in GitHub for available properties.
jobs:- name:datadog-cluster-agentrelease:datadog-cluster-agentproperties:cluster_agent:token:<TOKEN> # 32 or more characters in length bbs_poll_interval:10warmup_duration:5log_level:INFObbs_ca_crt:<CA_CERTIFICATE>bbs_client_crt:<CLIENT_CERTIFICATE>bbs_client_key:<CLIENT_PRIVATE_KEY>provides:datadog-cluster-agent:aliases:- domain:<DNS_NAME (e.g. datadog-cluster-agent)>
Note: This creates a DNS alias for the Datadog Cluster Agent service which makes it addressable through a static alias. See Aliases to services in the BOSH documentation for more details on BOSH DNS aliases.
This DNS alias is specified in the cluster_agent.address job property of the Datadog Agent runtime configuration, as shown in the example template below:
The Datadog Cluster Agent discovers integrations based on an AD_DATADOGHQ_COM environment variable set in your applications.
This environment variable is a JSON object containing the Autodiscovery configuration templates for your application. The Datadog Cluster Agent can discover and render two types of configurations:
Configurations for services bound to your application, whether they be user-provided or from a service broker.
Configurations for services running inside your application, for example, a web-server.
The JSON object should be a dictionary associating a service name to its Autodiscovery template:
For services bound to the application, the <SERVICE_NAME> should be the name of the service as it appears in the cf services command output. For services running inside the application, the <SERVICE_NAME> can be anything.
The variables key is used only for bound services to resolve template variables inside the configuration template, and must contain the JSON path of the desired value for the VCAP_SERVICES environment variable. You can inspect this with the cf env <APPLICATION_NAME> command.
Note: The Datadog Cluster Agent is only able to resolve credentials of services directly available in the VCAP_SERVICES environment variable for Autodiscovery.
This Autodiscovery configuration in the AD_DATADOGHQ_COM environment variable demonstrates a Cloud Foundry application running a web server bound to a PostgreSQL service:
In the example above, the first item web_server is a configuration for a service running inside the application.
There are no variables, and it uses the %%host%% and %%port%% template variables available through Autodiscovery.
The second item postgres-service-name is a configuration for a service bound to the application.
To resolve the template variables, it uses the variables dictionary to define the values used in the instance configuration.
This dictionary contains a JSONPath object indicating where to find the variable values for the service postgres-service-name defined in the VCAP_SERVICES environment variable.
See Cluster Checks for more information about Autodiscovery through the DCA.
Once the two releases are linked, the Datadog Cluster Agent automatically provides cluster-level metadata, which the Node Agents attach as tags to their corresponding Cloud Foundry application containers.
Datadog provides a BOSH release of the Datadog Firehose Nozzle. After uploading the release to your Director, add the Nozzle to an existing deployment, or create a new deployment that only includes the Nozzle. The following instructions assume you’re adding it to an existing Cloud Foundry deployment that has a working Loggregator Firehose.
# BOSH CLI v1
bosh upload release http://cloudfoundry.datadoghq.com/datadog-firehose-nozzle/datadog-firehose-nozzle-release-latest.tgz
# BOSH CLI v2
bosh upload-release -e <BOSH_ENV> http://cloudfoundry.datadoghq.com/datadog-firehose-nozzle/datadog-firehose-nozzle-release-latest.tgz
Configure one or more Nozzle jobs in your main Cloud Foundry deployment manifest (cf-manifest.yml):
jobs:#- instances: 4# name: some_other_job# ...# add more instances if one job cannot keep up with the Firehose- instances:1name:datadog_nozzle_z1networks:# some network you've configured elsewhere in the manifest- name:cf1# some resource_pool you've configured elsewhere in the manifestresource_pool:small_z1templates:- name:datadog-firehose-nozzlerelease:datadog-firehose-nozzleproperties:datadog:api_key:"<YOUR_DATADOG_API_KEY>"api_url:https://api.datadoghq.com/api/v1/series# seconds between flushes to Datadog. Default is 15.flush_duration_seconds:15loggregator:# do NOT append '/firehose' or even a trailing slash to the URL; 'ws://<host>:<port>' works# for example, ws://traffic-controller.your-cf-domain.com:8081traffic_controller_url:"<LOGGREGATOR_URL>"nozzle:# tags each firehose metric with 'deployment:<DEPLOYMENT_NAME>'deployment:"<DEPLOYMENT_NAME>"# can be anything (firehose streams data evenly to all jobs using the same subscription_id)subscription_id:datadog-nozzle# for development only# disable_access_control: true# for development only; enable if your UAA does not use a verifiable cert# insecure_ssl_skip_verify: trueuaa:client:datadog-firehose-nozzle# client name you just configuredclient_secret:"<SECRET_YOU_JUST_CONFIGURED>"url:<UAA_URL># for example, https://uaa.your-cf-domain.com:8443
In the same manifest, add the Datadog Nozzle release name and version:
releases:# - name: "<SOME_OTHER_RELEASE>"# version: <x.y.z># ...- name:datadog-firehose-nozzleversion:'<VERSION_YOU_UPLOADED>'# specify the real version (x.y.z not 'latest')
To see which datadog-firehose-nozzle release version was uploaded earlier, run bosh releases.
# BOSH CLI v1
bosh deployment cf-manifest.yml
bosh -n deploy --recreate
# BOSH CLI v2
bosh -n -d cf-manifest -e <BOSH_ENV> deploy --recreate cf-manifest.yml