---
title: Assigning Tags
description: Learn how to assign tags in Datadog.
breadcrumbs: Docs > Getting Started > Getting Started with Tags > Assigning Tags
---

# Assigning Tags

## Overview{% #overview %}

Tagging is used throughout Datadog to query the machines and metrics you monitor. Without the ability to assign and filter based on tags, finding problems in your environment and narrowing them down enough to discover the true causes could be difficult. Learn how to [define tags](https://docs.datadoghq.com/getting_started/tagging/#define-tags) in Datadog before going further.

Tags can be configured in several different ways:

- In the Datadog Agent configuration file or each individual integration configuration file
- Through the Datadog UI
- With the Datadog API
- With the DogStatsD

{% tab title="Non-containerized environments" %}
In non-containerized environments, the Agent automatically assigns the host tag and inherits tags from integrations. These tags, along with additional tags that you can manually add, are configured in the Datadog Agent configuration file.
{% /tab %}

{% tab title="Containerized environments" %}
In containerized environments, Datadog recommends using [Autodiscovery](https://docs.datadoghq.com/getting_started/agent/autodiscovery/) as it allows for [unified service tagging](https://docs.datadoghq.com/getting_started/tagging/unified_service_tagging), the recommended way to achieve a single point of configuration across all of your Datadog telemetry.

The goal of Autodiscovery is to apply a Datadog integration configuration when running an Agent check against a given container. When using Autodiscovery, the Datadog Agent automatically identifies which services are running on this new container, looks for corresponding monitoring configuration, and starts to collect metrics. Tags can then be configured from within the Autodiscovery [configuration template](https://docs.datadoghq.com/getting_started/agent/autodiscovery/?tab=docker#integration-templates).

If Autodiscovery is not in use, the Agent automatically assigns the host tag and inherits tags from integrations the same as within a non-containerized environments. These tags, along with manually added tags are configured in the Datadog Agent configuration file.
{% /tab %}

## Methods to assign tags{% #methods-to-assign-tags %}

### Configuration file{% #configuration-file %}

{% tab title="Agent v6 & v7" %}
#### File location{% #file-location %}

The Agent configuration file (`datadog.yaml`) is used to set host tags which apply to all metrics, traces, and logs forwarded by the Datadog Agent.

Tags for the [integrations](https://docs.datadoghq.com/getting_started/integrations/) installed with the Agent are configured with YAML files located in the **conf.d** directory of the Agent install. To locate the configuration files, see [Agent configuration files](https://docs.datadoghq.com/agent/configuration/agent-configuration-files/).

#### YAML format{% #yaml-format %}

In YAML files, use a list of strings under the `tags` key to assign a list of tags. In YAML, lists are defined with two different yet functionally equivalent forms:

```yaml
tags: ["<KEY_1>:<VALUE_1>", "<KEY_2>:<VALUE_2>", "<KEY_3>:<VALUE_3>"]
```

or

```yaml
tags:
    - "<KEY_1>:<VALUE_1>"
    - "<KEY_2>:<VALUE_2>"
    - "<KEY_3>:<VALUE_3>"
```

It is recommended to assign tags as `<KEY>:<VALUE>` pairs, but tags only consisting of keys (`<KEY>`) are also accepted. See [defining tags](https://docs.datadoghq.com/getting_started/tagging/#define-tags) for more details.

#### Host tags{% #host-tags %}

The hostname (tag key `host`) is [assigned automatically](https://docs.datadoghq.com/metrics/custom_metrics/dogstatsd_metrics_submission/#host-tag-key) by the Datadog Agent. To customize the hostname, use the Agent configuration file, `datadog.yaml`:

```yaml
# Set the hostname (default: auto-detected)
# Must comply with RFC-1123, which permits only:
# "A" to "Z", "a" to "z", "0" to "9", and the hyphen (-)
hostname: mymachine.mydomain
```

##### Changing the hostname{% #changing-the-hostname %}

- The old hostname remains in the UI for two hours but does not show new metrics.
- Any data from hosts with the old hostname can be queried with the API.
- To graph metrics with the old and new hostname in one graph, use [arithmetic between two metrics](https://docs.datadoghq.com/dashboards/querying/#arithmetic-between-two-metrics).

{% /tab %}

{% tab title="Agent v5" %}
#### File location{% #file-location %}

The Agent configuration file (`datadog.conf`) is used to set host tags which apply to all metrics, traces, and logs forwarded by the Datadog Agent.

Tags for the [integrations](https://docs.datadoghq.com/getting_started/integrations/) installed with the Agent are configured with YAML files located in the **conf.d** directory of the Agent install. To locate the configuration files, see [Agent configuration files](https://docs.datadoghq.com/agent/configuration/agent-configuration-files/).

#### YAML format{% #yaml-format %}

In YAML files, use a list of strings under the `tags` key to assign a list of tags. In YAML, lists are defined with two different yet functionally equivalent forms:

```yaml
tags: <KEY_1>:<VALUE_1>, <KEY_2>:<VALUE_2>, <KEY_3>:<VALUE_3>
```

It is recommended to assign tags as `<KEY>:<VALUE>` pairs, but tags only consisting of keys (`<KEY>`) are also accepted. See [defining tags](https://docs.datadoghq.com/getting_started/tagging/#define-tags) for more details.

#### Host tags{% #host-tags %}

The hostname (tag key `host`) is [assigned automatically](https://docs.datadoghq.com/metrics/custom_metrics/dogstatsd_metrics_submission/#host-tag-key) by the Datadog Agent. To customize the hostname, use the Agent configuration file, `datadog.conf`:

```yaml
# Set the hostname (default: auto-detected)
# Must comply with RFC-1123, which permits only:
# "A" to "Z", "a" to "z", "0" to "9", and the hyphen (-)
hostname: mymachine.mydomain
```

##### Changing the hostname{% #changing-the-hostname %}

- The old hostname remains in the UI for 2 hours, but does not show new metrics.
- Any data from hosts with the old hostname can be queried with the API.
- To graph metrics with the old and new hostname in one graph, use [arithmetic between two metrics](https://docs.datadoghq.com/dashboards/querying/#arithmetic-between-two-metrics).

{% /tab %}

#### Integration inheritance{% #integration-inheritance %}

The most efficient method for assigning tags is to rely on integration inheritance. Tags you assign to your AWS instances, Chef recipes, and other integrations are automatically inherited by hosts and metrics you send to Datadog.

For containerized environments, it is recommended to follow the [unified service tagging](https://docs.datadoghq.com/getting_started/tagging/unified_service_tagging) documentation to achieve a single point of configuration across all of your Datadog telemetry.

##### Cloud integrations{% #cloud-integrations %}

[Cloud integrations](https://docs.datadoghq.com/integrations/#cat-cloud) are authentication based. Datadog recommends using the main cloud integration tile (AWS, Azure, Google Cloud, etc.) and [installing the Agent](https://docs.datadoghq.com/getting_started/agent/#setup) where possible. **Note**: If you choose to use the Agent only, some integration tags are not available.

##### Web integrations{% #web-integrations %}

[Web integrations](https://docs.datadoghq.com/integrations/#cat-web) are authentication based. Metrics are collected with API calls. **Note**: `CamelCase` tags are converted to underscores by Datadog, for example `TestTag` –> `test_tag`.

#### Environment variables{% #environment-variables %}

After installing the containerized Datadog Agent, you can set your host tags using the environment variable `DD_TAGS` in your Agent's main configuration file. If you specify multiple tags, separate each one with a space.

**Note**: The `DD_TAGS` environment variable uses whitespace to separate tags. For example, `DD_TAGS="key1:val1 key2:val2"` sets two tags. A value like `DD_TAGS="test:this is a test"` produces four separate tags (`test:this`, `is`, `a`, `test`) because each space-separated token is treated as its own tag. To include spaces in tag values, set tags through YAML configuration or integration annotations instead. Those methods convert whitespace to underscores (for example, `test:this is a test` becomes `test:this_is_a_test`).

Datadog automatically collects common tags from [Docker, Kubernetes, ECS, Swarm, Mesos, Nomad, and Rancher](https://docs.datadoghq.com/agent/docker/?tab=standard#tagging). To extract even more tags, use the following options:

| Environment Variable               | Description                                                                                             |
| ---------------------------------- | ------------------------------------------------------------------------------------------------------- |
| `DD_CONTAINER_LABELS_AS_TAGS`      | Extract container labels. This env is equivalent to the old `DD_DOCKER_LABELS_AS_TAGS` env.             |
| `DD_CONTAINER_ENV_AS_TAGS`         | Extract container environment variables. This env is equivalent to the old `DD_DOCKER_ENV_AS_TAGS` env. |
| `DD_KUBERNETES_POD_LABELS_AS_TAGS` | Extract pod labels.                                                                                     |
| `DD_CHECKS_TAG_CARDINALITY`        | Add tags to check metrics (low, orchestrator, high).                                                    |
| `DD_DOGSTATSD_TAG_CARDINALITY`     | Add tags to custom metrics (low, orchestrator, high).                                                   |

**Examples:**

```bash
DD_KUBERNETES_POD_LABELS_AS_TAGS='{"app":"kube_app","release":"helm_release"}'
DD_CONTAINER_LABELS_AS_TAGS='{"com.docker.compose.service":"service_name"}'
```

When using `DD_KUBERNETES_POD_LABELS_AS_TAGS`, you can use wildcards in the format:

```text
{"foo": "bar_%%label%%"}
```

For example, `{"app*": "kube_%%label%%"}` resolves to the tag name `kube_application` for the label `application`. Further, `{"*": "kube_%%label%%"}` adds all pod labels as tags prefixed with `kube_`.

When using the `DD_CONTAINER_LABELS_AS_TAGS` variable within a Docker Swarm `docker-compose.yaml` file, remove the apostrophes, for example:

```yaml
- DD_CONTAINER_LABELS_AS_TAGS={"com.docker.compose.service":"service_name"}
```

When adding labels to Docker containers, the placement of the `labels:` keyword inside the `docker-compose.yaml` file is important. To avoid issues, follow the [Docker unified service tagging](https://docs.datadoghq.com/getting_started/tagging/unified_service_tagging) documentation.

If the container needs to be labeled outside of this configuration, place the `labels:` keyword **inside** the `services:` section, **not** inside the `deploy:` section. Place the `labels:` keyword inside the `deploy:` section only when the service needs to be labeled. The Datadog Agent does not have any labels to extract from the containers without this placement.

Below is a sample, working `docker-compose.yaml` file that shows this label placement. In the example below, the labels in the `myapplication:` section, `my.custom.label.project` and `my.custom.label.version` each have unique values. Using the `DD_CONTAINER_LABELS_AS_TAGS` environment variable in the `datadog:` section extracts the labels and produces these tags for the `myapplication` container:

Inside the `myapplication` container the labels are: `my.custom.label.project` and `my.custom.label.version`

After the Agent extracts the labels from the container, the tags are: `projecttag:projectA` `versiontag:1`

**Sample docker-compose.yaml:**

```yaml
services:
  datadog:
    volumes:
      - '/var/run/docker.sock:/var/run/docker.sock:ro'
      - '/proc:/host/proc:ro'
      - '/sys/fs/cgroup/:/host/sys/fs/cgroup:ro'
    environment:
      - DD_API_KEY= "<DATADOG_API_KEY>"
      - DD_CONTAINER_LABELS_AS_TAGS={"my.custom.label.project":"projecttag","my.custom.label.version":"versiontag"}
      - DD_TAGS="key1:value1 key2:value2 key3:value3"
    image: 'registry.datadoghq.com/agent:latest'
    deploy:
      restart_policy:
        condition: on-failure
      mode: replicated
      replicas: 1
  myapplication:
    image: 'myapplication'
    labels:
      my.custom.label.project: 'projectA'
      my.custom.label.version: '1'
    deploy:
      restart_policy:
        condition: on-failure
      mode: replicated
      replicas: 1
```

Either define the variables in your custom `datadog.yaml`, or set them as JSON maps in these environment variables. The map key is the source (`label/envvar`) name, and the map value is the Datadog tag name.

##### Tags cardinality{% #tags-cardinality %}

There are two environment variables that set tag cardinality: `DD_CHECKS_TAG_CARDINALITY` and `DD_DOGSTATSD_TAG_CARDINALITY`. Because DogStatsD is priced differently, the DogStatsD tag cardinality setting is separated to provide the opportunity for finer configuration. Otherwise, these variables function the same way: they can have values `low`, `orchestrator`, or `high`. They both default to `low`, which pulls in Kubernetes cluster-level tags.

The different cardinality settings target:

- `low`: Kubernetes cluster-level tags, such as `kube_namespace`.
- `orchestrator`: Pod-level tags, such as `pod_name`.
- `high`: Container-level tags, such as `container_id`.

Depending on the cardinality, there is a different set of out-of-the box tags for [Kubernetes and OpenShift](https://docs.datadoghq.com/agent/kubernetes/tag/?tab=containerizedagent#out-of-the-box-tags), and for [Docker, Rancher, and Mesos](https://docs.datadoghq.com/agent/docker/tag/?tab=containerizedagent#out-of-the-box-tagging). For ECS and Fargate, setting the variable to `orchestrator` adds the `task_arn` tag.

**Notes**:

- Sending container tags for DogStatsD metrics may create more metrics (one per container instead of one per host). This may impact your custom metrics billing.
- In metrics, timestamps are rounded to the nearest second. If any points have the same timestamp, the latest point overwrites the previous ones. Setting higher cardinality may help prevent this issue.

#### Traces{% #traces %}

The Datadog tracer can be configured with environment variables, system properties, or through configuration in code. The [Datadog tracing setup](https://docs.datadoghq.com/tracing/setup/) documentation has information on tagging options and configuration for each tracer. You can also follow the [unified service tagging](https://docs.datadoghq.com/getting_started/tagging/unified_service_tagging) documentation to configure your tracer for unified service tagging.

Regardless of the tracer used, span metadata must respect a typed tree structure. Each node of the tree is split by a `.` and is of a single type.

For instance, a node can't be both an object (with sub-nodes) and a string:

```json
{
  "key": "value",
  "key.subkey": "value_2"
}
```

The span metadata above is invalid since the value of `key` cannot reference a string (`"value"`) and also a subtree (`{"subkey": "value_2"}`).

### UI{% #ui %}

{% tab title="Host Map" %}
Assign host tags in the UI using the [Host Map page](https://docs.datadoghq.com/infrastructure/hostmap/). Click on any hexagon (host) to show the host overlay on the bottom of the page. Then, under the *User* section, click the **Add Tags** button. Enter the tags as a comma-separated list, then click **Save Tags**. Changes made to host tags in the UI may take up to five minutes to apply.

{% image
   source="https://docs.dd-static.net/images/tagging/assigning_tags/host_add_tags.d22ada61c59de69d32754f687677fe7f.png?auto=format"
   alt="Host map with an host details opened highlighting Add Tags button" /%}

{% /tab %}

{% tab title="Infrastructure List" %}
Assign host tags in the UI using the [Infrastructure List page](https://docs.datadoghq.com/infrastructure/). Click on any host to show the host overlay on the right of the page. Then, under the *User* section, click the **Add Tags** button. Enter the tags as a comma-separated list, then click **Save Tags**. Changes made to host tags in the UI may take up to five minutes to apply. After you add tags, ensure they are visible in the UI before attempting to add more tags.

{% image
   source="https://docs.dd-static.net/images/tagging/assigning_tags/infrastructure_add_tags.0225527df3332dbe430db660ac41e825.png?auto=format"
   alt="Infrastructure List with an Infrastructure details panel opened highlighting Add Tags button" /%}

{% /tab %}

{% tab title="Monitors" %}
From the [Manage Monitors](https://app.datadoghq.com/monitors/manage) page, select the checkbox next to each monitor to add tags (select one or multiple monitors). Click the **Edit Tags** button. Enter a tag or select one used previously. Then click **Add Tag `tag:name`** or **Apply Changes**. If tags were added previously, multiple tags can be assigned at once using the tag checkboxes. For more information, see the [Manage Monitors documentation](https://docs.datadoghq.com/monitors/manage/).

When creating a monitor, assign monitor tags under step 4 *Say what's happening* or *Notify your Team*:

{% image
   source="https://docs.dd-static.net/images/monitors/notifications/notifications_add_required_tags.faae27eb193baba23b6958cfc1f189dc.png?auto=format"
   alt="View of policy tag configuration. Underneath 'Policy tags' are three example tags, cost_center, product_id, and env, next to a 'Select value' dropdown." /%}

{% /tab %}

{% tab title="Distribution Metrics" %}
Create percentile aggregations within [Distribution Metrics](https://docs.datadoghq.com/metrics/distributions/) by applying an allow list of up to ten tags to a metric. This creates a timeseries for every potentially queryable combination of tag values. For more information on counting custom metrics and timeseries emitted from distribution metrics, see [Custom Metrics](https://docs.datadoghq.com/metrics/custom_metrics/).

**Apply up to ten tags. Exclusionary tags are not accepted**:

{% image
   source="https://docs.dd-static.net/images/tagging/assigning_tags/global_metrics_selection.e7d4fd32a95a7ba0da41b11ef40413c5.png?auto=format"
   alt="Create Monitor Tags" /%}

{% /tab %}

{% tab title="Integrations" %}
The [AWS](https://docs.datadoghq.com/integrations/amazon_web_services/) integration tile allows you to assign additional tags to all metrics at the account level, as well as logs sent through [automatic subscription triggers](https://docs.datadoghq.com/logs/guide/send-aws-services-logs-with-the-datadog-lambda-function/#automatically-set-up-triggers). Use a comma-separated list of tags in the form `<KEY>:<VALUE>`.

{% image
   source="https://docs.dd-static.net/images/tagging/assigning_tags/integrationtags.9ba89fadd6577479ba3f04331be9d281.png?auto=format"
   alt="AWS Tags" /%}

{% /tab %}

{% tab title="Service Level Objectives" %}
When creating an SLO, assign tags under step 3, **Add name and tags**:

{% image
   source="https://docs.dd-static.net/images/tagging/assigning_tags/slo_individual_tags.0ce1cd3707f0cad102d924631d23fe25.png?auto=format"
   alt="Create SLO Tags" /%}

{% /tab %}

### API{% #api %}

{% tab title="Assignment" %}
Tags can be assigned in various ways with the [Datadog API](https://docs.datadoghq.com/api/v1/service-checks/#submit-a-service-check). See the list below for links to those sections:

- [Post a check run](https://docs.datadoghq.com/api/v1/service-checks/#submit-a-service-check)
- [Post an event](https://docs.datadoghq.com/api/v1/events/#post-an-event)
- [AWS Integration](https://docs.datadoghq.com/api/v1/aws-integration/)
- [Post timeseries point](https://docs.datadoghq.com/api/v1/metrics/#submit-metrics)
- [Create](https://docs.datadoghq.com/api/v1/monitors/#create-a-monitor) or [Edit](https://docs.datadoghq.com/api/v1/monitors/#edit-a-monitor) a monitor
- [Add](https://docs.datadoghq.com/api/v1/tags/#add-tags-to-a-host) or [Update](https://docs.datadoghq.com/api/v1/tags/#update-host-tags) host tags
- [Send traces](https://docs.datadoghq.com/tracing/guide/send_traces_to_agent_by_api/)
- [Create](https://docs.datadoghq.com/api/v1/service-level-objectives/#create-a-slo-object) or [Update](https://docs.datadoghq.com/api/v1/service-level-objectives/#update-a-slo) a Service Level Objective

{% /tab %}

{% tab title="Example" %}
Tagging within Datadog is a powerful way to gather your metrics. For a quick example, perhaps you're looking for a sum of the following metrics coming from your website (example.com):

```text
Web server 1: api.metric('page.views', [(1317652676, 100), ...], host="example_prod_1")
Web server 2: api.metric('page.views', [(1317652676, 500), ...], host="example_prod_2")
```

Datadog recommends adding the tag `domain:example.com` and leaving off the hostname (the Datadog API determines the hostname automatically):

```text
Web server 1: api.metric('page.views', [(1317652676, 100), ...], tags=['domain:example.com'])
Web server 2: api.metric('page.views', [(1317652676, 500), ...], tags=['domain:example.com'])
```

With the `domain:example.com` tag, the pageviews can be summed across hosts:

```text
sum:page.views{domain:example.com}
```

To get a breakdown by host, use:

```text
sum:page.views{domain:example.com} by {host}
```

{% /tab %}

### DogStatsD{% #dogstatsd %}

Add tags to any metric, event, or service check you send to [DogStatsD](https://docs.datadoghq.com/extend/dogstatsd/). For example, compare the performance of two algorithms by tagging a timer metric with the algorithm version:

```python

@statsd.timed('algorithm.run_time', tags=['algorithm:one'])
def algorithm_one():
    # Do fancy things here ...

@statsd.timed('algorithm.run_time', tags=['algorithm:two'])
def algorithm_two():
    # Do fancy things (maybe faster?) here ...
```

**Note**: Tagging is a [Datadog-specific extension](https://docs.datadoghq.com/extend/community/libraries/) to StatsD.

Special consideration is necessary when assigning the `host` tag to DogStatsD metrics. For more information on the host tag key, see the [Metrics Submission: DogStatsD](https://docs.datadoghq.com/metrics/dogstatsd_metrics_submission/#host-tag) documentation.

## Further Reading{% #further-reading %}

- [Getting started with tags](https://docs.datadoghq.com/getting_started/tagging/)
- [Learn how to use tags in Datadog](https://docs.datadoghq.com/getting_started/tagging/using_tags/)
