---
title: Service Level Objectives
description: Datadog, the leading service for cloud-scale monitoring.
breadcrumbs: Docs > DDSQL Reference > Data Directory > Service Level Objectives
---

# Service Level Objectives

This dataset captures Service Level Objectives (SLOs), which track Service Level Indicators (SLIs) against reliability targets to manage the balance between velocity and stability. Each row details an SLO's definition, latest evaluation state as displayed in the SLO manage page, current SLI value, and remaining error budget. It includes metadata for associated services, teams, environments, and tags to enable data-driven decision-making and incident prioritization.

```
dd.service_level_objectives
```

## Fields

| Title                               | ID                     | Type | Data Type     | Description                                                                                                      |
| ----------------------------------- | ---------------------- | ---- | ------------- | ---------------------------------------------------------------------------------------------------------------- |
| Name                                | name                   | core | string        | The name of the SLO as configured by the user.                                                                   |
| State                               | state                  | core | string        | Current evaluation state of the SLO (e.g., "breached", "warning", "ok", "no_data").                              |
| Service Level Indicator (SLI) Value | sli_value              | core | float64       | The current SLI value (percentage) for this SLO.                                                                 |
| Target Threshold                    | target_threshold       | core | float64       | The target service level threshold (percentage) for this SLO.                                                    |
| Error Budget Remaining              | error_budget_remaining | core | float64       | The percentage of error budget remaining, computed as 100 * (sli - target_threshold) / (100 - target_threshold). |
| Team Names                          | team_names             | core | array<string> | Array of team names associated with the SLO.                                                                     |
| Service Names                       | service_names          | core | array<string> | Array of service names associated with the SLO.                                                                  |
| Environments                        | envs                   | core | array<string> | Array of all environment tags associated with the SLO.                                                           |
| Tags                                | tags                   | core | hstore        | All tags associated with the SLO as key-value pairs (e.g., "env:prod", "team:foo").                              |
