Skip to main content

usage_billable_summary

Creates, updates, deletes, gets or lists a usage_billable_summary resource.

Overview

Nameusage_billable_summary
TypeResource
Iddatadog.organization.usage_billable_summary

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
account_public_idstringThe account public ID.
public_idstringThe organization public ID.
account_namestringThe account name.
org_namestringThe organization name.
billing_planstringThe billing plan (metadata). (Deprecated from June 2026)
end_datestring (date-time)Shows the last date of usage.
num_orgsinteger (int64)The number of organizations.
ratio_in_monthnumber (double)Shows usage aggregation for a billing period.
regionstringThe region of the organization.
start_datestring (date-time)Shows the first date of usage.
usageobjectResponse with aggregated usage types.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_usage_billable_summaryselectmonth, include_connected_accountsGet billable usage across your account.<br /><br />This endpoint is only accessible for [parent-level organizations](https:​//docs.datadoghq.com/account_management/multi_organization/).

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
sitestringThe Datadog site (region) for your organization, for example datadoghq.com, us3.datadoghq.com, us5.datadoghq.com, ap1.datadoghq.com, ap2.datadoghq.com, datadoghq.eu, ddog-gov.com. Resolved from the DD_SITE environment variable when set. Optional: defaults to datadoghq.com, or the value of the DD_SITE environment variable when set; a WHERE value overrides both.
include_connected_accountsbooleanBoolean to specify whether to include accounts connected to the current account as partner customers in the Datadog partner network program. Defaults to false.
monthstring (date-time)Datetime in ISO-8601 format, UTC, precise to month: &#91;YYYY-MM&#93; for usage starting this month.

SELECT examples

Get billable usage across your account.<br /><br />This endpoint is only accessible for [parent-level organizations](https:​//docs.datadoghq.com/account_management/multi_organization/).

SELECT
account_public_id,
public_id,
account_name,
org_name,
billing_plan,
end_date,
num_orgs,
ratio_in_month,
region,
start_date,
usage
FROM datadog.organization.usage_billable_summary
WHERE month = '{{ month }}'
AND include_connected_accounts = '{{ include_connected_accounts }}'
;