Skip to main content

usage_application_security_monitoring

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

Overview

Nameusage_application_security_monitoring
TypeResource
Iddatadog.organization.usage_application_security_monitoring

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringUnique ID of the response.
attributesobjectUsage attributes data.
typestringType of usage data. (default: usage_timeseries, example: usage_timeseries)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_usage_application_security_monitoringselectstart_hr, regionend_hrGet 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

Parameters

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

NameDatatypeDescription
regionstring(default: datadoghq.com)
start_hrstring (date-time)Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage beginning at this hour.
end_hrstring (date-time)Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage ending before this hour.

SELECT examples

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

SELECT
id,
attributes,
type
FROM datadog.organization.usage_application_security_monitoring
WHERE start_hr = '{{ start_hr }}' -- required
AND region = '{{ region }}' -- required
AND end_hr = '{{ end_hr }}'
;