La API de medición del uso te permite obtener el uso horario, diario y
mensual a través de múltiples facetas de Datadog.
Esta API está disponible para todos los clientes Pro y Enterprise.
Nota: Los datos de uso se retrasan hasta 72 horas desde el momento en que se produjeron.
Se conservan durante 15 meses.
Puedes recuperar hasta 24 horas de datos de uso por hora de varias organizaciones
y hasta 2 meses de datos de uso por hora de una sola organización en una sola solicitud.
Consulta más información en la documentación de detalles de uso.
Get a mapping of billing dimensions to the corresponding keys for the supported usage metering public API endpoints.
Mapping data is updated on a monthly cadence.
OAuth apps require the usage_read authorization scope to access this endpoint.
Argumentos
Cadenas de consulta
Nombre
Tipo
Descripción
filter[month]
string
Datetime in ISO-8601 format, UTC, and for mappings beginning this month. Defaults to the current month.
filter[view]
string
String to specify whether to retrieve active billing dimension mappings for the contract or for all available mappings. Allowed views have the string active or all. Defaults to active.
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get billing dimension mapping for usage endpoints returns "OK" response
*/import{client,v2}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv2.UsageMeteringApi(configuration);apiInstance.getBillingDimensionMapping().then((data: v2.BillingDimensionsMappingResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
Get hourly usage by product family.
This endpoint requires the usage_read permission.
OAuth apps require the usage_read authorization scope to access this endpoint.
Argumentos
Cadenas de consulta
Nombre
Tipo
Descripción
filter[timestamp][start] [required]
string
Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage beginning at this hour.
filter[timestamp][end]
string
Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage ending before this hour.
filter[product_families] [required]
string
Comma separated list of product families to retrieve. Available families are all, analyzed_logs,
application_security, audit_trail, serverless, ci_app, cloud_cost_management, cloud_siem,
csm_container_enterprise, csm_host_enterprise, cspm, custom_events, cws, dbm, error_tracking,
fargate, infra_hosts, incident_management, indexed_logs, indexed_spans, ingested_spans, iot,
lambda_traced_invocations, logs, network_flows, network_hosts, network_monitoring, observability_pipelines,
online_archive, profiling, rum, rum_browser_sessions, rum_mobile_sessions, sds, snmp, software_delivery,
synthetics_api, synthetics_browser, synthetics_mobile, synthetics_parallel_testing, timeseries, vuln_management,
and workflow_executions.
The following product family has been deprecated: audit_logs.
filter[include_descendants]
boolean
Include child org usage in the response. Defaults to false.
filter[include_connected_accounts]
boolean
Boolean to specify whether to include accounts connected to the current account as partner customers in the Datadog partner network program. Defaults to false.
filter[include_breakdown]
boolean
Include breakdown of usage by subcategories where applicable (for product family logs only). Defaults to false.
filter[versions]
string
Comma separated list of product family versions to use in the format product_family:version. For example,
infra_hosts:1.0.0. If this parameter is not used, the API will use the latest version of each requested
product family. Currently all families have one version 1.0.0.
page[limit]
integer
Maximum number of results to return (between 1 and 500) - defaults to 500 if limit not specified.
page[next_record_id]
string
List following results with a next_record_id provided in the previous query.
"""
Get hourly usage by product family returns "OK" response
"""fromdatetimeimportdatetimefromdateutil.relativedeltaimportrelativedeltafromdatadog_api_clientimportApiClient,Configurationfromdatadog_api_client.v2.api.usage_metering_apiimportUsageMeteringApiconfiguration=Configuration()withApiClient(configuration)asapi_client:api_instance=UsageMeteringApi(api_client)response=api_instance.get_hourly_usage(filter_timestamp_start=(datetime.now()+relativedelta(days=-3)),filter_product_families="infra_hosts",)print(response)
# Get hourly usage by product family returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V2::UsageMeteringAPI.newpapi_instance.get_hourly_usage((Time.now+-3*86400),"infra_hosts")
// Get hourly usage by product family returns "OK" response
packagemainimport("context""encoding/json""fmt""os""time""github.com/DataDog/datadog-api-client-go/v2/api/datadog""github.com/DataDog/datadog-api-client-go/v2/api/datadogV2")funcmain(){ctx:=datadog.NewDefaultContext(context.Background())configuration:=datadog.NewConfiguration()apiClient:=datadog.NewAPIClient(configuration)api:=datadogV2.NewUsageMeteringApi(apiClient)resp,r,err:=api.GetHourlyUsage(ctx,time.Now().AddDate(0,0,-3),"infra_hosts",*datadogV2.NewGetHourlyUsageOptionalParameters())iferr!=nil{fmt.Fprintf(os.Stderr,"Error when calling `UsageMeteringApi.GetHourlyUsage`: %v\n",err)fmt.Fprintf(os.Stderr,"Full HTTP response: %v\n",r)}responseContent,_:=json.MarshalIndent(resp,""," ")fmt.Fprintf(os.Stdout,"Response from `UsageMeteringApi.GetHourlyUsage`:\n%s\n",responseContent)}
// Get hourly usage by product family returns "OK" responseimportcom.datadog.api.client.ApiClient;importcom.datadog.api.client.ApiException;importcom.datadog.api.client.v2.api.UsageMeteringApi;importcom.datadog.api.client.v2.model.HourlyUsageResponse;importjava.time.OffsetDateTime;publicclassExample{publicstaticvoidmain(String[]args){ApiClientdefaultClient=ApiClient.getDefaultApiClient();UsageMeteringApiapiInstance=newUsageMeteringApi(defaultClient);try{HourlyUsageResponseresult=apiInstance.getHourlyUsage(OffsetDateTime.now().plusDays(-3),"infra_hosts");System.out.println(result);}catch(ApiExceptione){System.err.println("Exception when calling UsageMeteringApi#getHourlyUsage");System.err.println("Status code: "+e.getCode());System.err.println("Reason: "+e.getResponseBody());System.err.println("Response headers: "+e.getResponseHeaders());e.printStackTrace();}}}
// Get hourly usage by product family returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV2::api_usage_metering::GetHourlyUsageOptionalParams;usedatadog_api_client::datadogV2::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_hourly_usage(DateTime::parse_from_rfc3339("2021-11-08T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),"infra_hosts".to_string(),GetHourlyUsageOptionalParams::default(),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage by product family returns "OK" response
*/import{client,v2}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv2.UsageMeteringApi(configuration);constparams: v2.UsageMeteringApiGetHourlyUsageRequest={filterTimestampStart: newDate(newDate().getTime()+-3*86400*1000),filterProductFamilies:"infra_hosts",};apiInstance.getHourlyUsage(params).then((data: v2.HourlyUsageResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
Obtén la atribución de uso por hora. Los datos de múltiples regiones estarán disponibles a partir del 1 de marzo de 2023.
El endpoint de esta API está paginado. Para asegurarte de que recibes todos los registros, comprueba si el valor de next_record_id está
definido en la respuesta. Si lo está, realiza otra solicitud y pasa next_record_id como parámetro.
Ejemplo de pseudocódigo:
response := GetHourlyUsageAttribution(start_month)
cursor := response.metadata.pagination.next_record_id
WHILE cursor != null BEGIN
sleep(5 seconds) # Evita alcanzar el límite de frecuencia
response := GetHourlyUsageAttribution(start_month, next_record_id=cursor)
cursor := response.metadata.pagination.next_record_id
END
This endpoint requires the usage_read permission.
OAuth apps require the usage_read authorization scope to access this endpoint.
Argumentos
Cadenas de consulta
Nombre
Tipo
Descripción
start_hr [required]
string
Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage beginning at this hour.
end_hr
string
Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage ending
before this hour.
Response containing the hourly usage attribution by tag(s).
Expand All
Campo
Tipo
Descripción
metadata
object
The object containing document metadata.
pagination
object
The metadata for the current pagination.
next_record_id
string
The cursor to get the next results (if any). To make the next request, use the same parameters and add next_record_id.
usage
[object]
Get the hourly usage attribution by tag(s).
hour
date-time
The hour for the usage.
org_name
string
The name of the organization.
public_id
string
The organization public ID.
region
string
The region of the Datadog instance that the organization belongs to.
tag_config_source
string
The source of the usage attribution tag configuration and the selected tags in the format of <source_org_name>:::<selected tag 1>///<selected tag 2>///<selected tag 3>.
tags
object
Tag keys and values.
A null value here means that the requested tag breakdown cannot be applied because it does not match the tags
configured for usage attribution.
In this scenario the API returns the total usage, not broken down by tags.
<any-key>
[string]
A list of values that are associated with each tag key.
An empty list means the resource use wasn't tagged with the respective tag.
Multiple values means the respective tag was applied multiple times on the resource.
An <empty> value means the resource was tagged with the respective tag but did not have a value.
total_usage_sum
double
Total product usage for the given tags within the hour.
updated_at
string
Shows the most recent hour in the current month for all organizations where usages are calculated.
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage attribution returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetHourlyUsageAttributionRequest={startHr: newDate(newDate().getTime()+-3*86400*1000),usageType:"infra_host_usage",};apiInstance.getHourlyUsageAttribution(params).then((data: v1.HourlyUsageAttributionResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
Obtén la atribución de uso por mes. Los datos de múltiples regiones estarán disponibles a partir del 1 de marzo de 2023.
El endpoint de esta API está paginado. Para asegurarte de que recibes todos los registros, comprueba si el valor de next_record_id está
definido en la respuesta. Si lo está, realiza otra solicitud y pasa next_record_id como parámetro.
Ejemplo de pseudocódigo:
response := GetMonthlyUsageAttribution(start_month)
cursor := response.metadata.pagination.next_record_id
WHILE cursor != null BEGIN
sleep(5 seconds) # Evita alcanzar el límite de la frecuencia
response := GetMonthlyUsageAttribution(start_month, next_record_id=cursor)
cursor := response.metadata.pagination.next_record_id
END
This endpoint requires the usage_read permission.
OAuth apps require the usage_read authorization scope to access this endpoint.
Argumentos
Cadenas de consulta
Nombre
Tipo
Descripción
start_month [required]
string
Datetime in ISO-8601 format, UTC, precise to month: [YYYY-MM] for usage beginning in this month.
Maximum of 15 months ago.
end_month
string
Datetime in ISO-8601 format, UTC, precise to month: [YYYY-MM] for usage ending this month.
Response containing the monthly Usage Summary by tag(s).
Expand All
Campo
Tipo
Descripción
metadata
object
The object containing document metadata.
aggregates
[object]
An array of available aggregates.
agg_type
string
The aggregate type.
field
string
The field.
value
double
The value for a given field.
pagination
object
The metadata for the current pagination.
next_record_id
string
The cursor to use to get the next results, if any. To make the next request, use the same parameters with the addition of the next_record_id.
usage
[object]
Get usage summary by tag(s).
month
date-time
Datetime in ISO-8601 format, UTC, precise to month: [YYYY-MM].
org_name
string
The name of the organization.
public_id
string
The organization public ID.
region
string
The region of the Datadog instance that the organization belongs to.
tag_config_source
string
The source of the usage attribution tag configuration and the selected tags in the format <source_org_name>:::<selected tag 1>///<selected tag 2>///<selected tag 3>.
tags
object
Tag keys and values.
A null value here means that the requested tag breakdown cannot be applied because it does not match the tags
configured for usage attribution.
In this scenario the API returns the total usage, not broken down by tags.
<any-key>
[string]
A list of values that are associated with each tag key.
An empty list means the resource use wasn't tagged with the respective tag.
Multiple values means the respective tag was applied multiple times on the resource.
An <empty> value means the resource was tagged with the respective tag but did not have a value.
updated_at
date-time
Datetime of the most recent update to the usage values.
values
object
Fields in Usage Summary by tag(s).
api_percentage
double
The percentage of synthetic API test usage by tag(s).
api_usage
double
The synthetic API test usage by tag(s).
apm_fargate_percentage
double
The percentage of APM ECS Fargate task usage by tag(s).
apm_fargate_usage
double
The APM ECS Fargate task usage by tag(s).
apm_host_percentage
double
The percentage of APM host usage by tag(s).
apm_host_usage
double
The APM host usage by tag(s).
apm_usm_percentage
double
The percentage of APM and Universal Service Monitoring host usage by tag(s).
apm_usm_usage
double
The APM and Universal Service Monitoring host usage by tag(s).
appsec_fargate_percentage
double
The percentage of Application Security Monitoring ECS Fargate task usage by tag(s).
appsec_fargate_usage
double
The Application Security Monitoring ECS Fargate task usage by tag(s).
appsec_percentage
double
The percentage of Application Security Monitoring host usage by tag(s).
appsec_usage
double
The Application Security Monitoring host usage by tag(s).
asm_serverless_traced_invocations_percentage
double
The percentage of Application Security Monitoring Serverless traced invocations usage by tag(s).
asm_serverless_traced_invocations_usage
double
The Application Security Monitoring Serverless traced invocations usage by tag(s).
browser_percentage
double
The percentage of synthetic browser test usage by tag(s).
browser_usage
double
The synthetic browser test usage by tag(s).
ci_pipeline_indexed_spans_percentage
double
The percentage of CI Pipeline Indexed Spans usage by tag(s).
ci_pipeline_indexed_spans_usage
double
The total CI Pipeline Indexed Spans usage by tag(s).
ci_test_indexed_spans_percentage
double
The percentage of CI Test Indexed Spans usage by tag(s).
ci_test_indexed_spans_usage
double
The total CI Test Indexed Spans usage by tag(s).
ci_visibility_itr_percentage
double
The percentage of Git committers for Intelligent Test Runner usage by tag(s).
ci_visibility_itr_usage
double
The Git committers for Intelligent Test Runner usage by tag(s).
cloud_siem_percentage
double
The percentage of Cloud Security Information and Event Management usage by tag(s).
cloud_siem_usage
double
The Cloud Security Information and Event Management usage by tag(s).
code_security_host_percentage
double
The percentage of Code Security host usage by tags.
code_security_host_usage
double
The Code Security host usage by tags.
container_excl_agent_percentage
double
The percentage of container usage without the Datadog Agent by tag(s).
container_excl_agent_usage
double
The container usage without the Datadog Agent by tag(s).
container_percentage
double
The percentage of container usage by tag(s).
container_usage
double
The container usage by tag(s).
cspm_containers_percentage
double
The percentage of Cloud Security Management Pro container usage by tag(s).
cspm_containers_usage
double
The Cloud Security Management Pro container usage by tag(s).
cspm_hosts_percentage
double
The percentage of Cloud Security Management Pro host usage by tag(s).
cspm_hosts_usage
double
The Cloud Security Management Pro host usage by tag(s).
custom_event_percentage
double
The percentage of Custom Events usage by tag(s).
custom_event_usage
double
The total Custom Events usage by tag(s).
custom_ingested_timeseries_percentage
double
The percentage of ingested custom metrics usage by tag(s).
custom_ingested_timeseries_usage
double
The ingested custom metrics usage by tag(s).
custom_timeseries_percentage
double
The percentage of indexed custom metrics usage by tag(s).
custom_timeseries_usage
double
The indexed custom metrics usage by tag(s).
cws_containers_percentage
double
The percentage of Cloud Workload Security container usage by tag(s).
cws_containers_usage
double
The Cloud Workload Security container usage by tag(s).
cws_fargate_task_percentage
double
The percentage of Cloud Workload Security Fargate task usage by tag(s).
cws_fargate_task_usage
double
The Cloud Workload Security Fargate task usage by tag(s).
cws_hosts_percentage
double
The percentage of Cloud Workload Security host usage by tag(s).
cws_hosts_usage
double
The Cloud Workload Security host usage by tag(s).
data_jobs_monitoring_usage
double
The Data Jobs Monitoring usage by tag(s).
data_stream_monitoring_usage
double
The Data Stream Monitoring usage by tag(s).
dbm_hosts_percentage
double
The percentage of Database Monitoring host usage by tag(s).
dbm_hosts_usage
double
The Database Monitoring host usage by tag(s).
dbm_queries_percentage
double
The percentage of Database Monitoring queries usage by tag(s).
dbm_queries_usage
double
The Database Monitoring queries usage by tag(s).
error_tracking_percentage
double
The percentage of error tracking events usage by tag(s).
error_tracking_usage
double
The error tracking events usage by tag(s).
estimated_indexed_spans_percentage
double
The percentage of estimated indexed spans usage by tag(s).
estimated_indexed_spans_usage
double
The estimated indexed spans usage by tag(s).
estimated_ingested_spans_percentage
double
The percentage of estimated ingested spans usage by tag(s).
estimated_ingested_spans_usage
double
The estimated ingested spans usage by tag(s).
fargate_percentage
double
The percentage of Fargate usage by tags.
fargate_usage
double
The Fargate usage by tags.
functions_percentage
double
The percentage of Lambda function usage by tag(s).
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get monthly usage attribution returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetMonthlyUsageAttributionRequest={startMonth: newDate(newDate().getTime()+-3*86400*1000),fields:"infra_host_usage",};apiInstance.getMonthlyUsageAttribution(params).then((data: v1.MonthlyUsageAttributionResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
Get active billing dimensions for cost attribution. Cost data for a given month becomes available no later than the 19th of the following month.
This endpoint requires the usage_read permission.
OAuth apps require the usage_read authorization scope to access this endpoint.
"""
Get active billing dimensions for cost attribution returns "OK" response
"""fromdatadog_api_clientimportApiClient,Configurationfromdatadog_api_client.v2.api.usage_metering_apiimportUsageMeteringApiconfiguration=Configuration()withApiClient(configuration)asapi_client:api_instance=UsageMeteringApi(api_client)response=api_instance.get_active_billing_dimensions()print(response)
# Get active billing dimensions for cost attribution returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V2::UsageMeteringAPI.newpapi_instance.get_active_billing_dimensions()
// Get active billing dimensions for cost attribution returns "OK" response
packagemainimport("context""encoding/json""fmt""os""github.com/DataDog/datadog-api-client-go/v2/api/datadog""github.com/DataDog/datadog-api-client-go/v2/api/datadogV2")funcmain(){ctx:=datadog.NewDefaultContext(context.Background())configuration:=datadog.NewConfiguration()apiClient:=datadog.NewAPIClient(configuration)api:=datadogV2.NewUsageMeteringApi(apiClient)resp,r,err:=api.GetActiveBillingDimensions(ctx)iferr!=nil{fmt.Fprintf(os.Stderr,"Error when calling `UsageMeteringApi.GetActiveBillingDimensions`: %v\n",err)fmt.Fprintf(os.Stderr,"Full HTTP response: %v\n",r)}responseContent,_:=json.MarshalIndent(resp,""," ")fmt.Fprintf(os.Stdout,"Response from `UsageMeteringApi.GetActiveBillingDimensions`:\n%s\n",responseContent)}
// Get active billing dimensions for cost attribution returns "OK" responseimportcom.datadog.api.client.ApiClient;importcom.datadog.api.client.ApiException;importcom.datadog.api.client.v2.api.UsageMeteringApi;importcom.datadog.api.client.v2.model.ActiveBillingDimensionsResponse;publicclassExample{publicstaticvoidmain(String[]args){ApiClientdefaultClient=ApiClient.getDefaultApiClient();UsageMeteringApiapiInstance=newUsageMeteringApi(defaultClient);try{ActiveBillingDimensionsResponseresult=apiInstance.getActiveBillingDimensions();System.out.println(result);}catch(ApiExceptione){System.err.println("Exception when calling UsageMeteringApi#getActiveBillingDimensions");System.err.println("Status code: "+e.getCode());System.err.println("Reason: "+e.getResponseBody());System.err.println("Response headers: "+e.getResponseHeaders());e.printStackTrace();}}}
// Get active billing dimensions for cost attribution returns "OK" response
usedatadog_api_client::datadog;usedatadog_api_client::datadogV2::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_active_billing_dimensions().await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get active billing dimensions for cost attribution returns "OK" response
*/import{client,v2}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv2.UsageMeteringApi(configuration);apiInstance.getActiveBillingDimensions().then((data: v2.ActiveBillingDimensionsResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
OAuth apps require the usage_read authorization scope to access this endpoint.
Argumentos
Cadenas de consulta
Nombre
Tipo
Descripción
month
string
Datetime in ISO-8601 format, UTC, precise to month: [YYYY-MM] for usage starting this month.
include_connected_accounts
boolean
Boolean to specify whether to include accounts connected to the current account as partner customers in the Datadog partner network program. Defaults to false.
"""
Get billable usage across your account returns "OK" response
"""fromdatadog_api_clientimportApiClient,Configurationfromdatadog_api_client.v1.api.usage_metering_apiimportUsageMeteringApiconfiguration=Configuration()withApiClient(configuration)asapi_client:api_instance=UsageMeteringApi(api_client)response=api_instance.get_usage_billable_summary()print(response)
# Get billable usage across your account returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newpapi_instance.get_usage_billable_summary()
// Get billable usage across your account returns "OK" response
packagemainimport("context""encoding/json""fmt""os""github.com/DataDog/datadog-api-client-go/v2/api/datadog""github.com/DataDog/datadog-api-client-go/v2/api/datadogV1")funcmain(){ctx:=datadog.NewDefaultContext(context.Background())configuration:=datadog.NewConfiguration()apiClient:=datadog.NewAPIClient(configuration)api:=datadogV1.NewUsageMeteringApi(apiClient)resp,r,err:=api.GetUsageBillableSummary(ctx,*datadogV1.NewGetUsageBillableSummaryOptionalParameters())iferr!=nil{fmt.Fprintf(os.Stderr,"Error when calling `UsageMeteringApi.GetUsageBillableSummary`: %v\n",err)fmt.Fprintf(os.Stderr,"Full HTTP response: %v\n",r)}responseContent,_:=json.MarshalIndent(resp,""," ")fmt.Fprintf(os.Stdout,"Response from `UsageMeteringApi.GetUsageBillableSummary`:\n%s\n",responseContent)}
// Get billable usage across your account returns "OK" responseimportcom.datadog.api.client.ApiClient;importcom.datadog.api.client.ApiException;importcom.datadog.api.client.v1.api.UsageMeteringApi;importcom.datadog.api.client.v1.model.UsageBillableSummaryResponse;publicclassExample{publicstaticvoidmain(String[]args){ApiClientdefaultClient=ApiClient.getDefaultApiClient();UsageMeteringApiapiInstance=newUsageMeteringApi(defaultClient);try{UsageBillableSummaryResponseresult=apiInstance.getUsageBillableSummary();System.out.println(result);}catch(ApiExceptione){System.err.println("Exception when calling UsageMeteringApi#getUsageBillableSummary");System.err.println("Status code: "+e.getCode());System.err.println("Reason: "+e.getResponseBody());System.err.println("Response headers: "+e.getResponseHeaders());e.printStackTrace();}}}
// Get billable usage across your account returns "OK" response
usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageBillableSummaryOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_billable_summary(GetUsageBillableSummaryOptionalParams::default()).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get billable usage across your account returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);apiInstance.getUsageBillableSummary().then((data: v1.UsageBillableSummaryResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
Get historical cost across multi-org and single root-org accounts.
Cost data for a given month becomes available no later than the 16th of the following month.
OAuth apps require the usage_read authorization scope to access this endpoint.
Argumentos
Cadenas de consulta
Nombre
Tipo
Descripción
view
string
String to specify whether cost is broken down at a parent-org level or at the sub-org level. Available views are summary and sub-org. Defaults to summary.
start_month [required]
string
Datetime in ISO-8601 format, UTC, precise to month: [YYYY-MM] for cost beginning this month.
end_month
string
Datetime in ISO-8601 format, UTC, precise to month: [YYYY-MM] for cost ending this month.
include_connected_accounts
boolean
Boolean to specify whether to include accounts connected to the current account as partner customers in the Datadog partner network program. Defaults to false.
"""
Get historical cost across your account returns "OK" response
"""fromdatetimeimportdatetimefromdateutil.relativedeltaimportrelativedeltafromdatadog_api_clientimportApiClient,Configurationfromdatadog_api_client.v2.api.usage_metering_apiimportUsageMeteringApiconfiguration=Configuration()withApiClient(configuration)asapi_client:api_instance=UsageMeteringApi(api_client)response=api_instance.get_historical_cost_by_org(view="sub-org",start_month=(datetime.now()+relativedelta(months=-2)),)print(response)
# Get historical cost across your account returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V2::UsageMeteringAPI.newopts={view:"sub-org",}papi_instance.get_historical_cost_by_org((Time.now+-2*86400*30),opts)
// Get historical cost across your account returns "OK" response
packagemainimport("context""encoding/json""fmt""os""time""github.com/DataDog/datadog-api-client-go/v2/api/datadog""github.com/DataDog/datadog-api-client-go/v2/api/datadogV2")funcmain(){ctx:=datadog.NewDefaultContext(context.Background())configuration:=datadog.NewConfiguration()apiClient:=datadog.NewAPIClient(configuration)api:=datadogV2.NewUsageMeteringApi(apiClient)resp,r,err:=api.GetHistoricalCostByOrg(ctx,time.Now().AddDate(0,-2,0),*datadogV2.NewGetHistoricalCostByOrgOptionalParameters().WithView("sub-org"))iferr!=nil{fmt.Fprintf(os.Stderr,"Error when calling `UsageMeteringApi.GetHistoricalCostByOrg`: %v\n",err)fmt.Fprintf(os.Stderr,"Full HTTP response: %v\n",r)}responseContent,_:=json.MarshalIndent(resp,""," ")fmt.Fprintf(os.Stdout,"Response from `UsageMeteringApi.GetHistoricalCostByOrg`:\n%s\n",responseContent)}
// Get historical cost across your account returns "OK" responseimportcom.datadog.api.client.ApiClient;importcom.datadog.api.client.ApiException;importcom.datadog.api.client.v2.api.UsageMeteringApi;importcom.datadog.api.client.v2.api.UsageMeteringApi.GetHistoricalCostByOrgOptionalParameters;importcom.datadog.api.client.v2.model.CostByOrgResponse;importjava.time.OffsetDateTime;publicclassExample{publicstaticvoidmain(String[]args){ApiClientdefaultClient=ApiClient.getDefaultApiClient();UsageMeteringApiapiInstance=newUsageMeteringApi(defaultClient);try{CostByOrgResponseresult=apiInstance.getHistoricalCostByOrg(OffsetDateTime.now().plusMonths(-2),newGetHistoricalCostByOrgOptionalParameters().view("sub-org"));System.out.println(result);}catch(ApiExceptione){System.err.println("Exception when calling UsageMeteringApi#getHistoricalCostByOrg");System.err.println("Status code: "+e.getCode());System.err.println("Reason: "+e.getResponseBody());System.err.println("Response headers: "+e.getResponseHeaders());e.printStackTrace();}}}
// Get historical cost across your account returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV2::api_usage_metering::GetHistoricalCostByOrgOptionalParams;usedatadog_api_client::datadogV2::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_historical_cost_by_org(DateTime::parse_from_rfc3339("2021-09-11T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetHistoricalCostByOrgOptionalParams::default().view("sub-org".to_string()),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get historical cost across your account returns "OK" response
*/import{client,v2}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv2.UsageMeteringApi(configuration);constparams: v2.UsageMeteringApiGetHistoricalCostByOrgRequest={view:"sub-org",startMonth: newDate(newDate().getTime()+-2*86400*30*1000),};apiInstance.getHistoricalCostByOrg(params).then((data: v2.CostByOrgResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
Get monthly cost attribution by tag across multi-org and single root-org accounts.
Cost Attribution data for a given month becomes available no later than the 19th of the following month.
This API endpoint is paginated. To make sure you receive all records, check if the value of next_record_id is
set in the response. If it is, make another request and pass next_record_id as a parameter.
Pseudo code example:
response := GetMonthlyCostAttribution(start_month, end_month)
cursor := response.metadata.pagination.next_record_id
WHILE cursor != null BEGIN
sleep(5 seconds) # Avoid running into rate limit
response := GetMonthlyCostAttribution(start_month, end_month, next_record_id=cursor)
cursor := response.metadata.pagination.next_record_id
END
This endpoint is only accessible for parent-level organizations. This endpoint is not available in the Government (US1-FED) site.
This endpoint requires the usage_read permission.
OAuth apps require the usage_read authorization scope to access this endpoint.
Argumentos
Cadenas de consulta
Nombre
Tipo
Descripción
start_month [required]
string
Datetime in ISO-8601 format, UTC, precise to month: [YYYY-MM] for cost beginning in this month.
end_month
string
Datetime in ISO-8601 format, UTC, precise to month: [YYYY-MM] for cost ending this month.
fields [required]
string
Comma-separated list specifying cost types (e.g., <billing_dimension>_on_demand_cost, <billing_dimension>_committed_cost, <billing_dimension>_total_cost) and the
proportions (<billing_dimension>_percentage_in_org, <billing_dimension>_percentage_in_account). Use * to retrieve all fields.
Example: infra_host_on_demand_cost,infra_host_percentage_in_account
To obtain the complete list of active billing dimensions that can be used to replace
<billing_dimension> in the field names, make a request to the Get active billing dimensions API.
sort_direction
enum
The direction to sort by: [desc, asc]. Allowed enum values: desc, asc
sort_name
string
The billing dimension to sort by. Always sorted by total cost. Example: infra_host.
tag_breakdown_keys
string
Comma separated list of tag keys used to group cost. If no value is provided the cost will not be broken down by tags.
To see which tags are available, look for the value of tag_config_source in the API response.
next_record_id
string
List following results with a next_record_id provided in the previous query.
include_descendants
boolean
Include child org cost in the response. Defaults to true.
Response containing the monthly cost attribution by tag(s).
Expand All
Campo
Tipo
Descripción
data
[object]
Response containing cost attribution.
attributes
object
Cost Attribution by Tag for a given organization.
month
date-time
Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh].
org_name
string
The name of the organization.
public_id
string
The organization public ID.
tag_config_source
string
The source of the cost attribution tag configuration and the selected tags in the format <source_org_name>:::<selected tag 1>///<selected tag 2>///<selected tag 3>.
tags
object
Tag keys and values.
A null value here means that the requested tag breakdown cannot be applied because it does not match the tags
configured for usage attribution.
In this scenario the API returns the total cost, not broken down by tags.
<any-key>
[string]
A list of values that are associated with each tag key.
An empty list means the resource use wasn't tagged with the respective tag.
Multiple values means the respective tag was applied multiple times on the resource.
An <empty> value means the resource was tagged with the respective tag but did not have a value.
updated_at
string
Shows the most recent hour in the current months for all organizations for which all costs were calculated.
values
object
Fields in Cost Attribution by tag(s). Example: infra_host_on_demand_cost, infra_host_committed_cost, infra_host_total_cost, infra_host_percentage_in_org, infra_host_percentage_in_account.
id
string
Unique ID of the response.
type
enum
Type of cost attribution data.
Allowed enum values: cost_by_tag
default: cost_by_tag
meta
object
The object containing document metadata.
aggregates
[object]
An array of available aggregates.
agg_type
string
The aggregate type.
field
string
The field.
value
double
The value for a given field.
pagination
object
The metadata for the current pagination.
next_record_id
string
The cursor to use to get the next results, if any. To make the next request, use the same parameters with the addition of the next_record_id.
// Get Monthly Cost Attribution returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV2::api_usage_metering::GetMonthlyCostAttributionOptionalParams;usedatadog_api_client::datadogV2::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_monthly_cost_attribution(DateTime::parse_from_rfc3339("2021-11-06T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),"infra_host_total_cost".to_string(),GetMonthlyCostAttributionOptionalParams::default().end_month(DateTime::parse_from_rfc3339("2021-11-08T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get Monthly Cost Attribution returns "OK" response
*/import{client,v2}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv2.UsageMeteringApi(configuration);constparams: v2.UsageMeteringApiGetMonthlyCostAttributionRequest={startMonth: newDate(newDate().getTime()+-5*86400*1000),endMonth: newDate(newDate().getTime()+-3*86400*1000),fields:"infra_host_total_cost",};apiInstance.getMonthlyCostAttribution(params).then((data: v2.MonthlyCostAttributionResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
Get estimated cost across multi-org and single root-org accounts.
Estimated cost data is only available for the current month and previous month
and is delayed by up to 72 hours from when it was incurred.
To access historical costs prior to this, use the /historical_cost endpoint.
OAuth apps require the usage_read authorization scope to access this endpoint.
Argumentos
Cadenas de consulta
Nombre
Tipo
Descripción
view
string
String to specify whether cost is broken down at a parent-org level or at the sub-org level. Available views are summary and sub-org. Defaults to summary.
start_month
string
Datetime in ISO-8601 format, UTC, precise to month: [YYYY-MM] for cost beginning this month. Either start_month or start_date should be specified, but not both. (start_month cannot go beyond two months in the past). Provide an end_month to view month-over-month cost.
end_month
string
Datetime in ISO-8601 format, UTC, precise to month: [YYYY-MM] for cost ending this month.
start_date
string
Datetime in ISO-8601 format, UTC, precise to day: [YYYY-MM-DD] for cost beginning this day. Either start_month or start_date should be specified, but not both. (start_date cannot go beyond two months in the past). Provide an end_date to view day-over-day cumulative cost.
end_date
string
Datetime in ISO-8601 format, UTC, precise to day: [YYYY-MM-DD] for cost ending this day.
include_connected_accounts
boolean
Boolean to specify whether to include accounts connected to the current account as partner customers in the Datadog partner network program. Defaults to false.
"""
Get estimated cost across your account returns "OK" response
"""fromdatadog_api_clientimportApiClient,Configurationfromdatadog_api_client.v2.api.usage_metering_apiimportUsageMeteringApiconfiguration=Configuration()withApiClient(configuration)asapi_client:api_instance=UsageMeteringApi(api_client)response=api_instance.get_estimated_cost_by_org()print(response)
# Get estimated cost across your account returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V2::UsageMeteringAPI.newpapi_instance.get_estimated_cost_by_org()
// Get estimated cost across your account returns "OK" response
packagemainimport("context""encoding/json""fmt""os""github.com/DataDog/datadog-api-client-go/v2/api/datadog""github.com/DataDog/datadog-api-client-go/v2/api/datadogV2")funcmain(){ctx:=datadog.NewDefaultContext(context.Background())configuration:=datadog.NewConfiguration()apiClient:=datadog.NewAPIClient(configuration)api:=datadogV2.NewUsageMeteringApi(apiClient)resp,r,err:=api.GetEstimatedCostByOrg(ctx,*datadogV2.NewGetEstimatedCostByOrgOptionalParameters())iferr!=nil{fmt.Fprintf(os.Stderr,"Error when calling `UsageMeteringApi.GetEstimatedCostByOrg`: %v\n",err)fmt.Fprintf(os.Stderr,"Full HTTP response: %v\n",r)}responseContent,_:=json.MarshalIndent(resp,""," ")fmt.Fprintf(os.Stdout,"Response from `UsageMeteringApi.GetEstimatedCostByOrg`:\n%s\n",responseContent)}
// Get estimated cost across your account returns "OK" responseimportcom.datadog.api.client.ApiClient;importcom.datadog.api.client.ApiException;importcom.datadog.api.client.v2.api.UsageMeteringApi;importcom.datadog.api.client.v2.model.CostByOrgResponse;publicclassExample{publicstaticvoidmain(String[]args){ApiClientdefaultClient=ApiClient.getDefaultApiClient();UsageMeteringApiapiInstance=newUsageMeteringApi(defaultClient);try{CostByOrgResponseresult=apiInstance.getEstimatedCostByOrg();System.out.println(result);}catch(ApiExceptione){System.err.println("Exception when calling UsageMeteringApi#getEstimatedCostByOrg");System.err.println("Status code: "+e.getCode());System.err.println("Reason: "+e.getResponseBody());System.err.println("Response headers: "+e.getResponseHeaders());e.printStackTrace();}}}
// Get estimated cost across your account returns "OK" response
usedatadog_api_client::datadog;usedatadog_api_client::datadogV2::api_usage_metering::GetEstimatedCostByOrgOptionalParams;usedatadog_api_client::datadogV2::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_estimated_cost_by_org(GetEstimatedCostByOrgOptionalParams::default()).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get estimated cost across your account returns "OK" response
*/import{client,v2}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv2.UsageMeteringApi(configuration);apiInstance.getEstimatedCostByOrg().then((data: v2.CostByOrgResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
Obtén todas las métricas personalizadas por media horaria. Utiliza el parámetro mes para obtener una resolución de los datos del mes hasta la fecha o utiliza el parámetro día para obtener una resolución diaria. Se requiere uno de los dos y sólo se permite uno de los dos.
This endpoint requires the usage_read permission.
OAuth apps require the usage_read authorization scope to access this endpoint.
Argumentos
Cadenas de consulta
Nombre
Tipo
Descripción
month
string
Datetime in ISO-8601 format, UTC, precise to month: [YYYY-MM] for usage beginning at this hour. (Either month or day should be specified, but not both)
day
string
Datetime in ISO-8601 format, UTC, precise to day: [YYYY-MM-DD] for usage beginning at this hour. (Either month or day should be specified, but not both)
names
array
Comma-separated list of metric names.
limit
integer
Maximum number of results to return (between 1 and 5000) - defaults to 500 results if limit not specified.
next_record_id
string
List following results with a next_record_id provided in the previous query.
"""
Get all custom metrics by hourly average returns "OK" response
"""fromdatetimeimportdatetimefromdateutil.relativedeltaimportrelativedeltafromdatadog_api_clientimportApiClient,Configurationfromdatadog_api_client.v1.api.usage_metering_apiimportUsageMeteringApiconfiguration=Configuration()withApiClient(configuration)asapi_client:api_instance=UsageMeteringApi(api_client)response=api_instance.get_usage_top_avg_metrics(day=(datetime.now()+relativedelta(days=-3)),)print(response)
# Get all custom metrics by hourly average returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newopts={day:(Time.now+-3*86400),}papi_instance.get_usage_top_avg_metrics(opts)
// Get all custom metrics by hourly average returns "OK" response
packagemainimport("context""encoding/json""fmt""os""time""github.com/DataDog/datadog-api-client-go/v2/api/datadog""github.com/DataDog/datadog-api-client-go/v2/api/datadogV1")funcmain(){ctx:=datadog.NewDefaultContext(context.Background())configuration:=datadog.NewConfiguration()apiClient:=datadog.NewAPIClient(configuration)api:=datadogV1.NewUsageMeteringApi(apiClient)resp,r,err:=api.GetUsageTopAvgMetrics(ctx,*datadogV1.NewGetUsageTopAvgMetricsOptionalParameters().WithDay(time.Now().AddDate(0,0,-3)))iferr!=nil{fmt.Fprintf(os.Stderr,"Error when calling `UsageMeteringApi.GetUsageTopAvgMetrics`: %v\n",err)fmt.Fprintf(os.Stderr,"Full HTTP response: %v\n",r)}responseContent,_:=json.MarshalIndent(resp,""," ")fmt.Fprintf(os.Stdout,"Response from `UsageMeteringApi.GetUsageTopAvgMetrics`:\n%s\n",responseContent)}
// Get all custom metrics by hourly average returns "OK" responseimportcom.datadog.api.client.ApiClient;importcom.datadog.api.client.ApiException;importcom.datadog.api.client.v1.api.UsageMeteringApi;importcom.datadog.api.client.v1.api.UsageMeteringApi.GetUsageTopAvgMetricsOptionalParameters;importcom.datadog.api.client.v1.model.UsageTopAvgMetricsResponse;importjava.time.OffsetDateTime;publicclassExample{publicstaticvoidmain(String[]args){ApiClientdefaultClient=ApiClient.getDefaultApiClient();UsageMeteringApiapiInstance=newUsageMeteringApi(defaultClient);try{UsageTopAvgMetricsResponseresult=apiInstance.getUsageTopAvgMetrics(newGetUsageTopAvgMetricsOptionalParameters().day(OffsetDateTime.now().plusDays(-3)));System.out.println(result);}catch(ApiExceptione){System.err.println("Exception when calling UsageMeteringApi#getUsageTopAvgMetrics");System.err.println("Status code: "+e.getCode());System.err.println("Reason: "+e.getResponseBody());System.err.println("Response headers: "+e.getResponseHeaders());e.printStackTrace();}}}
// Get all custom metrics by hourly average returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageTopAvgMetricsOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_top_avg_metrics(GetUsageTopAvgMetricsOptionalParams::default().day(DateTime::parse_from_rfc3339("2021-11-08T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get all custom metrics by hourly average returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageTopAvgMetricsRequest={day: newDate(newDate().getTime()+-3*86400*1000),};apiInstance.getUsageTopAvgMetrics(params).then((data: v1.UsageTopAvgMetricsResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
Get projected cost across multi-org and single root-org accounts.
Projected cost data is only available for the current month and becomes available around the 12th of the month.
OAuth apps require the usage_read authorization scope to access this endpoint.
Argumentos
Cadenas de consulta
Nombre
Tipo
Descripción
view
string
String to specify whether cost is broken down at a parent-org level or at the sub-org level. Available views are summary and sub-org. Defaults to summary.
include_connected_accounts
boolean
Boolean to specify whether to include accounts connected to the current account as partner customers in the Datadog partner network program. Defaults to false.
"""
Get projected cost across your account returns "OK" response
"""fromdatadog_api_clientimportApiClient,Configurationfromdatadog_api_client.v2.api.usage_metering_apiimportUsageMeteringApiconfiguration=Configuration()withApiClient(configuration)asapi_client:api_instance=UsageMeteringApi(api_client)response=api_instance.get_projected_cost(view="sub-org",)print(response)
# Get projected cost across your account returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V2::UsageMeteringAPI.newopts={view:"sub-org",}papi_instance.get_projected_cost(opts)
// Get projected cost across your account returns "OK" response
packagemainimport("context""encoding/json""fmt""os""github.com/DataDog/datadog-api-client-go/v2/api/datadog""github.com/DataDog/datadog-api-client-go/v2/api/datadogV2")funcmain(){ctx:=datadog.NewDefaultContext(context.Background())configuration:=datadog.NewConfiguration()apiClient:=datadog.NewAPIClient(configuration)api:=datadogV2.NewUsageMeteringApi(apiClient)resp,r,err:=api.GetProjectedCost(ctx,*datadogV2.NewGetProjectedCostOptionalParameters().WithView("sub-org"))iferr!=nil{fmt.Fprintf(os.Stderr,"Error when calling `UsageMeteringApi.GetProjectedCost`: %v\n",err)fmt.Fprintf(os.Stderr,"Full HTTP response: %v\n",r)}responseContent,_:=json.MarshalIndent(resp,""," ")fmt.Fprintf(os.Stdout,"Response from `UsageMeteringApi.GetProjectedCost`:\n%s\n",responseContent)}
// Get projected cost across your account returns "OK" responseimportcom.datadog.api.client.ApiClient;importcom.datadog.api.client.ApiException;importcom.datadog.api.client.v2.api.UsageMeteringApi;importcom.datadog.api.client.v2.api.UsageMeteringApi.GetProjectedCostOptionalParameters;importcom.datadog.api.client.v2.model.ProjectedCostResponse;publicclassExample{publicstaticvoidmain(String[]args){ApiClientdefaultClient=ApiClient.getDefaultApiClient();UsageMeteringApiapiInstance=newUsageMeteringApi(defaultClient);try{ProjectedCostResponseresult=apiInstance.getProjectedCost(newGetProjectedCostOptionalParameters().view("sub-org"));System.out.println(result);}catch(ApiExceptione){System.err.println("Exception when calling UsageMeteringApi#getProjectedCost");System.err.println("Status code: "+e.getCode());System.err.println("Reason: "+e.getResponseBody());System.err.println("Response headers: "+e.getResponseHeaders());e.printStackTrace();}}}
// Get projected cost across your account returns "OK" response
usedatadog_api_client::datadog;usedatadog_api_client::datadogV2::api_usage_metering::GetProjectedCostOptionalParams;usedatadog_api_client::datadogV2::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_projected_cost(GetProjectedCostOptionalParams::default().view("sub-org".to_string())).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get projected cost across your account returns "OK" response
*/import{client,v2}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv2.UsageMeteringApi(configuration);constparams: v2.UsageMeteringApiGetProjectedCostRequest={view:"sub-org",};apiInstance.getProjectedCost(params).then((data: v2.ProjectedCostResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
OAuth apps require the usage_read authorization scope to access this endpoint.
Argumentos
Cadenas de consulta
Nombre
Tipo
Descripción
start_month [required]
string
Datetime in ISO-8601 format, UTC, precise to month: [YYYY-MM] for usage beginning in this month.
Maximum of 15 months ago.
end_month
string
Datetime in ISO-8601 format, UTC, precise to month: [YYYY-MM] for usage ending this month.
include_org_details
boolean
Include usage summaries for each sub-org.
include_connected_accounts
boolean
Boolean to specify whether to include accounts connected to the current account as partner customers in the Datadog partner network program. Defaults to false.
Response summarizing all usage aggregated across the months in the request for all organizations, and broken down by month and by organization.
Expand All
Campo
Tipo
Descripción
agent_host_top99p_sum
int64
Shows the 99th percentile of all agent hosts over all hours in the current month for all organizations.
apm_azure_app_service_host_top99p_sum
int64
Shows the 99th percentile of all Azure app services using APM over all hours in the current month all organizations.
apm_devsecops_host_top99p_sum
int64
Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current month for all organizations.
apm_fargate_count_avg_sum
int64
Shows the average of all APM ECS Fargate tasks over all hours in the current month for all organizations.
apm_host_top99p_sum
int64
Shows the 99th percentile of all distinct APM hosts over all hours in the current month for all organizations.
appsec_fargate_count_avg_sum
int64
Shows the average of all Application Security Monitoring ECS Fargate tasks over all hours in the current month for all organizations.
asm_serverless_agg_sum
int64
Shows the sum of all Application Security Monitoring Serverless invocations over all hours in the current months for all organizations.
audit_logs_lines_indexed_agg_sum
int64
DEPRECATED: Shows the sum of all audit logs lines indexed over all hours in the current month for all organizations (To be deprecated on October 1st, 2024).
audit_trail_enabled_hwm_sum
int64
Shows the total number of organizations that had Audit Trail enabled over a specific number of months.
avg_profiled_fargate_tasks_sum
int64
The average total count for Fargate Container Profiler over all hours in the current month for all organizations.
aws_host_top99p_sum
int64
Shows the 99th percentile of all AWS hosts over all hours in the current month for all organizations.
aws_lambda_func_count
int64
Shows the average of the number of functions that executed 1 or more times each hour in the current month for all organizations.
aws_lambda_invocations_sum
int64
Shows the sum of all AWS Lambda invocations over all hours in the current month for all organizations.
azure_app_service_top99p_sum
int64
Shows the 99th percentile of all Azure app services over all hours in the current month for all organizations.
azure_host_top99p_sum
int64
Shows the 99th percentile of all Azure hosts over all hours in the current month for all organizations.
billable_ingested_bytes_agg_sum
int64
Shows the sum of all log bytes ingested over all hours in the current month for all organizations.
browser_rum_lite_session_count_agg_sum
int64
DEPRECATED: Shows the sum of all browser lite sessions over all hours in the current month for all organizations (To be deprecated on October 1st, 2024).
browser_rum_replay_session_count_agg_sum
int64
Shows the sum of all browser replay sessions over all hours in the current month for all organizations (To be deprecated on October 1st, 2024).
browser_rum_units_agg_sum
int64
DEPRECATED: Shows the sum of all browser RUM units over all hours in the current month for all organizations (To be deprecated on October 1st, 2024).
ci_pipeline_indexed_spans_agg_sum
int64
Shows the sum of all CI pipeline indexed spans over all hours in the current month for all organizations.
ci_test_indexed_spans_agg_sum
int64
Shows the sum of all CI test indexed spans over all hours in the current month for all organizations.
ci_visibility_itr_committers_hwm_sum
int64
Shows the high-water mark of all CI visibility intelligent test runner committers over all hours in the current month for all organizations.
ci_visibility_pipeline_committers_hwm_sum
int64
Shows the high-water mark of all CI visibility pipeline committers over all hours in the current month for all organizations.
ci_visibility_test_committers_hwm_sum
int64
Shows the high-water mark of all CI visibility test committers over all hours in the current month for all organizations.
cloud_cost_management_aws_host_count_avg_sum
int64
Sum of the host count average for Cloud Cost Management for AWS.
cloud_cost_management_azure_host_count_avg_sum
int64
Sum of the host count average for Cloud Cost Management for Azure.
cloud_cost_management_gcp_host_count_avg_sum
int64
Sum of the host count average for Cloud Cost Management for GCP.
cloud_cost_management_host_count_avg_sum
int64
Sum of the host count average for Cloud Cost Management for all cloud providers.
cloud_siem_events_agg_sum
int64
Shows the sum of all Cloud Security Information and Event Management events over all hours in the current month for all organizations.
code_analysis_sa_committers_hwm_sum
int64
Shows the high-water mark of all Static Analysis committers over all hours in the current month for all organizations.
code_analysis_sca_committers_hwm_sum
int64
Shows the high-water mark of all static Software Composition Analysis committers over all hours in the current month for all organizations.
code_security_host_top99p_sum
int64
Shows the 99th percentile of all Code Security hosts over all hours in the current month for all organizations.
container_avg_sum
int64
Shows the average of all distinct containers over all hours in the current month for all organizations.
container_excl_agent_avg_sum
int64
Shows the average of the containers without the Datadog Agent over all hours in the current month for all organizations.
container_hwm_sum
int64
Shows the sum of the high-water marks of all distinct containers over all hours in the current month for all organizations.
csm_container_enterprise_compliance_count_agg_sum
int64
Shows the sum of all Cloud Security Management Enterprise compliance containers over all hours in the current month for all organizations.
csm_container_enterprise_cws_count_agg_sum
int64
Shows the sum of all Cloud Security Management Enterprise Cloud Workload Security containers over all hours in the current month for all organizations.
csm_container_enterprise_total_count_agg_sum
int64
Shows the sum of all Cloud Security Management Enterprise containers over all hours in the current month for all organizations.
csm_host_enterprise_aas_host_count_top99p_sum
int64
Shows the 99th percentile of all Cloud Security Management Enterprise Azure app services hosts over all hours in the current month for all organizations.
csm_host_enterprise_aws_host_count_top99p_sum
int64
Shows the 99th percentile of all Cloud Security Management Enterprise AWS hosts over all hours in the current month for all organizations.
csm_host_enterprise_azure_host_count_top99p_sum
int64
Shows the 99th percentile of all Cloud Security Management Enterprise Azure hosts over all hours in the current month for all organizations.
Shows the 99th percentile of all Cloud Security Management Enterprise compliance hosts over all hours in the current month for all organizations.
csm_host_enterprise_cws_host_count_top99p_sum
int64
Shows the 99th percentile of all Cloud Security Management Enterprise Cloud Workload Security hosts over all hours in the current month for all organizations.
csm_host_enterprise_gcp_host_count_top99p_sum
int64
Shows the 99th percentile of all Cloud Security Management Enterprise GCP hosts over all hours in the current month for all organizations.
csm_host_enterprise_total_host_count_top99p_sum
int64
Shows the 99th percentile of all Cloud Security Management Enterprise hosts over all hours in the current month for all organizations.
cspm_aas_host_top99p_sum
int64
Shows the 99th percentile of all Cloud Security Management Pro Azure app services hosts over all hours in the current month for all organizations.
cspm_aws_host_top99p_sum
int64
Shows the 99th percentile of all Cloud Security Management Pro AWS hosts over all hours in the current month for all organizations.
cspm_azure_host_top99p_sum
int64
Shows the 99th percentile of all Cloud Security Management Pro Azure hosts over all hours in the current month for all organizations.
cspm_container_avg_sum
int64
Shows the average number of Cloud Security Management Pro containers over all hours in the current month for all organizations.
cspm_container_hwm_sum
int64
Shows the sum of the high-water marks of Cloud Security Management Pro containers over all hours in the current month for all organizations.
cspm_gcp_host_top99p_sum
int64
Shows the 99th percentile of all Cloud Security Management Pro GCP hosts over all hours in the current month for all organizations.
cspm_host_top99p_sum
int64
Shows the 99th percentile of all Cloud Security Management Pro hosts over all hours in the current month for all organizations.
custom_historical_ts_sum
int64
Shows the average number of distinct historical custom metrics over all hours in the current month for all organizations.
custom_live_ts_sum
int64
Shows the average number of distinct live custom metrics over all hours in the current month for all organizations.
custom_ts_sum
int64
Shows the average number of distinct custom metrics over all hours in the current month for all organizations.
cws_container_avg_sum
int64
Shows the average of all distinct Cloud Workload Security containers over all hours in the current month for all organizations.
cws_fargate_task_avg_sum
int64
Shows the average of all distinct Cloud Workload Security Fargate tasks over all hours in the current month for all organizations.
cws_host_top99p_sum
int64
Shows the 99th percentile of all Cloud Workload Security hosts over all hours in the current month for all organizations.
data_jobs_monitoring_host_hr_agg_sum
int64
Shows the sum of Data Jobs Monitoring hosts over all hours in the current months for all organizations
dbm_host_top99p_sum
int64
Shows the 99th percentile of all Database Monitoring hosts over all hours in the current month for all organizations.
dbm_queries_avg_sum
int64
Shows the average of all distinct Database Monitoring Normalized Queries over all hours in the current month for all organizations.
end_date
date-time
Shows the last date of usage in the current month for all organizations.
eph_infra_host_agent_agg_sum
int64
Shows the sum of all ephemeral infrastructure hosts with the Datadog Agent over all hours in the current month for all organizations.
eph_infra_host_alibaba_agg_sum
int64
Shows the sum of all ephemeral infrastructure hosts on Alibaba over all hours in the current month for all organizations.
eph_infra_host_aws_agg_sum
int64
Shows the sum of all ephemeral infrastructure hosts on AWS over all hours in the current month for all organizations.
eph_infra_host_azure_agg_sum
int64
Shows the sum of all ephemeral infrastructure hosts on Azure over all hours in the current month for all organizations.
eph_infra_host_ent_agg_sum
int64
Shows the sum of all ephemeral infrastructure hosts for Enterprise over all hours in the current month for all organizations.
eph_infra_host_gcp_agg_sum
int64
Shows the sum of all ephemeral infrastructure hosts on GCP over all hours in the current month for all organizations.
eph_infra_host_heroku_agg_sum
int64
Shows the sum of all ephemeral infrastructure hosts on Heroku over all hours in the current month for all organizations.
eph_infra_host_only_aas_agg_sum
int64
Shows the sum of all ephemeral infrastructure hosts with only Azure App Services over all hours in the current month for all organizations.
eph_infra_host_only_vsphere_agg_sum
int64
Shows the sum of all ephemeral infrastructure hosts with only vSphere over all hours in the current month for all organizations.
eph_infra_host_opentelemetry_agg_sum
int64
Shows the sum of all ephemeral hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current month for all organizations.
eph_infra_host_opentelemetry_apm_agg_sum
int64
Shows the sum of all ephemeral APM hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current month for all organizations.
eph_infra_host_pro_agg_sum
int64
Shows the sum of all ephemeral infrastructure hosts for Pro over all hours in the current month for all organizations.
eph_infra_host_proplus_agg_sum
int64
Shows the sum of all ephemeral infrastructure hosts for Pro Plus over all hours in the current month for all organizations.
error_tracking_apm_error_events_agg_sum
int64
Shows the sum of all Error Tracking APM error events over all hours in the current month for all organizations.
error_tracking_error_events_agg_sum
int64
Shows the sum of all Error Tracking error events over all hours in the current month for all organizations.
error_tracking_events_agg_sum
int64
Shows the sum of all Error Tracking events over all hours in the current months for all organizations.
error_tracking_rum_error_events_agg_sum
int64
Shows the sum of all Error Tracking RUM error events over all hours in the current month for all organizations.
Shows the average number of Flex Logs Starter Storage Retention Adjustment Instances over all hours in the current months for all organizations.
flex_stored_logs_avg_sum
int64
Shows the average of all Flex Stored Logs over all hours in the current months for all organizations.
forwarding_events_bytes_agg_sum
int64
Shows the sum of all logs forwarding bytes over all hours in the current month for all organizations (data available as of April 1, 2023)
gcp_host_top99p_sum
int64
Shows the 99th percentile of all GCP hosts over all hours in the current month for all organizations.
heroku_host_top99p_sum
int64
Shows the 99th percentile of all Heroku dynos over all hours in the current month for all organizations.
incident_management_monthly_active_users_hwm_sum
int64
Shows sum of the high-water marks of incident management monthly active users in the current month for all organizations.
indexed_events_count_agg_sum
int64
DEPRECATED: Shows the sum of all log events indexed over all hours in the current month for all organizations (To be deprecated on October 1st, 2024).
infra_host_top99p_sum
int64
Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current month for all organizations.
ingested_events_bytes_agg_sum
int64
Shows the sum of all log bytes ingested over all hours in the current month for all organizations.
iot_device_agg_sum
int64
Shows the sum of all IoT devices over all hours in the current month for all organizations.
iot_device_top99p_sum
int64
Shows the 99th percentile of all IoT devices over all hours in the current month of all organizations.
last_updated
date-time
Shows the most recent hour in the current month for all organizations for which all usages were calculated.
live_indexed_events_agg_sum
int64
DEPRECATED: Shows the sum of all live logs indexed over all hours in the current month for all organization (To be deprecated on October 1st, 2024).
live_ingested_bytes_agg_sum
int64
Shows the sum of all live logs bytes ingested over all hours in the current month for all organizations (data available as of December 1, 2020).
logs_by_retention
object
Object containing logs usage data broken down by retention period.
orgs
object
Indexed logs usage summary for each organization for each retention period with usage.
usage
[object]
Indexed logs usage summary for each organization.
usage
[object]
Indexed logs usage for each active retention for the organization.
logs_indexed_logs_usage_sum
int64
Total indexed logs for this retention period.
logs_live_indexed_logs_usage_sum
int64
Live indexed logs for this retention period.
logs_rehydrated_indexed_logs_usage_sum
int64
Rehydrated indexed logs for this retention period.
retention
string
The retention period in days or "custom" for all custom retention periods.
usage
[object]
Aggregated index logs usage for each retention period with usage.
logs_indexed_logs_usage_agg_sum
int64
Total indexed logs for this retention period.
logs_live_indexed_logs_usage_agg_sum
int64
Live indexed logs for this retention period.
logs_rehydrated_indexed_logs_usage_agg_sum
int64
Rehydrated indexed logs for this retention period.
retention
string
The retention period in days or "custom" for all custom retention periods.
usage_by_month
object
Object containing a summary of indexed logs usage by retention period for a single month.
date
date-time
The month for the usage.
usage
[object]
Indexed logs usage for each active retention for the month.
logs_indexed_logs_usage_sum
int64
Total indexed logs for this retention period.
logs_live_indexed_logs_usage_sum
int64
Live indexed logs for this retention period.
logs_rehydrated_indexed_logs_usage_sum
int64
Rehydrated indexed logs for this retention period.
retention
string
The retention period in days or "custom" for all custom retention periods.
mobile_rum_lite_session_count_agg_sum
int64
DEPRECATED: Shows the sum of all mobile lite sessions over all hours in the current month for all organizations (To be deprecated on October 1st, 2024).
mobile_rum_session_count_agg_sum
int64
DEPRECATED: Shows the sum of all mobile RUM sessions over all hours in the current month for all organizations (To be deprecated on October 1st, 2024).
mobile_rum_session_count_android_agg_sum
int64
DEPRECATED: Shows the sum of all mobile RUM sessions on Android over all hours in the current month for all organizations (To be deprecated on October 1st, 2024).
mobile_rum_session_count_flutter_agg_sum
int64
DEPRECATED: Shows the sum of all mobile RUM sessions on Flutter over all hours in the current month for all organizations (To be deprecated on October 1st, 2024).
mobile_rum_session_count_ios_agg_sum
int64
DEPRECATED: Shows the sum of all mobile RUM sessions on iOS over all hours in the current month for all organizations (To be deprecated on October 1st, 2024).
mobile_rum_session_count_reactnative_agg_sum
int64
DEPRECATED: Shows the sum of all mobile RUM sessions on React Native over all hours in the current month for all organizations (To be deprecated on October 1st, 2024).
mobile_rum_session_count_roku_agg_sum
int64
DEPRECATED: Shows the sum of all mobile RUM sessions on Roku over all hours in the current month for all organizations (To be deprecated on October 1st, 2024).
mobile_rum_units_agg_sum
int64
DEPRECATED: Shows the sum of all mobile RUM units over all hours in the current month for all organizations (To be deprecated on October 1st, 2024).
ndm_netflow_events_agg_sum
int64
Shows the sum of all Network Device Monitoring NetFlow events over all hours in the current month for all organizations.
netflow_indexed_events_count_agg_sum
int64
DEPRECATED: Shows the sum of all Network flows indexed over all hours in the current month for all organizations (To be deprecated on October 1st, 2024).
npm_host_top99p_sum
int64
Shows the 99th percentile of all distinct Cloud Network Monitoring hosts (formerly known as Network hosts) over all hours in the current month for all organizations.
observability_pipelines_bytes_processed_agg_sum
int64
Sum of all observability pipelines bytes processed over all hours in the current month for all organizations.
oci_host_agg_sum
int64
Shows the sum of Oracle Cloud Infrastructure hosts over all hours in the current months for all organizations
oci_host_top99p_sum
int64
Shows the 99th percentile of Oracle Cloud Infrastructure hosts over all hours in the current months for all organizations
online_archive_events_count_agg_sum
int64
Sum of all online archived events over all hours in the current month for all organizations.
opentelemetry_apm_host_top99p_sum
int64
Shows the 99th percentile of APM hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current month for all organizations.
opentelemetry_host_top99p_sum
int64
Shows the 99th percentile of all hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current month for all organizations.
profiling_aas_count_top99p_sum
int64
Shows the 99th percentile of all profiled Azure app services over all hours in the current month for all organizations.
profiling_container_agent_count_avg
int64
Shows the average number of profiled containers over all hours in the current month for all organizations.
profiling_host_count_top99p_sum
int64
Shows the 99th percentile of all profiled hosts over all hours in the current month for all organizations.
rehydrated_indexed_events_agg_sum
int64
DEPRECATED: Shows the sum of all rehydrated logs indexed over all hours in the current month for all organizations (To be deprecated on October 1st, 2024).
rehydrated_ingested_bytes_agg_sum
int64
Shows the sum of all rehydrated logs bytes ingested over all hours in the current month for all organizations (data available as of December 1, 2020).
rum_browser_and_mobile_session_count
int64
Shows the sum of all mobile sessions and all browser lite and legacy sessions over all hours in the current month for all organizations (To be deprecated on October 1st, 2024).
rum_browser_legacy_session_count_agg_sum
int64
Shows the sum of all browser RUM legacy sessions over all hours in the current month for all organizations (To be introduced on October 1st, 2024).
rum_browser_lite_session_count_agg_sum
int64
Shows the sum of all browser RUM lite sessions over all hours in the current month for all organizations (To be introduced on October 1st, 2024).
rum_browser_replay_session_count_agg_sum
int64
Shows the sum of all browser RUM Session Replay counts over all hours in the current month for all organizations (To be introduced on October 1st, 2024).
rum_lite_session_count_agg_sum
int64
Shows the sum of all RUM lite sessions (browser and mobile) over all hours in the current month for all organizations (To be introduced on October 1st, 2024).
rum_mobile_legacy_session_count_android_agg_sum
int64
Shows the sum of all mobile RUM legacy sessions on Android over all hours in the current month for all organizations (To be introduced on October 1st, 2024).
rum_mobile_legacy_session_count_flutter_agg_sum
int64
Shows the sum of all mobile RUM legacy sessions on Flutter over all hours in the current month for all organizations (To be introduced on October 1st, 2024).
rum_mobile_legacy_session_count_ios_agg_sum
int64
Shows the sum of all mobile RUM legacy sessions on iOS over all hours in the current month for all organizations (To be introduced on October 1st, 2024).
Shows the sum of all mobile RUM legacy sessions on React Native over all hours in the current month for all organizations (To be introduced on October 1st, 2024).
rum_mobile_legacy_session_count_roku_agg_sum
int64
Shows the sum of all mobile RUM legacy sessions on Roku over all hours in the current month for all organizations (To be introduced on October 1st, 2024).
rum_mobile_lite_session_count_android_agg_sum
int64
Shows the sum of all mobile RUM lite sessions on Android over all hours in the current month for all organizations (To be introduced on October 1st, 2024).
rum_mobile_lite_session_count_flutter_agg_sum
int64
Shows the sum of all mobile RUM lite sessions on Flutter over all hours in the current month for all organizations (To be introduced on October 1st, 2024).
rum_mobile_lite_session_count_ios_agg_sum
int64
Shows the sum of all mobile RUM lite sessions on iOS over all hours in the current month for all organizations (To be introduced on October 1st, 2024).
Shows the sum of all mobile RUM lite sessions on Kotlin Multiplatform over all hours within the current month for all organizations.
rum_mobile_lite_session_count_reactnative_agg_sum
int64
Shows the sum of all mobile RUM lite sessions on React Native over all hours in the current month for all organizations (To be introduced on October 1st, 2024).
rum_mobile_lite_session_count_roku_agg_sum
int64
Shows the sum of all mobile RUM lite sessions on Roku over all hours within the current month for all organizations (To be introduced on October 1st, 2024).
rum_mobile_lite_session_count_unity_agg_sum
int64
Shows the sum of all mobile RUM lite sessions on Unity over all hours within the current month for all organizations.
rum_mobile_replay_session_count_android_agg_sum
int64
Shows the sum of all mobile RUM replay sessions on Android over all hours within the current month for all organizations.
rum_mobile_replay_session_count_ios_agg_sum
int64
Shows the sum of all mobile RUM replay sessions on iOS over all hours within the current month for all organizations.
Shows the sum of all mobile RUM replay sessions on React Native over all hours within the current month for all organizations.
rum_replay_session_count_agg_sum
int64
Shows the sum of all RUM Session Replay counts over all hours in the current month for all organizations (To be introduced on October 1st, 2024).
rum_session_count_agg_sum
int64
DEPRECATED: Shows the sum of all browser RUM lite sessions over all hours in the current month for all organizations (To be deprecated on October 1st, 2024).
rum_total_session_count_agg_sum
int64
Shows the sum of RUM sessions (browser and mobile) over all hours in the current month for all organizations.
rum_units_agg_sum
int64
DEPRECATED: Shows the sum of all browser and mobile RUM units over all hours in the current month for all organizations (To be deprecated on October 1st, 2024).
sca_fargate_count_avg_sum
int64
Shows the average of all Software Composition Analysis Fargate tasks over all hours in the current months for all organizations.
sca_fargate_count_hwm_sum
int64
Shows the sum of the high-water marks of all Software Composition Analysis Fargate tasks over all hours in the current months for all organizations.
sds_apm_scanned_bytes_sum
int64
Sum of all APM bytes scanned with sensitive data scanner in the current month for all organizations.
sds_events_scanned_bytes_sum
int64
Sum of all event stream events bytes scanned with sensitive data scanner in the current month for all organizations.
sds_logs_scanned_bytes_sum
int64
Shows the sum of all bytes scanned of logs usage by the Sensitive Data Scanner over all hours in the current month for all organizations.
sds_rum_scanned_bytes_sum
int64
Sum of all RUM bytes scanned with sensitive data scanner in the current month for all organizations.
sds_total_scanned_bytes_sum
int64
Shows the sum of all bytes scanned across all usage types by the Sensitive Data Scanner over all hours in the current month for all organizations.
serverless_apps_azure_count_avg_sum
int64
Sum of the average number of Serverless Apps for Azure in the current month for all organizations.
serverless_apps_google_count_avg_sum
int64
Sum of the average number of Serverless Apps for Google Cloud in the current month for all organizations.
serverless_apps_total_count_avg_sum
int64
Sum of the average number of Serverless Apps for Azure and Google Cloud in the current month for all organizations.
siem_analyzed_logs_add_on_count_agg_sum
int64
Shows the sum of all log events analyzed by Cloud SIEM over all hours in the current month for all organizations.
start_date
date-time
Shows the first date of usage in the current month for all organizations.
synthetics_browser_check_calls_count_agg_sum
int64
Shows the sum of all Synthetic browser tests over all hours in the current month for all organizations.
synthetics_check_calls_count_agg_sum
int64
Shows the sum of all Synthetic API tests over all hours in the current month for all organizations.
synthetics_mobile_test_runs_agg_sum
int64
Shows the sum of Synthetic mobile application tests over all hours in the current month for all organizations.
synthetics_parallel_testing_max_slots_hwm_sum
int64
Shows the sum of the high-water marks of used synthetics parallel testing slots over all hours in the current month for all organizations.
trace_search_indexed_events_count_agg_sum
int64
Shows the sum of all Indexed Spans indexed over all hours in the current month for all organizations.
twol_ingested_events_bytes_agg_sum
int64
Shows the sum of all ingested APM span bytes over all hours in the current month for all organizations.
universal_service_monitoring_host_top99p_sum
int64
Shows the 99th percentile of all Universal Service Monitoring hosts over all hours in the current month for all organizations.
usage
[object]
An array of objects regarding hourly usage.
agent_host_top99p
int64
Shows the 99th percentile of all agent hosts over all hours in the current date for all organizations.
apm_azure_app_service_host_top99p
int64
Shows the 99th percentile of all Azure app services using APM over all hours in the current date all organizations.
apm_devsecops_host_top99p
int64
Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current date for the given org.
apm_fargate_count_avg
int64
Shows the average of all APM ECS Fargate tasks over all hours in the current date for all organizations.
apm_host_top99p
int64
Shows the 99th percentile of all distinct APM hosts over all hours in the current date for all organizations.
appsec_fargate_count_avg
int64
Shows the average of all Application Security Monitoring ECS Fargate tasks over all hours in the current date for all organizations.
asm_serverless_sum
int64
Shows the sum of all Application Security Monitoring Serverless invocations over all hours in the current date for all organizations.
audit_logs_lines_indexed_sum
int64
DEPRECATED: Shows the sum of audit logs lines indexed over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
audit_trail_enabled_hwm
int64
Shows the number of organizations that had Audit Trail enabled in the current date.
avg_profiled_fargate_tasks
int64
The average total count for Fargate Container Profiler over all hours in the current date for all organizations.
aws_host_top99p
int64
Shows the 99th percentile of all AWS hosts over all hours in the current date for all organizations.
aws_lambda_func_count
int64
Shows the average of the number of functions that executed 1 or more times each hour in the current date for all organizations.
aws_lambda_invocations_sum
int64
Shows the sum of all AWS Lambda invocations over all hours in the current date for all organizations.
azure_app_service_top99p
int64
Shows the 99th percentile of all Azure app services over all hours in the current date for all organizations.
billable_ingested_bytes_sum
int64
Shows the sum of all log bytes ingested over all hours in the current date for all organizations.
browser_rum_lite_session_count_sum
int64
DEPRECATED: Shows the sum of all browser lite sessions over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
browser_rum_replay_session_count_sum
int64
Shows the sum of all browser replay sessions over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
browser_rum_units_sum
int64
DEPRECATED: Shows the sum of all browser RUM units over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
ci_pipeline_indexed_spans_sum
int64
Shows the sum of all CI pipeline indexed spans over all hours in the current month for all organizations.
ci_test_indexed_spans_sum
int64
Shows the sum of all CI test indexed spans over all hours in the current month for all organizations.
ci_visibility_itr_committers_hwm
int64
Shows the high-water mark of all CI visibility intelligent test runner committers over all hours in the current month for all organizations.
ci_visibility_pipeline_committers_hwm
int64
Shows the high-water mark of all CI visibility pipeline committers over all hours in the current month for all organizations.
ci_visibility_test_committers_hwm
int64
Shows the high-water mark of all CI visibility test committers over all hours in the current month for all organizations.
cloud_cost_management_aws_host_count_avg
int64
Host count average of Cloud Cost Management for AWS for the given date and given organization.
cloud_cost_management_azure_host_count_avg
int64
Host count average of Cloud Cost Management for Azure for the given date and given organization.
cloud_cost_management_gcp_host_count_avg
int64
Host count average of Cloud Cost Management for GCP for the given date and given organization.
cloud_cost_management_host_count_avg
int64
Host count average of Cloud Cost Management for all cloud providers for the given date and given organization.
cloud_siem_events_sum
int64
Shows the sum of all Cloud Security Information and Event Management events over all hours in the current date for the given org.
code_analysis_sa_committers_hwm
int64
Shows the high-water mark of all Static Analysis committers over all hours in the current date for the given org.
code_analysis_sca_committers_hwm
int64
Shows the high-water mark of all static Software Composition Analysis committers over all hours in the current date for the given org.
code_security_host_top99p
int64
Shows the 99th percentile of all Code Security hosts over all hours in the current date for the given org.
container_avg
int64
Shows the average of all distinct containers over all hours in the current date for all organizations.
container_excl_agent_avg
int64
Shows the average of containers without the Datadog Agent over all hours in the current date for all organizations.
container_hwm
int64
Shows the high-water mark of all distinct containers over all hours in the current date for all organizations.
csm_container_enterprise_compliance_count_sum
int64
Shows the sum of all Cloud Security Management Enterprise compliance containers over all hours in the current date for the given org.
csm_container_enterprise_cws_count_sum
int64
Shows the sum of all Cloud Security Management Enterprise Cloud Workload Security containers over all hours in the current date for the given org.
csm_container_enterprise_total_count_sum
int64
Shows the sum of all Cloud Security Management Enterprise containers over all hours in the current date for the given org.
csm_host_enterprise_aas_host_count_top99p
int64
Shows the 99th percentile of all Cloud Security Management Enterprise Azure app services hosts over all hours in the current date for the given org.
csm_host_enterprise_aws_host_count_top99p
int64
Shows the 99th percentile of all Cloud Security Management Enterprise AWS hosts over all hours in the current date for the given org.
csm_host_enterprise_azure_host_count_top99p
int64
Shows the 99th percentile of all Cloud Security Management Enterprise Azure hosts over all hours in the current date for the given org.
csm_host_enterprise_compliance_host_count_top99p
int64
Shows the 99th percentile of all Cloud Security Management Enterprise compliance hosts over all hours in the current date for the given org.
csm_host_enterprise_cws_host_count_top99p
int64
Shows the 99th percentile of all Cloud Security Management Enterprise Cloud Workload Security hosts over all hours in the current date for the given org.
csm_host_enterprise_gcp_host_count_top99p
int64
Shows the 99th percentile of all Cloud Security Management Enterprise GCP hosts over all hours in the current date for the given org.
csm_host_enterprise_total_host_count_top99p
int64
Shows the 99th percentile of all Cloud Security Management Enterprise hosts over all hours in the current date for the given org.
cspm_aas_host_top99p
int64
Shows the 99th percentile of all Cloud Security Management Pro Azure app services hosts over all hours in the current date for all organizations.
cspm_aws_host_top99p
int64
Shows the 99th percentile of all Cloud Security Management Pro AWS hosts over all hours in the current date for all organizations.
cspm_azure_host_top99p
int64
Shows the 99th percentile of all Cloud Security Management Pro Azure hosts over all hours in the current date for all organizations.
cspm_container_avg
int64
Shows the average number of Cloud Security Management Pro containers over all hours in the current date for all organizations.
cspm_container_hwm
int64
Shows the high-water mark of Cloud Security Management Pro containers over all hours in the current date for all organizations.
cspm_gcp_host_top99p
int64
Shows the 99th percentile of all Cloud Security Management Pro GCP hosts over all hours in the current date for all organizations.
cspm_host_top99p
int64
Shows the 99th percentile of all Cloud Security Management Pro hosts over all hours in the current date for all organizations.
custom_ts_avg
int64
Shows the average number of distinct custom metrics over all hours in the current date for all organizations.
cws_container_count_avg
int64
Shows the average of all distinct Cloud Workload Security containers over all hours in the current date for all organizations.
cws_fargate_task_avg
int64
Shows the average of all distinct Cloud Workload Security Fargate tasks over all hours in the current date for all organizations.
cws_host_top99p
int64
Shows the 99th percentile of all Cloud Workload Security hosts over all hours in the current date for all organizations.
data_jobs_monitoring_host_hr_sum
int64
Shows the sum of all Data Jobs Monitoring hosts over all hours in the current date for the given org.
date
date-time
The date for the usage.
dbm_host_top99p
int64
Shows the 99th percentile of all Database Monitoring hosts over all hours in the current date for all organizations.
dbm_queries_count_avg
int64
Shows the average of all normalized Database Monitoring queries over all hours in the current date for all organizations.
eph_infra_host_agent_sum
int64
Shows the sum of all ephemeral infrastructure hosts with the Datadog Agent over all hours in the current date for the given org.
eph_infra_host_alibaba_sum
int64
Shows the sum of all ephemeral infrastructure hosts on Alibaba over all hours in the current date for the given org.
eph_infra_host_aws_sum
int64
Shows the sum of all ephemeral infrastructure hosts on AWS over all hours in the current date for the given org.
eph_infra_host_azure_sum
int64
Shows the sum of all ephemeral infrastructure hosts on Azure over all hours in the current date for the given org.
eph_infra_host_ent_sum
int64
Shows the sum of all ephemeral infrastructure hosts for Enterprise over all hours in the current date for the given org.
eph_infra_host_gcp_sum
int64
Shows the sum of all ephemeral infrastructure hosts on GCP over all hours in the current date for the given org.
eph_infra_host_heroku_sum
int64
Shows the sum of all ephemeral infrastructure hosts on Heroku over all hours in the current date for the given org.
eph_infra_host_only_aas_sum
int64
Shows the sum of all ephemeral infrastructure hosts with only Azure App Services over all hours in the current date for the given org.
eph_infra_host_only_vsphere_sum
int64
Shows the sum of all ephemeral infrastructure hosts with only vSphere over all hours in the current date for the given org.
eph_infra_host_opentelemetry_apm_sum
int64
Shows the sum of all ephemeral APM hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current date for the given org.
eph_infra_host_opentelemetry_sum
int64
Shows the sum of all ephemeral hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current date for the given org.
eph_infra_host_pro_sum
int64
Shows the sum of all ephemeral infrastructure hosts for Pro over all hours in the current date for the given org.
eph_infra_host_proplus_sum
int64
Shows the sum of all ephemeral infrastructure hosts for Pro Plus over all hours in the current date for the given org.
error_tracking_apm_error_events_sum
int64
Shows the sum of all Error Tracking APM error events over all hours in the current date for the given org.
error_tracking_error_events_sum
int64
Shows the sum of all Error Tracking error events over all hours in the current date for the given org.
error_tracking_events_sum
int64
Shows the sum of all Error Tracking events over all hours in the current date for the given org.
error_tracking_rum_error_events_sum
int64
Shows the sum of all Error Tracking RUM error events over all hours in the current date for the given org.
fargate_container_profiler_profiling_fargate_avg
int64
The average number of Profiling Fargate tasks over all hours in the current date for all organizations.
Shows the average number of Flex Logs Starter Storage Retention Adjustment Instances over all hours in the current date for the given org.
flex_stored_logs_avg
int64
Shows the average of all Flex Stored Logs over all hours in the current date for the given org.
forwarding_events_bytes_sum
int64
Shows the sum of all log bytes forwarded over all hours in the current date for all organizations.
gcp_host_top99p
int64
Shows the 99th percentile of all GCP hosts over all hours in the current date for all organizations.
heroku_host_top99p
int64
Shows the 99th percentile of all Heroku dynos over all hours in the current date for all organizations.
incident_management_monthly_active_users_hwm
int64
Shows the high-water mark of incident management monthly active users over all hours in the current date for all organizations.
indexed_events_count_sum
int64
Shows the sum of all log events indexed over all hours in the current date for all organizations.
infra_host_top99p
int64
Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for all organizations.
ingested_events_bytes_sum
int64
Shows the sum of all log bytes ingested over all hours in the current date for all organizations.
iot_device_sum
int64
Shows the sum of all IoT devices over all hours in the current date for all organizations.
iot_device_top99p
int64
Shows the 99th percentile of all IoT devices over all hours in the current date all organizations.
mobile_rum_lite_session_count_sum
int64
DEPRECATED: Shows the sum of all mobile lite sessions over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
mobile_rum_session_count_android_sum
int64
DEPRECATED: Shows the sum of all mobile RUM sessions on Android over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
mobile_rum_session_count_flutter_sum
int64
DEPRECATED: Shows the sum of all mobile RUM sessions on Flutter over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
mobile_rum_session_count_ios_sum
int64
DEPRECATED: Shows the sum of all mobile RUM sessions on iOS over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
mobile_rum_session_count_reactnative_sum
int64
DEPRECATED: Shows the sum of all mobile RUM sessions on React Native over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
mobile_rum_session_count_roku_sum
int64
DEPRECATED: Shows the sum of all mobile RUM sessions on Roku over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
mobile_rum_session_count_sum
int64
DEPRECATED: Shows the sum of all mobile RUM sessions over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
mobile_rum_units_sum
int64
DEPRECATED: Shows the sum of all mobile RUM units over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
ndm_netflow_events_sum
int64
Shows the sum of all Network Device Monitoring NetFlow events over all hours in the current date for the given org.
netflow_indexed_events_count_sum
int64
DEPRECATED: Shows the sum of all Network flows indexed over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
npm_host_top99p
int64
Shows the 99th percentile of all distinct Cloud Network Monitoring hosts (formerly known as Network hosts) over all hours in the current date for all organizations.
observability_pipelines_bytes_processed_sum
int64
Sum of all observability pipelines bytes processed over all hours in the current date for the given org.
oci_host_sum
int64
Shows the sum of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org.
oci_host_top99p
int64
Shows the 99th percentile of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org.
online_archive_events_count_sum
int64
Sum of all online archived events over all hours in the current date for all organizations.
opentelemetry_apm_host_top99p
int64
Shows the 99th percentile of APM hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current date for all organizations.
opentelemetry_host_top99p
int64
Shows the 99th percentile of all hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current date for all organizations.
orgs
[object]
Organizations associated with a user.
account_name
string
The account name.
account_public_id
string
The account public id.
agent_host_top99p
int64
Shows the 99th percentile of all agent hosts over all hours in the current date for the given org.
apm_azure_app_service_host_top99p
int64
Shows the 99th percentile of all Azure app services using APM over all hours in the current date for the given org.
apm_devsecops_host_top99p
int64
Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current date for the given org.
apm_fargate_count_avg
int64
Shows the average of all APM ECS Fargate tasks over all hours in the current month for the given org.
apm_host_top99p
int64
Shows the 99th percentile of all distinct APM hosts over all hours in the current date for the given org.
appsec_fargate_count_avg
int64
Shows the average of all Application Security Monitoring ECS Fargate tasks over all hours in the current month for the given org.
asm_serverless_sum
int64
Shows the sum of all Application Security Monitoring Serverless invocations over all hours in the current month for the given org.
audit_logs_lines_indexed_sum
int64
DEPRECATED: Shows the sum of all audit logs lines indexed over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
audit_trail_enabled_hwm
int64
Shows whether Audit Trail is enabled for the current date for the given org.
avg_profiled_fargate_tasks
int64
The average total count for Fargate Container Profiler over all hours in the current month for the given org.
aws_host_top99p
int64
Shows the 99th percentile of all AWS hosts over all hours in the current date for the given org.
aws_lambda_func_count
int64
Shows the sum of all AWS Lambda invocations over all hours in the current date for the given org.
aws_lambda_invocations_sum
int64
Shows the sum of all AWS Lambda invocations over all hours in the current date for the given org.
azure_app_service_top99p
int64
Shows the 99th percentile of all Azure app services over all hours in the current date for the given org.
billable_ingested_bytes_sum
int64
Shows the sum of all log bytes ingested over all hours in the current date for the given org.
browser_rum_lite_session_count_sum
int64
DEPRECATED: Shows the sum of all browser lite sessions over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
browser_rum_replay_session_count_sum
int64
Shows the sum of all browser replay sessions over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
browser_rum_units_sum
int64
DEPRECATED: Shows the sum of all browser RUM units over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
ci_pipeline_indexed_spans_sum
int64
Shows the sum of all CI pipeline indexed spans over all hours in the current date for the given org.
ci_test_indexed_spans_sum
int64
Shows the sum of all CI test indexed spans over all hours in the current date for the given org.
ci_visibility_itr_committers_hwm
int64
Shows the high-water mark of all CI visibility intelligent test runner committers over all hours in the current date for the given org.
ci_visibility_pipeline_committers_hwm
int64
Shows the high-water mark of all CI visibility pipeline committers over all hours in the current date for the given org.
ci_visibility_test_committers_hwm
int64
Shows the high-water mark of all CI visibility test committers over all hours in the current date for the given org.
cloud_cost_management_aws_host_count_avg
int64
Host count average of Cloud Cost Management for AWS for the given date and given org.
cloud_cost_management_azure_host_count_avg
int64
Host count average of Cloud Cost Management for Azure for the given date and given org.
cloud_cost_management_gcp_host_count_avg
int64
Host count average of Cloud Cost Management for GCP for the given date and given org.
cloud_cost_management_host_count_avg
int64
Host count average of Cloud Cost Management for all cloud providers for the given date and given org.
cloud_siem_events_sum
int64
Shows the sum of all Cloud Security Information and Event Management events over all hours in the current date for the given org.
code_analysis_sa_committers_hwm
int64
Shows the high-water mark of all Static Analysis committers over all hours in the current date for the given org.
code_analysis_sca_committers_hwm
int64
Shows the high-water mark of all static Software Composition Analysis committers over all hours in the current date for the given org.
code_security_host_top99p
int64
Shows the 99th percentile of all Code Security hosts over all hours in the current date for the given org.
container_avg
int64
Shows the average of all distinct containers over all hours in the current date for the given org.
container_excl_agent_avg
int64
Shows the average of containers without the Datadog Agent over all hours in the current date for the given organization.
container_hwm
int64
Shows the high-water mark of all distinct containers over all hours in the current date for the given org.
csm_container_enterprise_compliance_count_sum
int64
Shows the sum of all Cloud Security Management Enterprise compliance containers over all hours in the current date for the given org.
csm_container_enterprise_cws_count_sum
int64
Shows the sum of all Cloud Security Management Enterprise Cloud Workload Security containers over all hours in the current date for the given org.
csm_container_enterprise_total_count_sum
int64
Shows the sum of all Cloud Security Management Enterprise containers over all hours in the current date for the given org.
csm_host_enterprise_aas_host_count_top99p
int64
Shows the 99th percentile of all Cloud Security Management Enterprise Azure app services hosts over all hours in the current date for the given org.
csm_host_enterprise_aws_host_count_top99p
int64
Shows the 99th percentile of all Cloud Security Management Enterprise AWS hosts over all hours in the current date for the given org.
csm_host_enterprise_azure_host_count_top99p
int64
Shows the 99th percentile of all Cloud Security Management Enterprise Azure hosts over all hours in the current date for the given org.
csm_host_enterprise_compliance_host_count_top99p
int64
Shows the 99th percentile of all Cloud Security Management Enterprise compliance hosts over all hours in the current date for the given org.
csm_host_enterprise_cws_host_count_top99p
int64
Shows the 99th percentile of all Cloud Security Management Enterprise Cloud Workload Security hosts over all hours in the current date for the given org.
csm_host_enterprise_gcp_host_count_top99p
int64
Shows the 99th percentile of all Cloud Security Management Enterprise GCP hosts over all hours in the current date for the given org.
csm_host_enterprise_total_host_count_top99p
int64
Shows the 99th percentile of all Cloud Security Management Enterprise hosts over all hours in the current date for the given org.
cspm_aas_host_top99p
int64
Shows the 99th percentile of all Cloud Security Management Pro Azure app services hosts over all hours in the current date for the given org.
cspm_aws_host_top99p
int64
Shows the 99th percentile of all Cloud Security Management Pro AWS hosts over all hours in the current date for the given org.
cspm_azure_host_top99p
int64
Shows the 99th percentile of all Cloud Security Management Pro Azure hosts over all hours in the current date for the given org.
cspm_container_avg
int64
Shows the average number of Cloud Security Management Pro containers over all hours in the current date for the given org.
cspm_container_hwm
int64
Shows the high-water mark of Cloud Security Management Pro containers over all hours in the current date for the given org.
cspm_gcp_host_top99p
int64
Shows the 99th percentile of all Cloud Security Management Pro GCP hosts over all hours in the current date for the given org.
cspm_host_top99p
int64
Shows the 99th percentile of all Cloud Security Management Pro hosts over all hours in the current date for the given org.
custom_historical_ts_avg
int64
Shows the average number of distinct historical custom metrics over all hours in the current date for the given org.
custom_live_ts_avg
int64
Shows the average number of distinct live custom metrics over all hours in the current date for the given org.
custom_ts_avg
int64
Shows the average number of distinct custom metrics over all hours in the current date for the given org.
cws_container_count_avg
int64
Shows the average of all distinct Cloud Workload Security containers over all hours in the current date for the given org.
cws_fargate_task_avg
int64
Shows the average of all distinct Cloud Workload Security Fargate tasks over all hours in the current date for the given org.
cws_host_top99p
int64
Shows the 99th percentile of all Cloud Workload Security hosts over all hours in the current date for the given org.
data_jobs_monitoring_host_hr_sum
int64
Shows the sum of all Data Jobs Monitoring hosts over all hours in the current date for the given org.
dbm_host_top99p_sum
int64
Shows the 99th percentile of all Database Monitoring hosts over all hours in the current month for the given org.
dbm_queries_avg_sum
int64
Shows the average of all distinct Database Monitoring normalized queries over all hours in the current month for the given org.
eph_infra_host_agent_sum
int64
Shows the sum of all ephemeral infrastructure hosts with the Datadog Agent over all hours in the current date for the given org.
eph_infra_host_alibaba_sum
int64
Shows the sum of all ephemeral infrastructure hosts on Alibaba over all hours in the current date for the given org.
eph_infra_host_aws_sum
int64
Shows the sum of all ephemeral infrastructure hosts on AWS over all hours in the current date for the given org.
eph_infra_host_azure_sum
int64
Shows the sum of all ephemeral infrastructure hosts on Azure over all hours in the current date for the given org.
eph_infra_host_ent_sum
int64
Shows the sum of all ephemeral infrastructure hosts for Enterprise over all hours in the current date for the given org.
eph_infra_host_gcp_sum
int64
Shows the sum of all ephemeral infrastructure hosts on GCP over all hours in the current date for the given org.
eph_infra_host_heroku_sum
int64
Shows the sum of all ephemeral infrastructure hosts on Heroku over all hours in the current date for the given org.
eph_infra_host_only_aas_sum
int64
Shows the sum of all ephemeral infrastructure hosts with only Azure App Services over all hours in the current date for the given org.
eph_infra_host_only_vsphere_sum
int64
Shows the sum of all ephemeral infrastructure hosts with only vSphere over all hours in the current date for the given org.
eph_infra_host_opentelemetry_apm_sum
int64
Shows the sum of all ephemeral APM hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current date for the given org.
eph_infra_host_opentelemetry_sum
int64
Shows the sum of all ephemeral hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current date for the given org.
eph_infra_host_pro_sum
int64
Shows the sum of all ephemeral infrastructure hosts for Pro over all hours in the current date for the given org.
eph_infra_host_proplus_sum
int64
Shows the sum of all ephemeral infrastructure hosts for Pro Plus over all hours in the current date for the given org.
error_tracking_apm_error_events_sum
int64
Shows the sum of all Error Tracking APM error events over all hours in the current date for the given org.
error_tracking_error_events_sum
int64
Shows the sum of all Error Tracking error events over all hours in the current date for the given org.
error_tracking_events_sum
int64
Shows the sum of all Error Tracking events over all hours in the current date for the given org.
error_tracking_rum_error_events_sum
int64
Shows the sum of all Error Tracking RUM error events over all hours in the current date for the given org.
fargate_container_profiler_profiling_fargate_avg
int64
The average number of Profiling Fargate tasks over all hours in the current month for the given org.
Shows the average number of Flex Logs Starter Storage Retention Adjustment Instances over all hours in the current date for the given org.
flex_stored_logs_avg
int64
Shows the average of all Flex Stored Logs over all hours in the current date for the given org.
forwarding_events_bytes_sum
int64
Shows the sum of all log bytes forwarded over all hours in the current date for the given org.
gcp_host_top99p
int64
Shows the 99th percentile of all GCP hosts over all hours in the current date for the given org.
heroku_host_top99p
int64
Shows the 99th percentile of all Heroku dynos over all hours in the current date for the given org.
id
string
The organization id.
incident_management_monthly_active_users_hwm
int64
Shows the high-water mark of incident management monthly active users over all hours in the current date for the given org.
indexed_events_count_sum
int64
DEPRECATED: Shows the sum of all log events indexed over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
infra_host_top99p
int64
Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for the given org.
ingested_events_bytes_sum
int64
Shows the sum of all log bytes ingested over all hours in the current date for the given org.
iot_device_agg_sum
int64
Shows the sum of all IoT devices over all hours in the current date for the given org.
iot_device_top99p_sum
int64
Shows the 99th percentile of all IoT devices over all hours in the current date for the given org.
mobile_rum_lite_session_count_sum
int64
DEPRECATED: Shows the sum of all mobile lite sessions over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
mobile_rum_session_count_android_sum
int64
DEPRECATED: Shows the sum of all mobile RUM sessions on Android over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
mobile_rum_session_count_flutter_sum
int64
DEPRECATED: Shows the sum of all mobile RUM sessions on Flutter over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
mobile_rum_session_count_ios_sum
int64
DEPRECATED: Shows the sum of all mobile RUM sessions on iOS over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
mobile_rum_session_count_reactnative_sum
int64
DEPRECATED: Shows the sum of all mobile RUM sessions on React Native over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
mobile_rum_session_count_roku_sum
int64
DEPRECATED: Shows the sum of all mobile RUM sessions on Roku over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
mobile_rum_session_count_sum
int64
DEPRECATED: Shows the sum of all mobile RUM sessions over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
mobile_rum_units_sum
int64
DEPRECATED: Shows the sum of all mobile RUM units over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
name
string
The organization name.
ndm_netflow_events_sum
int64
Shows the sum of all Network Device Monitoring NetFlow events over all hours in the current date for the given org.
netflow_indexed_events_count_sum
int64
DEPRECATED: Shows the sum of all Network flows indexed over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
npm_host_top99p
int64
Shows the 99th percentile of all distinct Cloud Network Monitoring hosts (formerly known as Network hosts) over all hours in the current date for the given org.
observability_pipelines_bytes_processed_sum
int64
Sum of all observability pipelines bytes processed over all hours in the current date for the given org.
oci_host_sum
int64
Shows the sum of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org.
oci_host_top99p
int64
Shows the 99th percentile of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org.
online_archive_events_count_sum
int64
Sum of all online archived events over all hours in the current date for the given org.
opentelemetry_apm_host_top99p
int64
Shows the 99th percentile of APM hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current date for the given org.
opentelemetry_host_top99p
int64
Shows the 99th percentile of all hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current date for the given org.
profiling_aas_count_top99p
int64
Shows the 99th percentile of all profiled Azure app services over all hours in the current date for all organizations.
profiling_host_top99p
int64
Shows the 99th percentile of all profiled hosts over all hours within the current date for the given org.
public_id
string
The organization public id.
region
string
The region of the organization.
rum_browser_and_mobile_session_count
int64
Shows the sum of all mobile sessions and all browser lite and legacy sessions over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
rum_browser_legacy_session_count_sum
int64
Shows the sum of all browser RUM legacy sessions over all hours in the current date for the given org (To be introduced on October 1st, 2024).
rum_browser_lite_session_count_sum
int64
Shows the sum of all browser RUM lite sessions over all hours in the current date for the given org (To be introduced on October 1st, 2024).
rum_browser_replay_session_count_sum
int64
Shows the sum of all browser RUM Session Replay counts over all hours in the current date for the given org (To be introduced on October 1st, 2024).
rum_lite_session_count_sum
int64
Shows the sum of all RUM lite sessions (browser and mobile) over all hours in the current date for the given org (To be introduced on October 1st, 2024).
rum_mobile_legacy_session_count_android_sum
int64
Shows the sum of all mobile RUM legacy sessions on Android over all hours in the current date for the given org (To be introduced on October 1st, 2024).
rum_mobile_legacy_session_count_flutter_sum
int64
Shows the sum of all mobile RUM legacy sessions on Flutter over all hours in the current date for the given org (To be introduced on October 1st, 2024).
rum_mobile_legacy_session_count_ios_sum
int64
Shows the sum of all mobile RUM legacy sessions on iOS over all hours in the current date for the given org (To be introduced on October 1st, 2024).
rum_mobile_legacy_session_count_reactnative_sum
int64
Shows the sum of all mobile RUM legacy sessions on React Native over all hours in the current date for the given org (To be introduced on October 1st, 2024).
rum_mobile_legacy_session_count_roku_sum
int64
Shows the sum of all mobile RUM legacy sessions on Roku over all hours in the current date for the given org (To be introduced on October 1st, 2024).
rum_mobile_lite_session_count_android_sum
int64
Shows the sum of all mobile RUM lite sessions on Android over all hours in the current date for the given org (To be introduced on October 1st, 2024).
rum_mobile_lite_session_count_flutter_sum
int64
Shows the sum of all mobile RUM lite sessions on Flutter over all hours in the current date for the given org (To be introduced on October 1st, 2024).
rum_mobile_lite_session_count_ios_sum
int64
Shows the sum of all mobile RUM lite sessions on iOS over all hours in the current date for the given org (To be introduced on October 1st, 2024).
Shows the sum of all mobile RUM lite sessions on Kotlin Multiplatform over all hours within the current date for the given org.
rum_mobile_lite_session_count_reactnative_sum
int64
Shows the sum of all mobile RUM lite sessions on React Native over all hours in the current date for the given org (To be introduced on October 1st, 2024).
rum_mobile_lite_session_count_roku_sum
int64
Shows the sum of all mobile RUM lite sessions on Roku over all hours in the current date for the given org (To be introduced on October 1st, 2024).
rum_mobile_lite_session_count_unity_sum
int64
Shows the sum of all mobile RUM lite sessions on Unity over all hours within the current date for the given org.
rum_mobile_replay_session_count_android_sum
int64
Shows the sum of all mobile RUM replay sessions on Android over all hours within the current date for the given org.
rum_mobile_replay_session_count_ios_sum
int64
Shows the sum of all mobile RUM replay sessions on iOS over all hours within the current date for the given org.
Shows the sum of all mobile RUM replay sessions on Kotlin Multiplatform over all hours within the current date for the given org.
rum_mobile_replay_session_count_reactnative_sum
int64
Shows the sum of all mobile RUM replay sessions on React Native over all hours within the current date for the given org.
rum_replay_session_count_sum
int64
Shows the sum of all RUM Session Replay counts over all hours in the current date for the given org (To be introduced on October 1st, 2024).
rum_session_count_sum
int64
DEPRECATED: Shows the sum of all browser RUM lite sessions over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
rum_total_session_count_sum
int64
Shows the sum of RUM sessions (browser and mobile) over all hours in the current date for the given org.
rum_units_sum
int64
DEPRECATED: Shows the sum of all browser and mobile RUM units over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
sca_fargate_count_avg
int64
Shows the average of all Software Composition Analysis Fargate tasks over all hours in the current date for the given org.
sca_fargate_count_hwm
int64
Shows the sum of the high-water marks of all Software Composition Analysis Fargate tasks over all hours in the current date for the given org.
sds_apm_scanned_bytes_sum
int64
Sum of all APM bytes scanned with sensitive data scanner over all hours in the current date for the given org.
sds_events_scanned_bytes_sum
int64
Sum of all event stream events bytes scanned with sensitive data scanner over all hours in the current date for the given org.
sds_logs_scanned_bytes_sum
int64
Shows the sum of all bytes scanned of logs usage by the Sensitive Data Scanner over all hours in the current month for the given org.
sds_rum_scanned_bytes_sum
int64
Sum of all RUM bytes scanned with sensitive data scanner over all hours in the current date for the given org.
sds_total_scanned_bytes_sum
int64
Shows the sum of all bytes scanned across all usage types by the Sensitive Data Scanner over all hours in the current month for the given org.
serverless_apps_azure_count_avg
int64
Shows the average of the number of Serverless Apps for Azure for the given date and given org.
serverless_apps_google_count_avg
int64
Shows the average of the number of Serverless Apps for Google Cloud for the given date and given org.
serverless_apps_total_count_avg
int64
Shows the average of the number of Serverless Apps for Azure and Google Cloud for the given date and given org.
siem_analyzed_logs_add_on_count_sum
int64
Shows the sum of all log events analyzed by Cloud SIEM over all hours in the current date for the given org.
synthetics_browser_check_calls_count_sum
int64
Shows the sum of all Synthetic browser tests over all hours in the current date for the given org.
synthetics_check_calls_count_sum
int64
Shows the sum of all Synthetic API tests over all hours in the current date for the given org.
synthetics_mobile_test_runs_sum
int64
Shows the sum of all Synthetic mobile application tests over all hours in the current date for the given org.
synthetics_parallel_testing_max_slots_hwm
int64
Shows the high-water mark of used synthetics parallel testing slots over all hours in the current date for the given org.
trace_search_indexed_events_count_sum
int64
Shows the sum of all Indexed Spans indexed over all hours in the current date for the given org.
twol_ingested_events_bytes_sum
int64
Shows the sum of all ingested APM span bytes over all hours in the current date for the given org.
universal_service_monitoring_host_top99p
int64
Shows the 99th percentile of all Universal Service Monitoring hosts over all hours in the current date for the given org.
vsphere_host_top99p
int64
Shows the 99th percentile of all vSphere hosts over all hours in the current date for the given org.
vuln_management_host_count_top99p
int64
Shows the 99th percentile of all Application Vulnerability Management hosts over all hours in the current date for the given org.
workflow_executions_usage_sum
int64
Sum of all workflows executed over all hours in the current date for the given org.
profiling_aas_count_top99p
int64
Shows the 99th percentile of all profiled Azure app services over all hours in the current date for all organizations.
profiling_host_top99p
int64
Shows the 99th percentile of all profiled hosts over all hours within the current date for all organizations.
rum_browser_and_mobile_session_count
int64
Shows the sum of all mobile sessions and all browser lite and legacy sessions over all hours in the current month for all organizations (To be deprecated on October 1st, 2024).
rum_browser_legacy_session_count_sum
int64
Shows the sum of all browser RUM legacy sessions over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
rum_browser_lite_session_count_sum
int64
Shows the sum of all browser RUM lite sessions over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
rum_browser_replay_session_count_sum
int64
Shows the sum of all browser RUM Session Replay counts over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
rum_lite_session_count_sum
int64
Shows the sum of all RUM lite sessions (browser and mobile) over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
rum_mobile_legacy_session_count_android_sum
int64
Shows the sum of all mobile RUM legacy sessions on Android over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
rum_mobile_legacy_session_count_flutter_sum
int64
Shows the sum of all mobile RUM legacy Sessions on Flutter over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
rum_mobile_legacy_session_count_ios_sum
int64
Shows the sum of all mobile RUM legacy sessions on iOS over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
rum_mobile_legacy_session_count_reactnative_sum
int64
Shows the sum of all mobile RUM legacy sessions on React Native over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
rum_mobile_legacy_session_count_roku_sum
int64
Shows the sum of all mobile RUM legacy sessions on Roku over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
rum_mobile_lite_session_count_android_sum
int64
Shows the sum of all mobile RUM lite sessions on Android over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
rum_mobile_lite_session_count_flutter_sum
int64
Shows the sum of all mobile RUM lite sessions on Flutter over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
rum_mobile_lite_session_count_ios_sum
int64
Shows the sum of all mobile RUM lite sessions on iOS over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
Shows the sum of all mobile RUM lite sessions on Kotlin Multiplatform over all hours within the current date for all organizations.
rum_mobile_lite_session_count_reactnative_sum
int64
Shows the sum of all mobile RUM lite sessions on React Native over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
rum_mobile_lite_session_count_roku_sum
int64
Shows the sum of all mobile RUM lite sessions on Roku over all hours within the current date for all organizations (To be introduced on October 1st, 2024).
rum_mobile_lite_session_count_unity_sum
int64
Shows the sum of all mobile RUM lite sessions on Unity over all hours within the current date for all organizations.
rum_mobile_replay_session_count_android_sum
int64
Shows the sum of all mobile RUM replay sessions on Android over all hours within the current date for the given org.
rum_mobile_replay_session_count_ios_sum
int64
Shows the sum of all mobile RUM replay sessions on iOS over all hours within the current date for the given org.
Shows the sum of all mobile RUM replay sessions on Kotlin Multiplatform over all hours within the current date for all organizations.
rum_mobile_replay_session_count_reactnative_sum
int64
Shows the sum of all mobile RUM replay sessions on React Native over all hours within the current date for the given org.
rum_replay_session_count_sum
int64
Shows the sum of all RUM Session Replay counts over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
rum_session_count_sum
int64
DEPRECATED: Shows the sum of all browser RUM lite sessions over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
rum_total_session_count_sum
int64
Shows the sum of RUM sessions (browser and mobile) over all hours in the current date for all organizations.
rum_units_sum
int64
DEPRECATED: Shows the sum of all browser and mobile RUM units over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
sca_fargate_count_avg
int64
Shows the average of all Software Composition Analysis Fargate tasks over all hours in the current date for the given org.
sca_fargate_count_hwm
int64
Shows the sum of the high-water marks of all Software Composition Analysis Fargate tasks over all hours in the current date for the given org.
sds_apm_scanned_bytes_sum
int64
Sum of all APM bytes scanned with sensitive data scanner over all hours in the current date for all organizations.
sds_events_scanned_bytes_sum
int64
Sum of all event stream events bytes scanned with sensitive data scanner over all hours in the current date for all organizations.
sds_logs_scanned_bytes_sum
int64
Shows the sum of all bytes scanned of logs usage by the Sensitive Data Scanner over all hours in the current month for all organizations.
sds_rum_scanned_bytes_sum
int64
Sum of all RUM bytes scanned with sensitive data scanner over all hours in the current date for all organizations.
sds_total_scanned_bytes_sum
int64
Shows the sum of all bytes scanned across all usage types by the Sensitive Data Scanner over all hours in the current month for all organizations.
serverless_apps_azure_count_avg
int64
Shows the average of the number of Serverless Apps for Azure for the given date and given org.
serverless_apps_google_count_avg
int64
Shows the average of the number of Serverless Apps for Google Cloud for the given date and given org.
serverless_apps_total_count_avg
int64
Shows the average of the number of Serverless Apps for Azure and Google Cloud for the given date and given org.
siem_analyzed_logs_add_on_count_sum
int64
Shows the sum of all log events analyzed by Cloud SIEM over all hours in the current date for the given org.
synthetics_browser_check_calls_count_sum
int64
Shows the sum of all Synthetic browser tests over all hours in the current date for all organizations.
synthetics_check_calls_count_sum
int64
Shows the sum of all Synthetic API tests over all hours in the current date for all organizations.
synthetics_mobile_test_runs_sum
int64
Shows the sum of all Synthetic mobile application tests over all hours in the current date for all organizations.
synthetics_parallel_testing_max_slots_hwm
int64
Shows the high-water mark of used synthetics parallel testing slots over all hours in the current date for all organizations.
trace_search_indexed_events_count_sum
int64
Shows the sum of all Indexed Spans indexed over all hours in the current date for all organizations.
twol_ingested_events_bytes_sum
int64
Shows the sum of all ingested APM span bytes over all hours in the current date for all organizations.
universal_service_monitoring_host_top99p
int64
Shows the 99th percentile of all universal service management hosts over all hours in the current date for the given org.
vsphere_host_top99p
int64
Shows the 99th percentile of all vSphere hosts over all hours in the current date for all organizations.
vuln_management_host_count_top99p
int64
Shows the 99th percentile of all Application Vulnerability Management hosts over all hours in the current date for the given org.
workflow_executions_usage_sum
int64
Sum of all workflows executed over all hours in the current date for all organizations.
vsphere_host_top99p_sum
int64
Shows the 99th percentile of all vSphere hosts over all hours in the current month for all organizations.
vuln_management_host_count_top99p_sum
int64
Shows the 99th percentile of all Application Vulnerability Management hosts over all hours in the current month for all organizations.
workflow_executions_usage_agg_sum
int64
Sum of all workflows executed over all hours in the current month for all organizations.
"""
Get usage across your account returns "OK" response
"""fromdatadog_api_clientimportApiClient,Configurationfromdatadog_api_client.v1.api.usage_metering_apiimportUsageMeteringApifromdatetimeimportdatetimefromdateutil.tzimporttzutcconfiguration=Configuration()withApiClient(configuration)asapi_client:api_instance=UsageMeteringApi(api_client)response=api_instance.get_usage_summary(start_month=datetime(2021,11,11,11,11,11,111000,tzinfo=tzutc()),)print(response)
# Get usage across your account returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newpapi_instance.get_usage_summary("2021-11-11T11:11:11.111+00:00")
// Get usage across your account returns "OK" response
packagemainimport("context""encoding/json""fmt""os""time""github.com/DataDog/datadog-api-client-go/v2/api/datadog""github.com/DataDog/datadog-api-client-go/v2/api/datadogV1")funcmain(){ctx:=datadog.NewDefaultContext(context.Background())configuration:=datadog.NewConfiguration()apiClient:=datadog.NewAPIClient(configuration)api:=datadogV1.NewUsageMeteringApi(apiClient)resp,r,err:=api.GetUsageSummary(ctx,time.Date(2021,11,11,11,11,11,111000,time.UTC),*datadogV1.NewGetUsageSummaryOptionalParameters())iferr!=nil{fmt.Fprintf(os.Stderr,"Error when calling `UsageMeteringApi.GetUsageSummary`: %v\n",err)fmt.Fprintf(os.Stderr,"Full HTTP response: %v\n",r)}responseContent,_:=json.MarshalIndent(resp,""," ")fmt.Fprintf(os.Stdout,"Response from `UsageMeteringApi.GetUsageSummary`:\n%s\n",responseContent)}
// Get usage across your account returns "OK" responseimportcom.datadog.api.client.ApiClient;importcom.datadog.api.client.ApiException;importcom.datadog.api.client.v1.api.UsageMeteringApi;importcom.datadog.api.client.v1.model.UsageSummaryResponse;importjava.time.OffsetDateTime;publicclassExample{publicstaticvoidmain(String[]args){ApiClientdefaultClient=ApiClient.getDefaultApiClient();UsageMeteringApiapiInstance=newUsageMeteringApi(defaultClient);try{UsageSummaryResponseresult=apiInstance.getUsageSummary(OffsetDateTime.parse("2021-11-11T11:11:11.111+00:00"));System.out.println(result);}catch(ApiExceptione){System.err.println("Exception when calling UsageMeteringApi#getUsageSummary");System.err.println("Status code: "+e.getCode());System.err.println("Reason: "+e.getResponseBody());System.err.println("Response headers: "+e.getResponseHeaders());e.printStackTrace();}}}
// Get usage across your account returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageSummaryOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_summary(DateTime::parse_from_rfc3339("2021-11-11T11:11:11.111000+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageSummaryOptionalParams::default(),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get usage across your account returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageSummaryRequest={startMonth: newDate(2021,11,11,11,11,11,111000),};apiInstance.getUsageSummary(params).then((data: v1.UsageSummaryResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
"""
Get hourly usage for logs by index returns "OK" response
"""fromdatadog_api_clientimportApiClient,Configurationfromdatadog_api_client.v1.api.usage_metering_apiimportUsageMeteringApifromdatetimeimportdatetimefromdateutil.tzimporttzutcconfiguration=Configuration()withApiClient(configuration)asapi_client:api_instance=UsageMeteringApi(api_client)response=api_instance.get_usage_logs_by_index(start_hr=datetime(2021,11,11,11,11,11,111000,tzinfo=tzutc()),)print(response)
# Get hourly usage for logs by index returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newpapi_instance.get_usage_logs_by_index("2021-11-11T11:11:11.111+00:00")
// Get hourly usage for logs by index returns "OK" response
packagemainimport("context""encoding/json""fmt""os""time""github.com/DataDog/datadog-api-client-go/v2/api/datadog""github.com/DataDog/datadog-api-client-go/v2/api/datadogV1")funcmain(){ctx:=datadog.NewDefaultContext(context.Background())configuration:=datadog.NewConfiguration()apiClient:=datadog.NewAPIClient(configuration)api:=datadogV1.NewUsageMeteringApi(apiClient)resp,r,err:=api.GetUsageLogsByIndex(ctx,time.Date(2021,11,11,11,11,11,111000,time.UTC),*datadogV1.NewGetUsageLogsByIndexOptionalParameters())iferr!=nil{fmt.Fprintf(os.Stderr,"Error when calling `UsageMeteringApi.GetUsageLogsByIndex`: %v\n",err)fmt.Fprintf(os.Stderr,"Full HTTP response: %v\n",r)}responseContent,_:=json.MarshalIndent(resp,""," ")fmt.Fprintf(os.Stdout,"Response from `UsageMeteringApi.GetUsageLogsByIndex`:\n%s\n",responseContent)}
// Get hourly usage for logs by index returns "OK" responseimportcom.datadog.api.client.ApiClient;importcom.datadog.api.client.ApiException;importcom.datadog.api.client.v1.api.UsageMeteringApi;importcom.datadog.api.client.v1.model.UsageLogsByIndexResponse;importjava.time.OffsetDateTime;publicclassExample{publicstaticvoidmain(String[]args){ApiClientdefaultClient=ApiClient.getDefaultApiClient();UsageMeteringApiapiInstance=newUsageMeteringApi(defaultClient);try{UsageLogsByIndexResponseresult=apiInstance.getUsageLogsByIndex(OffsetDateTime.parse("2021-11-11T11:11:11.111+00:00"));System.out.println(result);}catch(ApiExceptione){System.err.println("Exception when calling UsageMeteringApi#getUsageLogsByIndex");System.err.println("Status code: "+e.getCode());System.err.println("Reason: "+e.getResponseBody());System.err.println("Response headers: "+e.getResponseHeaders());e.printStackTrace();}}}
// Get hourly usage for logs by index returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageLogsByIndexOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_logs_by_index(DateTime::parse_from_rfc3339("2021-11-11T11:11:11.111000+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageLogsByIndexOptionalParams::default(),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for logs by index returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageLogsByIndexRequest={startHr: newDate(2021,11,11,11,11,11,111000),};apiInstance.getUsageLogsByIndex(params).then((data: v1.UsageLogsByIndexResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
# Get hourly logs usage by retention returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newopts={end_hr:(Time.now+-3*86400),}papi_instance.get_usage_logs_by_retention((Time.now+-5*86400),opts)
// Get hourly logs usage by retention returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageLogsByRetentionOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_logs_by_retention(DateTime::parse_from_rfc3339("2021-11-06T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageLogsByRetentionOptionalParams::default().end_hr(DateTime::parse_from_rfc3339("2021-11-08T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly logs usage by retention returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageLogsByRetentionRequest={startHr: newDate(newDate().getTime()+-5*86400*1000),endHr: newDate(newDate().getTime()+-3*86400*1000),};apiInstance.getUsageLogsByRetention(params).then((data: v1.UsageLogsByRetentionResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
Contains the total number of infrastructure hosts reporting
during a given hour that were running the Datadog Agent.
alibaba_host_count
int64
Contains the total number of hosts that reported through Alibaba integration
(and were NOT running the Datadog Agent).
apm_azure_app_service_host_count
int64
Contains the total number of Azure App Services hosts using APM.
apm_host_count
int64
Shows the total number of hosts using APM during the hour,
these are counted as billable (except during trial periods).
aws_host_count
int64
Contains the total number of hosts that reported through the AWS integration
(and were NOT running the Datadog Agent).
azure_host_count
int64
Contains the total number of hosts that reported through Azure integration
(and were NOT running the Datadog Agent).
container_count
int64
Shows the total number of containers reported by the Docker integration during the hour.
gcp_host_count
int64
Contains the total number of hosts that reported through the Google Cloud integration
(and were NOT running the Datadog Agent).
heroku_host_count
int64
Contains the total number of Heroku dynos reported by the Datadog Agent.
host_count
int64
Contains the total number of billable infrastructure hosts reporting during a given hour.
This is the sum of agent_host_count, aws_host_count, and gcp_host_count.
hour
date-time
The hour for the usage.
infra_azure_app_service
int64
Contains the total number of hosts that reported through the Azure App Services integration
(and were NOT running the Datadog Agent).
opentelemetry_apm_host_count
int64
Contains the total number of hosts using APM reported by Datadog exporter for the OpenTelemetry Collector.
opentelemetry_host_count
int64
Contains the total number of hosts reported by Datadog exporter for the OpenTelemetry Collector.
org_name
string
The organization name.
public_id
string
The organization public ID.
vsphere_host_count
int64
Contains the total number of hosts that reported through vSphere integration
(and were NOT running the Datadog Agent).
"""
Get hourly usage for hosts and containers returns "OK" response
"""fromdatetimeimportdatetimefromdateutil.relativedeltaimportrelativedeltafromdatadog_api_clientimportApiClient,Configurationfromdatadog_api_client.v1.api.usage_metering_apiimportUsageMeteringApiconfiguration=Configuration()withApiClient(configuration)asapi_client:api_instance=UsageMeteringApi(api_client)response=api_instance.get_usage_hosts(start_hr=(datetime.now()+relativedelta(days=-5)),end_hr=(datetime.now()+relativedelta(days=-3)),)print(response)
# Get hourly usage for hosts and containers returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newopts={end_hr:(Time.now+-3*86400),}papi_instance.get_usage_hosts((Time.now+-5*86400),opts)
// Get hourly usage for hosts and containers returns "OK" response
packagemainimport("context""encoding/json""fmt""os""time""github.com/DataDog/datadog-api-client-go/v2/api/datadog""github.com/DataDog/datadog-api-client-go/v2/api/datadogV1")funcmain(){ctx:=datadog.NewDefaultContext(context.Background())configuration:=datadog.NewConfiguration()apiClient:=datadog.NewAPIClient(configuration)api:=datadogV1.NewUsageMeteringApi(apiClient)resp,r,err:=api.GetUsageHosts(ctx,time.Now().AddDate(0,0,-5),*datadogV1.NewGetUsageHostsOptionalParameters().WithEndHr(time.Now().AddDate(0,0,-3)))iferr!=nil{fmt.Fprintf(os.Stderr,"Error when calling `UsageMeteringApi.GetUsageHosts`: %v\n",err)fmt.Fprintf(os.Stderr,"Full HTTP response: %v\n",r)}responseContent,_:=json.MarshalIndent(resp,""," ")fmt.Fprintf(os.Stdout,"Response from `UsageMeteringApi.GetUsageHosts`:\n%s\n",responseContent)}
// Get hourly usage for hosts and containers returns "OK" responseimportcom.datadog.api.client.ApiClient;importcom.datadog.api.client.ApiException;importcom.datadog.api.client.v1.api.UsageMeteringApi;importcom.datadog.api.client.v1.api.UsageMeteringApi.GetUsageHostsOptionalParameters;importcom.datadog.api.client.v1.model.UsageHostsResponse;importjava.time.OffsetDateTime;publicclassExample{publicstaticvoidmain(String[]args){ApiClientdefaultClient=ApiClient.getDefaultApiClient();UsageMeteringApiapiInstance=newUsageMeteringApi(defaultClient);try{UsageHostsResponseresult=apiInstance.getUsageHosts(OffsetDateTime.now().plusDays(-5),newGetUsageHostsOptionalParameters().endHr(OffsetDateTime.now().plusDays(-3)));System.out.println(result);}catch(ApiExceptione){System.err.println("Exception when calling UsageMeteringApi#getUsageHosts");System.err.println("Status code: "+e.getCode());System.err.println("Reason: "+e.getResponseBody());System.err.println("Response headers: "+e.getResponseHeaders());e.printStackTrace();}}}
// Get hourly usage for hosts and containers returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageHostsOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_hosts(DateTime::parse_from_rfc3339("2021-11-06T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageHostsOptionalParams::default().end_hr(DateTime::parse_from_rfc3339("2021-11-08T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for hosts and containers returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageHostsRequest={startHr: newDate(newDate().getTime()+-5*86400*1000),endHr: newDate(newDate().getTime()+-3*86400*1000),};apiInstance.getUsageHosts(params).then((data: v1.UsageHostsResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
"""
Get hourly usage for logs returns "OK" response
"""fromdatadog_api_clientimportApiClient,Configurationfromdatadog_api_client.v1.api.usage_metering_apiimportUsageMeteringApifromdatetimeimportdatetimefromdateutil.tzimporttzutcconfiguration=Configuration()withApiClient(configuration)asapi_client:api_instance=UsageMeteringApi(api_client)response=api_instance.get_usage_logs(start_hr=datetime(2021,11,11,11,11,11,111000,tzinfo=tzutc()),)print(response)
# Get hourly usage for logs returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newpapi_instance.get_usage_logs("2021-11-11T11:11:11.111+00:00")
// Get hourly usage for logs returns "OK" response
packagemainimport("context""encoding/json""fmt""os""time""github.com/DataDog/datadog-api-client-go/v2/api/datadog""github.com/DataDog/datadog-api-client-go/v2/api/datadogV1")funcmain(){ctx:=datadog.NewDefaultContext(context.Background())configuration:=datadog.NewConfiguration()apiClient:=datadog.NewAPIClient(configuration)api:=datadogV1.NewUsageMeteringApi(apiClient)resp,r,err:=api.GetUsageLogs(ctx,time.Date(2021,11,11,11,11,11,111000,time.UTC),*datadogV1.NewGetUsageLogsOptionalParameters())iferr!=nil{fmt.Fprintf(os.Stderr,"Error when calling `UsageMeteringApi.GetUsageLogs`: %v\n",err)fmt.Fprintf(os.Stderr,"Full HTTP response: %v\n",r)}responseContent,_:=json.MarshalIndent(resp,""," ")fmt.Fprintf(os.Stdout,"Response from `UsageMeteringApi.GetUsageLogs`:\n%s\n",responseContent)}
// Get hourly usage for logs returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageLogsOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_logs(DateTime::parse_from_rfc3339("2021-11-11T11:11:11.111000+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageLogsOptionalParams::default(),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for logs returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageLogsRequest={startHr: newDate(2021,11,11,11,11,11,111000),};apiInstance.getUsageLogs(params).then((data: v1.UsageLogsResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
# Get hourly usage for custom metrics returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newopts={end_hr:(Time.now+-3*86400),}papi_instance.get_usage_timeseries((Time.now+-5*86400),opts)
// Get hourly usage for custom metrics returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageTimeseriesOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_timeseries(DateTime::parse_from_rfc3339("2021-11-06T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageTimeseriesOptionalParams::default().end_hr(DateTime::parse_from_rfc3339("2021-11-08T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for custom metrics returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageTimeseriesRequest={startHr: newDate(newDate().getTime()+-5*86400*1000),endHr: newDate(newDate().getTime()+-3*86400*1000),};apiInstance.getUsageTimeseries(params).then((data: v1.UsageTimeseriesResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
# Get hourly usage for indexed spans returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newopts={end_hr:(Time.now+-3*86400),}papi_instance.get_usage_indexed_spans((Time.now+-5*86400),opts)
// Get hourly usage for indexed spans returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageIndexedSpansOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_indexed_spans(DateTime::parse_from_rfc3339("2021-11-06T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageIndexedSpansOptionalParams::default().end_hr(DateTime::parse_from_rfc3339("2021-11-08T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for indexed spans returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageIndexedSpansRequest={startHr: newDate(newDate().getTime()+-5*86400*1000),endHr: newDate(newDate().getTime()+-3*86400*1000),};apiInstance.getUsageIndexedSpans(params).then((data: v1.UsageIndexedSpansResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
# Get hourly usage for synthetics checks returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newpapi_instance.get_usage_synthetics("2021-11-11T11:11:11.111+00:00")
// Get hourly usage for synthetics checks returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageSyntheticsOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_synthetics(DateTime::parse_from_rfc3339("2021-11-11T11:11:11.111000+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageSyntheticsOptionalParams::default(),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for synthetics checks returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageSyntheticsRequest={startHr: newDate(2021,11,11,11,11,11,111000),};apiInstance.getUsageSynthetics(params).then((data: v1.UsageSyntheticsResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
"""
Get hourly usage for synthetics API checks returns "OK" response
"""fromdatadog_api_clientimportApiClient,Configurationfromdatadog_api_client.v1.api.usage_metering_apiimportUsageMeteringApifromdatetimeimportdatetimefromdateutil.tzimporttzutcconfiguration=Configuration()withApiClient(configuration)asapi_client:api_instance=UsageMeteringApi(api_client)response=api_instance.get_usage_synthetics_api(start_hr=datetime(2021,11,11,11,11,11,111000,tzinfo=tzutc()),)print(response)
# Get hourly usage for synthetics API checks returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newpapi_instance.get_usage_synthetics_api("2021-11-11T11:11:11.111+00:00")
// Get hourly usage for synthetics API checks returns "OK" response
packagemainimport("context""encoding/json""fmt""os""time""github.com/DataDog/datadog-api-client-go/v2/api/datadog""github.com/DataDog/datadog-api-client-go/v2/api/datadogV1")funcmain(){ctx:=datadog.NewDefaultContext(context.Background())configuration:=datadog.NewConfiguration()apiClient:=datadog.NewAPIClient(configuration)api:=datadogV1.NewUsageMeteringApi(apiClient)resp,r,err:=api.GetUsageSyntheticsAPI(ctx,time.Date(2021,11,11,11,11,11,111000,time.UTC),*datadogV1.NewGetUsageSyntheticsAPIOptionalParameters())iferr!=nil{fmt.Fprintf(os.Stderr,"Error when calling `UsageMeteringApi.GetUsageSyntheticsAPI`: %v\n",err)fmt.Fprintf(os.Stderr,"Full HTTP response: %v\n",r)}responseContent,_:=json.MarshalIndent(resp,""," ")fmt.Fprintf(os.Stdout,"Response from `UsageMeteringApi.GetUsageSyntheticsAPI`:\n%s\n",responseContent)}
// Get hourly usage for synthetics API checks returns "OK" responseimportcom.datadog.api.client.ApiClient;importcom.datadog.api.client.ApiException;importcom.datadog.api.client.v1.api.UsageMeteringApi;importcom.datadog.api.client.v1.model.UsageSyntheticsAPIResponse;importjava.time.OffsetDateTime;publicclassExample{publicstaticvoidmain(String[]args){ApiClientdefaultClient=ApiClient.getDefaultApiClient();UsageMeteringApiapiInstance=newUsageMeteringApi(defaultClient);try{UsageSyntheticsAPIResponseresult=apiInstance.getUsageSyntheticsAPI(OffsetDateTime.parse("2021-11-11T11:11:11.111+00:00"));System.out.println(result);}catch(ApiExceptione){System.err.println("Exception when calling UsageMeteringApi#getUsageSyntheticsAPI");System.err.println("Status code: "+e.getCode());System.err.println("Reason: "+e.getResponseBody());System.err.println("Response headers: "+e.getResponseHeaders());e.printStackTrace();}}}
// Get hourly usage for synthetics API checks returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageSyntheticsAPIOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_synthetics_api(DateTime::parse_from_rfc3339("2021-11-11T11:11:11.111000+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageSyntheticsAPIOptionalParams::default(),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for synthetics API checks returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageSyntheticsAPIRequest={startHr: newDate(2021,11,11,11,11,11,111000),};apiInstance.getUsageSyntheticsAPI(params).then((data: v1.UsageSyntheticsAPIResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
// Get hourly usage for synthetics browser checks returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageSyntheticsBrowserOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_synthetics_browser(DateTime::parse_from_rfc3339("2021-11-11T11:11:11.111000+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageSyntheticsBrowserOptionalParams::default(),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for synthetics browser checks returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageSyntheticsBrowserRequest={startHr: newDate(2021,11,11,11,11,11,111000),};apiInstance.getUsageSyntheticsBrowser(params).then((data: v1.UsageSyntheticsBrowserResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
"""
Get hourly usage for Fargate returns "OK" response
"""fromdatetimeimportdatetimefromdateutil.relativedeltaimportrelativedeltafromdatadog_api_clientimportApiClient,Configurationfromdatadog_api_client.v1.api.usage_metering_apiimportUsageMeteringApiconfiguration=Configuration()withApiClient(configuration)asapi_client:api_instance=UsageMeteringApi(api_client)response=api_instance.get_usage_fargate(start_hr=(datetime.now()+relativedelta(days=-5)),end_hr=(datetime.now()+relativedelta(days=-3)),)print(response)
# Get hourly usage for Fargate returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newopts={end_hr:(Time.now+-3*86400),}papi_instance.get_usage_fargate((Time.now+-5*86400),opts)
// Get hourly usage for Fargate returns "OK" response
packagemainimport("context""encoding/json""fmt""os""time""github.com/DataDog/datadog-api-client-go/v2/api/datadog""github.com/DataDog/datadog-api-client-go/v2/api/datadogV1")funcmain(){ctx:=datadog.NewDefaultContext(context.Background())configuration:=datadog.NewConfiguration()apiClient:=datadog.NewAPIClient(configuration)api:=datadogV1.NewUsageMeteringApi(apiClient)resp,r,err:=api.GetUsageFargate(ctx,time.Now().AddDate(0,0,-5),*datadogV1.NewGetUsageFargateOptionalParameters().WithEndHr(time.Now().AddDate(0,0,-3)))iferr!=nil{fmt.Fprintf(os.Stderr,"Error when calling `UsageMeteringApi.GetUsageFargate`: %v\n",err)fmt.Fprintf(os.Stderr,"Full HTTP response: %v\n",r)}responseContent,_:=json.MarshalIndent(resp,""," ")fmt.Fprintf(os.Stdout,"Response from `UsageMeteringApi.GetUsageFargate`:\n%s\n",responseContent)}
// Get hourly usage for Fargate returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageFargateOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_fargate(DateTime::parse_from_rfc3339("2021-11-06T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageFargateOptionalParams::default().end_hr(DateTime::parse_from_rfc3339("2021-11-08T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for Fargate returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageFargateRequest={startHr: newDate(newDate().getTime()+-5*86400*1000),endHr: newDate(newDate().getTime()+-3*86400*1000),};apiInstance.getUsageFargate(params).then((data: v1.UsageFargateResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
"""
Get hourly usage for Lambda returns "OK" response
"""fromdatetimeimportdatetimefromdateutil.relativedeltaimportrelativedeltafromdatadog_api_clientimportApiClient,Configurationfromdatadog_api_client.v1.api.usage_metering_apiimportUsageMeteringApiconfiguration=Configuration()withApiClient(configuration)asapi_client:api_instance=UsageMeteringApi(api_client)response=api_instance.get_usage_lambda(start_hr=(datetime.now()+relativedelta(days=-5)),end_hr=(datetime.now()+relativedelta(days=-3)),)print(response)
# Get hourly usage for Lambda returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newopts={end_hr:(Time.now+-3*86400),}papi_instance.get_usage_lambda((Time.now+-5*86400),opts)
// Get hourly usage for Lambda returns "OK" response
packagemainimport("context""encoding/json""fmt""os""time""github.com/DataDog/datadog-api-client-go/v2/api/datadog""github.com/DataDog/datadog-api-client-go/v2/api/datadogV1")funcmain(){ctx:=datadog.NewDefaultContext(context.Background())configuration:=datadog.NewConfiguration()apiClient:=datadog.NewAPIClient(configuration)api:=datadogV1.NewUsageMeteringApi(apiClient)resp,r,err:=api.GetUsageLambda(ctx,time.Now().AddDate(0,0,-5),*datadogV1.NewGetUsageLambdaOptionalParameters().WithEndHr(time.Now().AddDate(0,0,-3)))iferr!=nil{fmt.Fprintf(os.Stderr,"Error when calling `UsageMeteringApi.GetUsageLambda`: %v\n",err)fmt.Fprintf(os.Stderr,"Full HTTP response: %v\n",r)}responseContent,_:=json.MarshalIndent(resp,""," ")fmt.Fprintf(os.Stdout,"Response from `UsageMeteringApi.GetUsageLambda`:\n%s\n",responseContent)}
// Get hourly usage for Lambda returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageLambdaOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_lambda(DateTime::parse_from_rfc3339("2021-11-06T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageLambdaOptionalParams::default().end_hr(DateTime::parse_from_rfc3339("2021-11-08T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for Lambda returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageLambdaRequest={startHr: newDate(newDate().getTime()+-5*86400*1000),endHr: newDate(newDate().getTime()+-3*86400*1000),};apiInstance.getUsageLambda(params).then((data: v1.UsageLambdaResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
"""
Get hourly usage for RUM sessions returns "OK" response
"""fromdatadog_api_clientimportApiClient,Configurationfromdatadog_api_client.v1.api.usage_metering_apiimportUsageMeteringApifromdatetimeimportdatetimefromdateutil.tzimporttzutcconfiguration=Configuration()withApiClient(configuration)asapi_client:api_instance=UsageMeteringApi(api_client)response=api_instance.get_usage_rum_sessions(start_hr=datetime(2021,11,11,11,11,11,111000,tzinfo=tzutc()),)print(response)
# Get hourly usage for RUM sessions returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newpapi_instance.get_usage_rum_sessions("2021-11-11T11:11:11.111+00:00")
// Get hourly usage for RUM sessions returns "OK" response
packagemainimport("context""encoding/json""fmt""os""time""github.com/DataDog/datadog-api-client-go/v2/api/datadog""github.com/DataDog/datadog-api-client-go/v2/api/datadogV1")funcmain(){ctx:=datadog.NewDefaultContext(context.Background())configuration:=datadog.NewConfiguration()apiClient:=datadog.NewAPIClient(configuration)api:=datadogV1.NewUsageMeteringApi(apiClient)resp,r,err:=api.GetUsageRumSessions(ctx,time.Date(2021,11,11,11,11,11,111000,time.UTC),*datadogV1.NewGetUsageRumSessionsOptionalParameters())iferr!=nil{fmt.Fprintf(os.Stderr,"Error when calling `UsageMeteringApi.GetUsageRumSessions`: %v\n",err)fmt.Fprintf(os.Stderr,"Full HTTP response: %v\n",r)}responseContent,_:=json.MarshalIndent(resp,""," ")fmt.Fprintf(os.Stdout,"Response from `UsageMeteringApi.GetUsageRumSessions`:\n%s\n",responseContent)}
// Get hourly usage for RUM sessions returns "OK" responseimportcom.datadog.api.client.ApiClient;importcom.datadog.api.client.ApiException;importcom.datadog.api.client.v1.api.UsageMeteringApi;importcom.datadog.api.client.v1.model.UsageRumSessionsResponse;importjava.time.OffsetDateTime;publicclassExample{publicstaticvoidmain(String[]args){ApiClientdefaultClient=ApiClient.getDefaultApiClient();UsageMeteringApiapiInstance=newUsageMeteringApi(defaultClient);try{UsageRumSessionsResponseresult=apiInstance.getUsageRumSessions(OffsetDateTime.parse("2021-11-11T11:11:11.111+00:00"));System.out.println(result);}catch(ApiExceptione){System.err.println("Exception when calling UsageMeteringApi#getUsageRumSessions");System.err.println("Status code: "+e.getCode());System.err.println("Reason: "+e.getResponseBody());System.err.println("Response headers: "+e.getResponseHeaders());e.printStackTrace();}}}
// Get hourly usage for RUM sessions returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageRumSessionsOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_rum_sessions(DateTime::parse_from_rfc3339("2021-11-11T11:11:11.111000+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageRumSessionsOptionalParams::default(),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for RUM sessions returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageRumSessionsRequest={startHr: newDate(2021,11,11,11,11,11,111000),};apiInstance.getUsageRumSessions(params).then((data: v1.UsageRumSessionsResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
# Get hourly usage for network hosts returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newpapi_instance.get_usage_network_hosts("2021-11-11T11:11:11.111+00:00")
// Get hourly usage for network hosts returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageNetworkHostsOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_network_hosts(DateTime::parse_from_rfc3339("2021-11-11T11:11:11.111000+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageNetworkHostsOptionalParams::default(),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for network hosts returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageNetworkHostsRequest={startHr: newDate(2021,11,11,11,11,11,111000),};apiInstance.getUsageNetworkHosts(params).then((data: v1.UsageNetworkHostsResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
# get hourly usage for network flows returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newpapi_instance.get_usage_network_flows("2021-11-11T11:11:11.111+00:00")
// get hourly usage for network flows returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageNetworkFlowsOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_network_flows(DateTime::parse_from_rfc3339("2021-11-11T11:11:11.111000+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageNetworkFlowsOptionalParams::default(),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* get hourly usage for network flows returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageNetworkFlowsRequest={startHr: newDate(2021,11,11,11,11,11,111000),};apiInstance.getUsageNetworkFlows(params).then((data: v1.UsageNetworkFlowsResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
# Get hourly usage for analyzed logs returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newopts={end_hr:(Time.now+-3*86400),}papi_instance.get_usage_analyzed_logs((Time.now+-5*86400),opts)
// Get hourly usage for analyzed logs returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageAnalyzedLogsOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_analyzed_logs(DateTime::parse_from_rfc3339("2021-11-06T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageAnalyzedLogsOptionalParams::default().end_hr(DateTime::parse_from_rfc3339("2021-11-08T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for analyzed logs returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageAnalyzedLogsRequest={startHr: newDate(newDate().getTime()+-5*86400*1000),endHr: newDate(newDate().getTime()+-3*86400*1000),};apiInstance.getUsageAnalyzedLogs(params).then((data: v1.UsageAnalyzedLogsResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
# Get hourly usage for SNMP devices returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newopts={end_hr:(Time.now+-3*86400),}papi_instance.get_usage_snmp((Time.now+-5*86400),opts)
// Get hourly usage for SNMP devices returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageSNMPOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_snmp(DateTime::parse_from_rfc3339("2021-11-06T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageSNMPOptionalParams::default().end_hr(DateTime::parse_from_rfc3339("2021-11-08T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for SNMP devices returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageSNMPRequest={startHr: newDate(newDate().getTime()+-5*86400*1000),endHr: newDate(newDate().getTime()+-3*86400*1000),};apiInstance.getUsageSNMP(params).then((data: v1.UsageSNMPResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
# Get hourly usage for ingested spans returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newopts={end_hr:(Time.now+-3*86400),}papi_instance.get_ingested_spans((Time.now+-5*86400),opts)
// Get hourly usage for ingested spans returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetIngestedSpansOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_ingested_spans(DateTime::parse_from_rfc3339("2021-11-06T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetIngestedSpansOptionalParams::default().end_hr(DateTime::parse_from_rfc3339("2021-11-08T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for ingested spans returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetIngestedSpansRequest={startHr: newDate(newDate().getTime()+-5*86400*1000),endHr: newDate(newDate().getTime()+-3*86400*1000),};apiInstance.getIngestedSpans(params).then((data: v1.UsageIngestedSpansResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
# Get hourly usage for incident management returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newopts={end_hr:(Time.now+-3*86400),}papi_instance.get_incident_management((Time.now+-5*86400),opts)
// Get hourly usage for incident management returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetIncidentManagementOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_incident_management(DateTime::parse_from_rfc3339("2021-11-06T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetIncidentManagementOptionalParams::default().end_hr(DateTime::parse_from_rfc3339("2021-11-08T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for incident management returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetIncidentManagementRequest={startHr: newDate(newDate().getTime()+-5*86400*1000),endHr: newDate(newDate().getTime()+-3*86400*1000),};apiInstance.getIncidentManagement(params).then((data: v1.UsageIncidentManagementResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
"""
Get hourly usage for IoT returns "OK" response
"""fromdatetimeimportdatetimefromdateutil.relativedeltaimportrelativedeltafromdatadog_api_clientimportApiClient,Configurationfromdatadog_api_client.v1.api.usage_metering_apiimportUsageMeteringApiconfiguration=Configuration()withApiClient(configuration)asapi_client:api_instance=UsageMeteringApi(api_client)response=api_instance.get_usage_internet_of_things(start_hr=(datetime.now()+relativedelta(days=-5)),end_hr=(datetime.now()+relativedelta(days=-3)),)print(response)
# Get hourly usage for IoT returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newopts={end_hr:(Time.now+-3*86400),}papi_instance.get_usage_internet_of_things((Time.now+-5*86400),opts)
// Get hourly usage for IoT returns "OK" response
packagemainimport("context""encoding/json""fmt""os""time""github.com/DataDog/datadog-api-client-go/v2/api/datadog""github.com/DataDog/datadog-api-client-go/v2/api/datadogV1")funcmain(){ctx:=datadog.NewDefaultContext(context.Background())configuration:=datadog.NewConfiguration()apiClient:=datadog.NewAPIClient(configuration)api:=datadogV1.NewUsageMeteringApi(apiClient)resp,r,err:=api.GetUsageInternetOfThings(ctx,time.Now().AddDate(0,0,-5),*datadogV1.NewGetUsageInternetOfThingsOptionalParameters().WithEndHr(time.Now().AddDate(0,0,-3)))iferr!=nil{fmt.Fprintf(os.Stderr,"Error when calling `UsageMeteringApi.GetUsageInternetOfThings`: %v\n",err)fmt.Fprintf(os.Stderr,"Full HTTP response: %v\n",r)}responseContent,_:=json.MarshalIndent(resp,""," ")fmt.Fprintf(os.Stdout,"Response from `UsageMeteringApi.GetUsageInternetOfThings`:\n%s\n",responseContent)}
// Get hourly usage for IoT returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageInternetOfThingsOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_internet_of_things(DateTime::parse_from_rfc3339("2021-11-06T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageInternetOfThingsOptionalParams::default().end_hr(DateTime::parse_from_rfc3339("2021-11-08T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for IoT returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageInternetOfThingsRequest={startHr: newDate(newDate().getTime()+-5*86400*1000),endHr: newDate(newDate().getTime()+-3*86400*1000),};apiInstance.getUsageInternetOfThings(params).then((data: v1.UsageIoTResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
"""
Get hourly usage for CSM Pro returns "OK" response
"""fromdatetimeimportdatetimefromdateutil.relativedeltaimportrelativedeltafromdatadog_api_clientimportApiClient,Configurationfromdatadog_api_client.v1.api.usage_metering_apiimportUsageMeteringApiconfiguration=Configuration()withApiClient(configuration)asapi_client:api_instance=UsageMeteringApi(api_client)response=api_instance.get_usage_cloud_security_posture_management(start_hr=(datetime.now()+relativedelta(days=-3)),)print(response)
# Get hourly usage for CSM Pro returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newpapi_instance.get_usage_cloud_security_posture_management((Time.now+-3*86400))
// Get hourly usage for CSM Pro returns "OK" response
packagemainimport("context""encoding/json""fmt""os""time""github.com/DataDog/datadog-api-client-go/v2/api/datadog""github.com/DataDog/datadog-api-client-go/v2/api/datadogV1")funcmain(){ctx:=datadog.NewDefaultContext(context.Background())configuration:=datadog.NewConfiguration()apiClient:=datadog.NewAPIClient(configuration)api:=datadogV1.NewUsageMeteringApi(apiClient)resp,r,err:=api.GetUsageCloudSecurityPostureManagement(ctx,time.Now().AddDate(0,0,-3),*datadogV1.NewGetUsageCloudSecurityPostureManagementOptionalParameters())iferr!=nil{fmt.Fprintf(os.Stderr,"Error when calling `UsageMeteringApi.GetUsageCloudSecurityPostureManagement`: %v\n",err)fmt.Fprintf(os.Stderr,"Full HTTP response: %v\n",r)}responseContent,_:=json.MarshalIndent(resp,""," ")fmt.Fprintf(os.Stdout,"Response from `UsageMeteringApi.GetUsageCloudSecurityPostureManagement`:\n%s\n",responseContent)}
// Get hourly usage for CSM Pro returns "OK" responseimportcom.datadog.api.client.ApiClient;importcom.datadog.api.client.ApiException;importcom.datadog.api.client.v1.api.UsageMeteringApi;importcom.datadog.api.client.v1.model.UsageCloudSecurityPostureManagementResponse;importjava.time.OffsetDateTime;publicclassExample{publicstaticvoidmain(String[]args){ApiClientdefaultClient=ApiClient.getDefaultApiClient();UsageMeteringApiapiInstance=newUsageMeteringApi(defaultClient);try{UsageCloudSecurityPostureManagementResponseresult=apiInstance.getUsageCloudSecurityPostureManagement(OffsetDateTime.now().plusDays(-3));System.out.println(result);}catch(ApiExceptione){System.err.println("Exception when calling UsageMeteringApi#getUsageCloudSecurityPostureManagement");System.err.println("Status code: "+e.getCode());System.err.println("Reason: "+e.getResponseBody());System.err.println("Response headers: "+e.getResponseHeaders());e.printStackTrace();}}}
// Get hourly usage for CSM Pro returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageCloudSecurityPostureManagementOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_cloud_security_posture_management(DateTime::parse_from_rfc3339("2021-11-08T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageCloudSecurityPostureManagementOptionalParams::default(),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for CSM Pro returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageCloudSecurityPostureManagementRequest={startHr: newDate(newDate().getTime()+-3*86400*1000),};apiInstance.getUsageCloudSecurityPostureManagement(params).then((data: v1.UsageCloudSecurityPostureManagementResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
// Get hourly usage for cloud workload security returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageCWSOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_cws(DateTime::parse_from_rfc3339("2021-11-06T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageCWSOptionalParams::default().end_hr(DateTime::parse_from_rfc3339("2021-11-08T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for cloud workload security returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageCWSRequest={startHr: newDate(newDate().getTime()+-5*86400*1000),endHr: newDate(newDate().getTime()+-3*86400*1000),};apiInstance.getUsageCWS(params).then((data: v1.UsageCWSResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
# Get hourly usage for database monitoring returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newpapi_instance.get_usage_dbm("2021-11-11T11:11:11.111+00:00")
// Get hourly usage for database monitoring returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageDBMOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_dbm(DateTime::parse_from_rfc3339("2021-11-11T11:11:11.111000+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageDBMOptionalParams::default(),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for database monitoring returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageDBMRequest={startHr: newDate(2021,11,11,11,11,11,111000),};apiInstance.getUsageDBM(params).then((data: v1.UsageDBMResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
Response containing the Sensitive Data Scanner usage for each hour for a given organization.
Expand All
Campo
Tipo
Descripción
usage
[object]
Get hourly usage for Sensitive Data Scanner.
apm_scanned_bytes
int64
The total number of bytes scanned of APM usage across all usage types by the Sensitive Data Scanner from the start of the given hour’s month until the given hour.
events_scanned_bytes
int64
The total number of bytes scanned of Events usage across all usage types by the Sensitive Data Scanner from the start of the given hour’s month until the given hour.
hour
date-time
The hour for the usage.
logs_scanned_bytes
int64
The total number of bytes scanned of logs usage by the Sensitive Data Scanner from the start of the given hour’s month until the given hour.
org_name
string
The organization name.
public_id
string
The organization public ID.
rum_scanned_bytes
int64
The total number of bytes scanned of RUM usage across all usage types by the Sensitive Data Scanner from the start of the given hour’s month until the given hour.
total_scanned_bytes
int64
The total number of bytes scanned across all usage types by the Sensitive Data Scanner from the start of the given hour’s month until the given hour.
"""
Get hourly usage for sensitive data scanner returns "OK" response
"""fromdatadog_api_clientimportApiClient,Configurationfromdatadog_api_client.v1.api.usage_metering_apiimportUsageMeteringApifromdatetimeimportdatetimefromdateutil.tzimporttzutcconfiguration=Configuration()withApiClient(configuration)asapi_client:api_instance=UsageMeteringApi(api_client)response=api_instance.get_usage_sds(start_hr=datetime(2021,11,11,11,11,11,111000,tzinfo=tzutc()),)print(response)
# Get hourly usage for sensitive data scanner returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newpapi_instance.get_usage_sds("2021-11-11T11:11:11.111+00:00")
// Get hourly usage for sensitive data scanner returns "OK" response
packagemainimport("context""encoding/json""fmt""os""time""github.com/DataDog/datadog-api-client-go/v2/api/datadog""github.com/DataDog/datadog-api-client-go/v2/api/datadogV1")funcmain(){ctx:=datadog.NewDefaultContext(context.Background())configuration:=datadog.NewConfiguration()apiClient:=datadog.NewAPIClient(configuration)api:=datadogV1.NewUsageMeteringApi(apiClient)resp,r,err:=api.GetUsageSDS(ctx,time.Date(2021,11,11,11,11,11,111000,time.UTC),*datadogV1.NewGetUsageSDSOptionalParameters())iferr!=nil{fmt.Fprintf(os.Stderr,"Error when calling `UsageMeteringApi.GetUsageSDS`: %v\n",err)fmt.Fprintf(os.Stderr,"Full HTTP response: %v\n",r)}responseContent,_:=json.MarshalIndent(resp,""," ")fmt.Fprintf(os.Stdout,"Response from `UsageMeteringApi.GetUsageSDS`:\n%s\n",responseContent)}
// Get hourly usage for sensitive data scanner returns "OK" responseimportcom.datadog.api.client.ApiClient;importcom.datadog.api.client.ApiException;importcom.datadog.api.client.v1.api.UsageMeteringApi;importcom.datadog.api.client.v1.model.UsageSDSResponse;importjava.time.OffsetDateTime;publicclassExample{publicstaticvoidmain(String[]args){ApiClientdefaultClient=ApiClient.getDefaultApiClient();UsageMeteringApiapiInstance=newUsageMeteringApi(defaultClient);try{UsageSDSResponseresult=apiInstance.getUsageSDS(OffsetDateTime.parse("2021-11-11T11:11:11.111+00:00"));System.out.println(result);}catch(ApiExceptione){System.err.println("Exception when calling UsageMeteringApi#getUsageSDS");System.err.println("Status code: "+e.getCode());System.err.println("Reason: "+e.getResponseBody());System.err.println("Response headers: "+e.getResponseHeaders());e.printStackTrace();}}}
// Get hourly usage for sensitive data scanner returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageSDSOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_sds(DateTime::parse_from_rfc3339("2021-11-11T11:11:11.111000+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageSDSOptionalParams::default(),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for sensitive data scanner returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageSDSRequest={startHr: newDate(2021,11,11,11,11,11,111000),};apiInstance.getUsageSDS(params).then((data: v1.UsageSDSResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
"""
Get hourly usage for RUM units returns "OK" response
"""fromdatadog_api_clientimportApiClient,Configurationfromdatadog_api_client.v1.api.usage_metering_apiimportUsageMeteringApifromdatetimeimportdatetimefromdateutil.tzimporttzutcconfiguration=Configuration()withApiClient(configuration)asapi_client:api_instance=UsageMeteringApi(api_client)response=api_instance.get_usage_rum_units(start_hr=datetime(2021,11,11,11,11,11,111000,tzinfo=tzutc()),)print(response)
# Get hourly usage for RUM units returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newpapi_instance.get_usage_rum_units("2021-11-11T11:11:11.111+00:00")
// Get hourly usage for RUM units returns "OK" response
packagemainimport("context""encoding/json""fmt""os""time""github.com/DataDog/datadog-api-client-go/v2/api/datadog""github.com/DataDog/datadog-api-client-go/v2/api/datadogV1")funcmain(){ctx:=datadog.NewDefaultContext(context.Background())configuration:=datadog.NewConfiguration()apiClient:=datadog.NewAPIClient(configuration)api:=datadogV1.NewUsageMeteringApi(apiClient)resp,r,err:=api.GetUsageRumUnits(ctx,time.Date(2021,11,11,11,11,11,111000,time.UTC),*datadogV1.NewGetUsageRumUnitsOptionalParameters())iferr!=nil{fmt.Fprintf(os.Stderr,"Error when calling `UsageMeteringApi.GetUsageRumUnits`: %v\n",err)fmt.Fprintf(os.Stderr,"Full HTTP response: %v\n",r)}responseContent,_:=json.MarshalIndent(resp,""," ")fmt.Fprintf(os.Stdout,"Response from `UsageMeteringApi.GetUsageRumUnits`:\n%s\n",responseContent)}
// Get hourly usage for RUM units returns "OK" responseimportcom.datadog.api.client.ApiClient;importcom.datadog.api.client.ApiException;importcom.datadog.api.client.v1.api.UsageMeteringApi;importcom.datadog.api.client.v1.model.UsageRumUnitsResponse;importjava.time.OffsetDateTime;publicclassExample{publicstaticvoidmain(String[]args){ApiClientdefaultClient=ApiClient.getDefaultApiClient();UsageMeteringApiapiInstance=newUsageMeteringApi(defaultClient);try{UsageRumUnitsResponseresult=apiInstance.getUsageRumUnits(OffsetDateTime.parse("2021-11-11T11:11:11.111+00:00"));System.out.println(result);}catch(ApiExceptione){System.err.println("Exception when calling UsageMeteringApi#getUsageRumUnits");System.err.println("Status code: "+e.getCode());System.err.println("Reason: "+e.getResponseBody());System.err.println("Response headers: "+e.getResponseHeaders());e.printStackTrace();}}}
// Get hourly usage for RUM units returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageRumUnitsOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_rum_units(DateTime::parse_from_rfc3339("2021-11-11T11:11:11.111000+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageRumUnitsOptionalParams::default(),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for RUM units returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageRumUnitsRequest={startHr: newDate(2021,11,11,11,11,11,111000),};apiInstance.getUsageRumUnits(params).then((data: v1.UsageRumUnitsResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
# Get hourly usage for profiled hosts returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newopts={end_hr:(Time.now+-3*86400),}papi_instance.get_usage_profiling((Time.now+-5*86400),opts)
// Get hourly usage for profiled hosts returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageProfilingOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_profiling(DateTime::parse_from_rfc3339("2021-11-06T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageProfilingOptionalParams::default().end_hr(DateTime::parse_from_rfc3339("2021-11-08T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for profiled hosts returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageProfilingRequest={startHr: newDate(newDate().getTime()+-5*86400*1000),endHr: newDate(newDate().getTime()+-3*86400*1000),};apiInstance.getUsageProfiling(params).then((data: v1.UsageProfilingResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
The number of spans for pipelines in the queried hour.
ci_test_indexed_spans
int64
The number of spans for tests in the queried hour.
ci_visibility_itr_committers
int64
Shows the total count of all active Git committers for Intelligent Test Runner in the current month. A committer is active if they commit at least 3 times in a given month.
ci_visibility_pipeline_committers
int64
Shows the total count of all active Git committers for Pipelines in the current month. A committer is active if they commit at least 3 times in a given month.
ci_visibility_test_committers
int64
The total count of all active Git committers for tests in the current month. A committer is active if they commit at least 3 times in a given month.
"""
Get hourly usage for CI visibility returns "OK" response
"""fromdatetimeimportdatetimefromdateutil.relativedeltaimportrelativedeltafromdatadog_api_clientimportApiClient,Configurationfromdatadog_api_client.v1.api.usage_metering_apiimportUsageMeteringApiconfiguration=Configuration()withApiClient(configuration)asapi_client:api_instance=UsageMeteringApi(api_client)response=api_instance.get_usage_ci_app(start_hr=(datetime.now()+relativedelta(days=-5)),end_hr=(datetime.now()+relativedelta(days=-3)),)print(response)
# Get hourly usage for CI visibility returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newopts={end_hr:(Time.now+-3*86400),}papi_instance.get_usage_ci_app((Time.now+-5*86400),opts)
// Get hourly usage for CI visibility returns "OK" response
packagemainimport("context""encoding/json""fmt""os""time""github.com/DataDog/datadog-api-client-go/v2/api/datadog""github.com/DataDog/datadog-api-client-go/v2/api/datadogV1")funcmain(){ctx:=datadog.NewDefaultContext(context.Background())configuration:=datadog.NewConfiguration()apiClient:=datadog.NewAPIClient(configuration)api:=datadogV1.NewUsageMeteringApi(apiClient)resp,r,err:=api.GetUsageCIApp(ctx,time.Now().AddDate(0,0,-5),*datadogV1.NewGetUsageCIAppOptionalParameters().WithEndHr(time.Now().AddDate(0,0,-3)))iferr!=nil{fmt.Fprintf(os.Stderr,"Error when calling `UsageMeteringApi.GetUsageCIApp`: %v\n",err)fmt.Fprintf(os.Stderr,"Full HTTP response: %v\n",r)}responseContent,_:=json.MarshalIndent(resp,""," ")fmt.Fprintf(os.Stdout,"Response from `UsageMeteringApi.GetUsageCIApp`:\n%s\n",responseContent)}
// Get hourly usage for CI visibility returns "OK" responseimportcom.datadog.api.client.ApiClient;importcom.datadog.api.client.ApiException;importcom.datadog.api.client.v1.api.UsageMeteringApi;importcom.datadog.api.client.v1.api.UsageMeteringApi.GetUsageCIAppOptionalParameters;importcom.datadog.api.client.v1.model.UsageCIVisibilityResponse;importjava.time.OffsetDateTime;publicclassExample{publicstaticvoidmain(String[]args){ApiClientdefaultClient=ApiClient.getDefaultApiClient();UsageMeteringApiapiInstance=newUsageMeteringApi(defaultClient);try{UsageCIVisibilityResponseresult=apiInstance.getUsageCIApp(OffsetDateTime.now().plusDays(-5),newGetUsageCIAppOptionalParameters().endHr(OffsetDateTime.now().plusDays(-3)));System.out.println(result);}catch(ApiExceptione){System.err.println("Exception when calling UsageMeteringApi#getUsageCIApp");System.err.println("Status code: "+e.getCode());System.err.println("Reason: "+e.getResponseBody());System.err.println("Response headers: "+e.getResponseHeaders());e.printStackTrace();}}}
// Get hourly usage for CI visibility returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageCIAppOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_ci_app(DateTime::parse_from_rfc3339("2021-11-06T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageCIAppOptionalParams::default().end_hr(DateTime::parse_from_rfc3339("2021-11-08T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for CI visibility returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageCIAppRequest={startHr: newDate(newDate().getTime()+-5*86400*1000),endHr: newDate(newDate().getTime()+-3*86400*1000),};apiInstance.getUsageCIApp(params).then((data: v1.UsageCIVisibilityResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
# Get hourly usage for online archive returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newpapi_instance.get_usage_online_archive("2021-11-11T11:11:11.111+00:00")
// Get hourly usage for online archive returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageOnlineArchiveOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_online_archive(DateTime::parse_from_rfc3339("2021-11-11T11:11:11.111000+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageOnlineArchiveOptionalParams::default(),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for online archive returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageOnlineArchiveRequest={startHr: newDate(2021,11,11,11,11,11,111000),};apiInstance.getUsageOnlineArchive(params).then((data: v1.UsageOnlineArchiveResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
Get hourly usage for Lambda traced invocations.
Note: This endpoint has been deprecated.. Hourly usage data for all products is now available in the Get hourly usage by product family API
This endpoint requires the usage_read permission.
OAuth apps require the usage_read authorization scope to access this endpoint.
Argumentos
Cadenas de consulta
Nombre
Tipo
Descripción
start_hr [required]
string
Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage beginning at this hour.
end_hr
string
Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage ending
before this hour.
// Get hourly usage for Lambda traced invocations returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV2::api_usage_metering::GetUsageLambdaTracedInvocationsOptionalParams;usedatadog_api_client::datadogV2::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_lambda_traced_invocations(DateTime::parse_from_rfc3339("2021-11-06T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageLambdaTracedInvocationsOptionalParams::default().end_hr(DateTime::parse_from_rfc3339("2021-11-08T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for Lambda traced invocations returns "OK" response
*/import{client,v2}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv2.UsageMeteringApi(configuration);constparams: v2.UsageMeteringApiGetUsageLambdaTracedInvocationsRequest={startHr: newDate(newDate().getTime()+-5*86400*1000),endHr: newDate(newDate().getTime()+-3*86400*1000),};apiInstance.getUsageLambdaTracedInvocations(params).then((data: v2.UsageLambdaTracedInvocationsResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
Get hourly usage for application security .
Note: This endpoint has been deprecated. Hourly usage data for all products is now available in the Get hourly usage by product family API
This endpoint requires the usage_read permission.
OAuth apps require the usage_read authorization scope to access this endpoint.
Argumentos
Cadenas de consulta
Nombre
Tipo
Descripción
start_hr [required]
string
Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage beginning at this hour.
end_hr
string
Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage ending
before this hour.
# Get hourly usage for application security returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V2::UsageMeteringAPI.newopts={end_hr:(Time.now+-3*86400),}papi_instance.get_usage_application_security_monitoring((Time.now+-5*86400),opts)
// Get hourly usage for application security returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV2::api_usage_metering::GetUsageApplicationSecurityMonitoringOptionalParams;usedatadog_api_client::datadogV2::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_application_security_monitoring(DateTime::parse_from_rfc3339("2021-11-06T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageApplicationSecurityMonitoringOptionalParams::default().end_hr(DateTime::parse_from_rfc3339("2021-11-08T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for application security returns "OK" response
*/import{client,v2}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv2.UsageMeteringApi(configuration);constparams: v2.UsageMeteringApiGetUsageApplicationSecurityMonitoringRequest={startHr: newDate(newDate().getTime()+-5*86400*1000),endHr: newDate(newDate().getTime()+-3*86400*1000),};apiInstance.getUsageApplicationSecurityMonitoring(params).then((data: v2.UsageApplicationSecurityMonitoringResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
Get hourly usage for observability pipelines.
Note: This endpoint has been deprecated. Hourly usage data for all products is now available in the Get hourly usage by product family API
This endpoint requires the usage_read permission.
OAuth apps require the usage_read authorization scope to access this endpoint.
Argumentos
Cadenas de consulta
Nombre
Tipo
Descripción
start_hr [required]
string
Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage beginning at this hour.
end_hr
string
Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage ending
before this hour.
# Get hourly usage for observability pipelines returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V2::UsageMeteringAPI.newopts={end_hr:(Time.now+-3*86400),}papi_instance.get_usage_observability_pipelines((Time.now+-5*86400),opts)
// Get hourly usage for observability pipelines returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV2::api_usage_metering::GetUsageObservabilityPipelinesOptionalParams;usedatadog_api_client::datadogV2::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_observability_pipelines(DateTime::parse_from_rfc3339("2021-11-06T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageObservabilityPipelinesOptionalParams::default().end_hr(DateTime::parse_from_rfc3339("2021-11-08T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for observability pipelines returns "OK" response
*/import{client,v2}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv2.UsageMeteringApi(configuration);constparams: v2.UsageMeteringApiGetUsageObservabilityPipelinesRequest={startHr: newDate(newDate().getTime()+-5*86400*1000),endHr: newDate(newDate().getTime()+-3*86400*1000),};apiInstance.getUsageObservabilityPipelines(params).then((data: v2.UsageObservabilityPipelinesResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
# Get hourly usage for audit logs returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newopts={end_hr:(Time.now+-3*86400),}papi_instance.get_usage_audit_logs((Time.now+-5*86400),opts)
// Get hourly usage for audit logs returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetUsageAuditLogsOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_usage_audit_logs(DateTime::parse_from_rfc3339("2021-11-06T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetUsageAuditLogsOptionalParams::default().end_hr(DateTime::parse_from_rfc3339("2021-11-08T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get hourly usage for audit logs returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetUsageAuditLogsRequest={startHr: newDate(newDate().getTime()+-5*86400*1000),endHr: newDate(newDate().getTime()+-3*86400*1000),};apiInstance.getUsageAuditLogs(params).then((data: v1.UsageAuditLogsResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
Obtén informes diarios personalizados.
Nota: Este endpoint quedará totalmente obsoleto el 1 de diciembre de 2022.
Consulta la migración de v1 a v2 de la API de atribución de uso para obtener la guía de migración asociada.
This endpoint requires the usage_read permission.
Argumentos
Cadenas de consulta
Nombre
Tipo
Descripción
page[size]
integer
The number of files to return in the response. [default=60].
page[number]
integer
The identifier of the first page to return. This parameter is used for the pagination feature [default=0].
sort_dir
enum
The direction to sort by: [desc, asc]. Allowed enum values: desc, asc
sort
enum
The field to sort by: [computed_on, size, start_date, end_date]. Allowed enum values: computed_on, size, start_date, end_date
"""
Get the list of available daily custom reports returns "OK" response
"""fromdatadog_api_clientimportApiClient,Configurationfromdatadog_api_client.v1.api.usage_metering_apiimportUsageMeteringApiconfiguration=Configuration()withApiClient(configuration)asapi_client:api_instance=UsageMeteringApi(api_client)response=api_instance.get_daily_custom_reports()print(response)
# Get the list of available daily custom reports returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newpapi_instance.get_daily_custom_reports()
// Get the list of available daily custom reports returns "OK" response
packagemainimport("context""encoding/json""fmt""os""github.com/DataDog/datadog-api-client-go/v2/api/datadog""github.com/DataDog/datadog-api-client-go/v2/api/datadogV1")funcmain(){ctx:=datadog.NewDefaultContext(context.Background())configuration:=datadog.NewConfiguration()apiClient:=datadog.NewAPIClient(configuration)api:=datadogV1.NewUsageMeteringApi(apiClient)resp,r,err:=api.GetDailyCustomReports(ctx,*datadogV1.NewGetDailyCustomReportsOptionalParameters())iferr!=nil{fmt.Fprintf(os.Stderr,"Error when calling `UsageMeteringApi.GetDailyCustomReports`: %v\n",err)fmt.Fprintf(os.Stderr,"Full HTTP response: %v\n",r)}responseContent,_:=json.MarshalIndent(resp,""," ")fmt.Fprintf(os.Stdout,"Response from `UsageMeteringApi.GetDailyCustomReports`:\n%s\n",responseContent)}
// Get the list of available daily custom reports returns "OK" responseimportcom.datadog.api.client.ApiClient;importcom.datadog.api.client.ApiException;importcom.datadog.api.client.v1.api.UsageMeteringApi;importcom.datadog.api.client.v1.model.UsageCustomReportsResponse;publicclassExample{publicstaticvoidmain(String[]args){ApiClientdefaultClient=ApiClient.getDefaultApiClient();UsageMeteringApiapiInstance=newUsageMeteringApi(defaultClient);try{UsageCustomReportsResponseresult=apiInstance.getDailyCustomReports();System.out.println(result);}catch(ApiExceptione){System.err.println("Exception when calling UsageMeteringApi#getDailyCustomReports");System.err.println("Status code: "+e.getCode());System.err.println("Reason: "+e.getResponseBody());System.err.println("Response headers: "+e.getResponseHeaders());e.printStackTrace();}}}
// Get the list of available daily custom reports returns "OK" response
usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetDailyCustomReportsOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_daily_custom_reports(GetDailyCustomReportsOptionalParams::default()).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<API-KEY>"DD_APP_KEY="<APP-KEY>"cargo run
/**
* Get the list of available daily custom reports returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);apiInstance.getDailyCustomReports().then((data: v1.UsageCustomReportsResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
Obtén informes diarios personalizados.
Nota: Este endpoint quedará totalmente obsoleto el 1 de diciembre de 2022.
Consulta la migración de v1 a v2 de la API de atribución de uso para obtener la guía de migración asociada.
This endpoint requires the usage_read permission.
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<API-KEY>"DD_APP_KEY="<APP-KEY>"cargo run
/**
* Get specified daily custom reports returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetSpecifiedDailyCustomReportsRequest={reportId:"2022-03-20",};apiInstance.getSpecifiedDailyCustomReports(params).then((data: v1.UsageSpecifiedCustomReportsResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
Obtén informes mensuales personalizados.
Nota: Este endpoint quedará totalmente obsoleto el 1 de diciembre de 2022.
Consulta la migración de v1 a v2 de la API de atribución de uso para obtener la guía de migración asociada.
This endpoint requires the usage_read permission.
Argumentos
Cadenas de consulta
Nombre
Tipo
Descripción
page[size]
integer
The number of files to return in the response [default=60].
page[number]
integer
The identifier of the first page to return. This parameter is used for the pagination feature [default=0].
sort_dir
enum
The direction to sort by: [desc, asc]. Allowed enum values: desc, asc
sort
enum
The field to sort by: [computed_on, size, start_date, end_date]. Allowed enum values: computed_on, size, start_date, end_date
"""
Get the list of available monthly custom reports returns "OK" response
"""fromdatadog_api_clientimportApiClient,Configurationfromdatadog_api_client.v1.api.usage_metering_apiimportUsageMeteringApiconfiguration=Configuration()withApiClient(configuration)asapi_client:api_instance=UsageMeteringApi(api_client)response=api_instance.get_monthly_custom_reports()print(response)
# Get the list of available monthly custom reports returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V1::UsageMeteringAPI.newpapi_instance.get_monthly_custom_reports()
// Get the list of available monthly custom reports returns "OK" response
packagemainimport("context""encoding/json""fmt""os""github.com/DataDog/datadog-api-client-go/v2/api/datadog""github.com/DataDog/datadog-api-client-go/v2/api/datadogV1")funcmain(){ctx:=datadog.NewDefaultContext(context.Background())configuration:=datadog.NewConfiguration()apiClient:=datadog.NewAPIClient(configuration)api:=datadogV1.NewUsageMeteringApi(apiClient)resp,r,err:=api.GetMonthlyCustomReports(ctx,*datadogV1.NewGetMonthlyCustomReportsOptionalParameters())iferr!=nil{fmt.Fprintf(os.Stderr,"Error when calling `UsageMeteringApi.GetMonthlyCustomReports`: %v\n",err)fmt.Fprintf(os.Stderr,"Full HTTP response: %v\n",r)}responseContent,_:=json.MarshalIndent(resp,""," ")fmt.Fprintf(os.Stdout,"Response from `UsageMeteringApi.GetMonthlyCustomReports`:\n%s\n",responseContent)}
// Get the list of available monthly custom reports returns "OK" responseimportcom.datadog.api.client.ApiClient;importcom.datadog.api.client.ApiException;importcom.datadog.api.client.v1.api.UsageMeteringApi;importcom.datadog.api.client.v1.model.UsageCustomReportsResponse;publicclassExample{publicstaticvoidmain(String[]args){ApiClientdefaultClient=ApiClient.getDefaultApiClient();UsageMeteringApiapiInstance=newUsageMeteringApi(defaultClient);try{UsageCustomReportsResponseresult=apiInstance.getMonthlyCustomReports();System.out.println(result);}catch(ApiExceptione){System.err.println("Exception when calling UsageMeteringApi#getMonthlyCustomReports");System.err.println("Status code: "+e.getCode());System.err.println("Reason: "+e.getResponseBody());System.err.println("Response headers: "+e.getResponseHeaders());e.printStackTrace();}}}
// Get the list of available monthly custom reports returns "OK" response
usedatadog_api_client::datadog;usedatadog_api_client::datadogV1::api_usage_metering::GetMonthlyCustomReportsOptionalParams;usedatadog_api_client::datadogV1::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_monthly_custom_reports(GetMonthlyCustomReportsOptionalParams::default()).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<API-KEY>"DD_APP_KEY="<APP-KEY>"cargo run
/**
* Get the list of available monthly custom reports returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);apiInstance.getMonthlyCustomReports().then((data: v1.UsageCustomReportsResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
Obtén informes diarios personalizados.
Nota: Este endpoint quedará totalmente obsoleto el 1 de diciembre de 2022.
Consulta la migración de v1 a v2 de la API de atribución de uso para obtener la guía de migración asociada.
This endpoint requires the usage_read permission.
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<API-KEY>"DD_APP_KEY="<APP-KEY>"cargo run
/**
* Get specified monthly custom reports returns "OK" response
*/import{client,v1}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv1.UsageMeteringApi(configuration);constparams: v1.UsageMeteringApiGetSpecifiedMonthlyCustomReportsRequest={reportId:"2021-05-01",};apiInstance.getSpecifiedMonthlyCustomReports(params).then((data: v1.UsageSpecifiedCustomReportsResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));
Get cost across multi-org account.
Cost by org data for a given month becomes available no later than the 16th of the following month.
Note: This endpoint has been deprecated. Please use the new endpoint
/historical_cost
instead.
"""
Get cost across multi-org account returns "OK" response
"""fromdatetimeimportdatetimefromdateutil.relativedeltaimportrelativedeltafromdatadog_api_clientimportApiClient,Configurationfromdatadog_api_client.v2.api.usage_metering_apiimportUsageMeteringApiconfiguration=Configuration()withApiClient(configuration)asapi_client:api_instance=UsageMeteringApi(api_client)response=api_instance.get_cost_by_org(start_month=(datetime.now()+relativedelta(days=-3)),)print(response)
# Get cost across multi-org account returns "OK" responserequire"datadog_api_client"api_instance=DatadogAPIClient::V2::UsageMeteringAPI.newpapi_instance.get_cost_by_org((Time.now+-3*86400))
// Get cost across multi-org account returns "OK" response
packagemainimport("context""encoding/json""fmt""os""time""github.com/DataDog/datadog-api-client-go/v2/api/datadog""github.com/DataDog/datadog-api-client-go/v2/api/datadogV2")funcmain(){ctx:=datadog.NewDefaultContext(context.Background())configuration:=datadog.NewConfiguration()apiClient:=datadog.NewAPIClient(configuration)api:=datadogV2.NewUsageMeteringApi(apiClient)resp,r,err:=api.GetCostByOrg(ctx,time.Now().AddDate(0,0,-3),*datadogV2.NewGetCostByOrgOptionalParameters())iferr!=nil{fmt.Fprintf(os.Stderr,"Error when calling `UsageMeteringApi.GetCostByOrg`: %v\n",err)fmt.Fprintf(os.Stderr,"Full HTTP response: %v\n",r)}responseContent,_:=json.MarshalIndent(resp,""," ")fmt.Fprintf(os.Stdout,"Response from `UsageMeteringApi.GetCostByOrg`:\n%s\n",responseContent)}
// Get cost across multi-org account returns "OK" response
usechrono::{DateTime,Utc};usedatadog_api_client::datadog;usedatadog_api_client::datadogV2::api_usage_metering::GetCostByOrgOptionalParams;usedatadog_api_client::datadogV2::api_usage_metering::UsageMeteringAPI;#[tokio::main]asyncfnmain(){letconfiguration=datadog::Configuration::new();letapi=UsageMeteringAPI::with_config(configuration);letresp=api.get_cost_by_org(DateTime::parse_from_rfc3339("2021-11-08T11:11:11+00:00").expect("Failed to parse datetime").with_timezone(&Utc),GetCostByOrgOptionalParams::default(),).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get cost across multi-org account returns "OK" response
*/import{client,v2}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();constapiInstance=newv2.UsageMeteringApi(configuration);constparams: v2.UsageMeteringApiGetCostByOrgRequest={startMonth: newDate(newDate().getTime()+-3*86400*1000),};apiInstance.getCostByOrg(params).then((data: v2.CostByOrgResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));