lambda_traced_invocations_usage
Creates, updates, deletes, gets or lists a lambda_traced_invocations_usage resource.
Overview
| Name | lambda_traced_invocations_usage |
| Type | Resource |
| Id | datadog.organization.lambda_traced_invocations_usage |
Fields
The following fields are returned by SELECT queries:
- get_usage_lambda_traced_invocations
| Name | Datatype | Description |
|---|---|---|
id | string | Unique ID of the response. |
attributes | object | Usage attributes data. |
type | string | Type of usage data. (default: usage_timeseries, example: usage_timeseries) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_usage_lambda_traced_invocations | select | start_hr, region | end_hr | 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 |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | (default: datadoghq.com) |
start_hr | string (date-time) | Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage beginning at this hour. |
end_hr | string (date-time) | Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage ending before this hour. |
SELECT examples
- get_usage_lambda_traced_invocations
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
SELECT
id,
attributes,
type
FROM datadog.organization.lambda_traced_invocations_usage
WHERE start_hr = '{{ start_hr }}' -- required
AND region = '{{ region }}' -- required
AND end_hr = '{{ end_hr }}'
;