Back to Collection Items
load ./chilkat.dll
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
set http [new_CkHttp]
set queryParams [new_CkJsonObject]
CkJsonObject_UpdateString $queryParams "start_hr" "1991-02-02T07:22:34.204Z"
CkJsonObject_UpdateString $queryParams "end_hr" "1991-02-02T07:22:34.204Z"
CkHttp_SetRequestHeader $http "Accept" "application/json;datetime-format=rfc3339"
# resp is a CkHttpResponse
set resp [CkHttp_QuickRequestParams $http "GET" "https://api.app.ddog-gov.com/api/v1/usage/logs" $queryParams]
if {[CkHttp_get_LastMethodSuccess $http] == 0} then {
puts [CkHttp_lastErrorText $http]
delete_CkHttp $http
delete_CkJsonObject $queryParams
exit
}
set sbResponseBody [new_CkStringBuilder]
CkHttpResponse_GetBodySb $resp $sbResponseBody
set jResp [new_CkJsonObject]
CkJsonObject_LoadSb $jResp $sbResponseBody
CkJsonObject_put_EmitCompact $jResp 0
puts "Response Body:"
puts [CkJsonObject_emit $jResp]
set respStatusCode [CkHttpResponse_get_StatusCode $resp]
puts "Response Status Code = $respStatusCode"
if {$respStatusCode >= 400} then {
puts "Response Header:"
puts [CkHttpResponse_header $resp]
puts "Failed."
delete_CkHttpResponse $resp
delete_CkHttp $http
delete_CkJsonObject $queryParams
delete_CkStringBuilder $sbResponseBody
delete_CkJsonObject $jResp
exit
}
delete_CkHttpResponse $resp
# Sample JSON response:
# (Sample code for parsing the JSON response is shown below)
# {
# "usage": [
# {
# "billable_ingested_bytes": 86730718,
# "hour": "2008-11-19T15:08:45.695Z",
# "indexed_events_count": 1067457,
# "ingested_events_bytes": -12220910,
# "logs_forwarding_events_bytes": -68405808,
# "logs_live_indexed_count": 13318711,
# "logs_live_ingested_bytes": -68107145,
# "logs_rehydrated_indexed_count": -24102195,
# "logs_rehydrated_ingested_bytes": 50476094,
# "org_name": "velit dolore",
# "public_id": "eiusmod in pariatur consequat"
# },
# {
# "billable_ingested_bytes": 47259376,
# "hour": "1972-12-31T23:34:00.720Z",
# "indexed_events_count": -56892025,
# "ingested_events_bytes": -74880768,
# "logs_forwarding_events_bytes": -69280079,
# "logs_live_indexed_count": 68415745,
# "logs_live_ingested_bytes": 48832198,
# "logs_rehydrated_indexed_count": 26981829,
# "logs_rehydrated_ingested_bytes": 76657482,
# "org_name": "sit id",
# "public_id": "enim "
# }
# ]
# }
# Sample code for parsing the JSON response...
# Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
set i 0
set count_i [CkJsonObject_SizeOfArray $jResp "usage"]
while {$i < $count_i} {
CkJsonObject_put_I $jResp $i
set success [CkJsonObject_IntOf $jResp "usage[i].billable_ingested_bytes" $billable_ingested]
set hour [CkJsonObject_stringOf $jResp "usage[i].hour"]
set indexed_events_count [CkJsonObject_IntOf $jResp "usage[i].indexed_events_count"]
set success [CkJsonObject_IntOf $jResp "usage[i].ingested_events_bytes" $ingested_events]
set success [CkJsonObject_IntOf $jResp "usage[i].logs_forwarding_events_bytes" $logs_forwarding_events]
set logs_live_indexed_count [CkJsonObject_IntOf $jResp "usage[i].logs_live_indexed_count"]
set success [CkJsonObject_IntOf $jResp "usage[i].logs_live_ingested_bytes" $logs_live_ingested]
set logs_rehydrated_indexed_count [CkJsonObject_IntOf $jResp "usage[i].logs_rehydrated_indexed_count"]
set success [CkJsonObject_IntOf $jResp "usage[i].logs_rehydrated_ingested_bytes" $logs_rehydrated_ingested]
set org_name [CkJsonObject_stringOf $jResp "usage[i].org_name"]
set public_id [CkJsonObject_stringOf $jResp "usage[i].public_id"]
set i [expr $i + 1]
}
delete_CkHttp $http
delete_CkJsonObject $queryParams
delete_CkStringBuilder $sbResponseBody
delete_CkJsonObject $jResp
Curl Command
curl -G -d "start_hr=1991-02-02T07%3A22%3A34.204Z"
-d "end_hr=1991-02-02T07%3A22%3A34.204Z"
-H "Accept: application/json;datetime-format=rfc3339"
https://api.app.ddog-gov.com/api/v1/usage/logs
Postman Collection Item JSON
{
"name": "Get hourly usage for logs",
"request": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json;datetime-format=rfc3339"
}
],
"url": {
"raw": "{{baseUrl}}/api/v1/usage/logs?start_hr=1991-02-02T07:22:34.204Z&end_hr=1991-02-02T07:22:34.204Z",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"usage",
"logs"
],
"query": [
{
"key": "start_hr",
"value": "1991-02-02T07:22:34.204Z",
"description": "(Required) Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage beginning at this hour."
},
{
"key": "end_hr",
"value": "1991-02-02T07:22:34.204Z",
"description": "Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage ending **before** this hour."
}
]
},
"description": "Get hourly usage for logs.\n**Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family). Refer to [Migrating from the V1 Hourly Usage APIs to V2](https://docs.datadoghq.com/account_management/guide/hourly-usage-migration/) for the associated migration guide."
},
"response": [
{
"name": "OK",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json;datetime-format=rfc3339"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "DD-API-KEY",
"value": "<API Key>"
}
],
"url": {
"raw": "{{baseUrl}}/api/v1/usage/logs?start_hr=1991-02-02T07:22:34.204Z&end_hr=1991-02-02T07:22:34.204Z",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"usage",
"logs"
],
"query": [
{
"key": "start_hr",
"value": "1991-02-02T07:22:34.204Z",
"description": "(Required) Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage beginning at this hour."
},
{
"key": "end_hr",
"value": "1991-02-02T07:22:34.204Z",
"description": "Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage ending **before** this hour."
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json;datetime-format=rfc3339"
}
],
"cookie": [
],
"body": "{\n \"usage\": [\n {\n \"billable_ingested_bytes\": 86730718,\n \"hour\": \"2008-11-19T15:08:45.695Z\",\n \"indexed_events_count\": 1067457,\n \"ingested_events_bytes\": -12220910,\n \"logs_forwarding_events_bytes\": -68405808,\n \"logs_live_indexed_count\": 13318711,\n \"logs_live_ingested_bytes\": -68107145,\n \"logs_rehydrated_indexed_count\": -24102195,\n \"logs_rehydrated_ingested_bytes\": 50476094,\n \"org_name\": \"velit dolore\",\n \"public_id\": \"eiusmod in pariatur consequat\"\n },\n {\n \"billable_ingested_bytes\": 47259376,\n \"hour\": \"1972-12-31T23:34:00.720Z\",\n \"indexed_events_count\": -56892025,\n \"ingested_events_bytes\": -74880768,\n \"logs_forwarding_events_bytes\": -69280079,\n \"logs_live_indexed_count\": 68415745,\n \"logs_live_ingested_bytes\": 48832198,\n \"logs_rehydrated_indexed_count\": 26981829,\n \"logs_rehydrated_ingested_bytes\": 76657482,\n \"org_name\": \"sit id\",\n \"public_id\": \"enim \"\n }\n ]\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json;datetime-format=rfc3339"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "DD-API-KEY",
"value": "<API Key>"
}
],
"url": {
"raw": "{{baseUrl}}/api/v1/usage/logs?start_hr=1991-02-02T07:22:34.204Z&end_hr=1991-02-02T07:22:34.204Z",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"usage",
"logs"
],
"query": [
{
"key": "start_hr",
"value": "1991-02-02T07:22:34.204Z",
"description": "(Required) Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage beginning at this hour."
},
{
"key": "end_hr",
"value": "1991-02-02T07:22:34.204Z",
"description": "Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage ending **before** this hour."
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json;datetime-format=rfc3339"
}
],
"cookie": [
],
"body": "{\n \"errors\": [\n \"Bad Request\",\n \"Bad Request\"\n ]\n}"
},
{
"name": "Forbidden - User is not authorized",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json;datetime-format=rfc3339"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "DD-API-KEY",
"value": "<API Key>"
}
],
"url": {
"raw": "{{baseUrl}}/api/v1/usage/logs?start_hr=1991-02-02T07:22:34.204Z&end_hr=1991-02-02T07:22:34.204Z",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"usage",
"logs"
],
"query": [
{
"key": "start_hr",
"value": "1991-02-02T07:22:34.204Z",
"description": "(Required) Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage beginning at this hour."
},
{
"key": "end_hr",
"value": "1991-02-02T07:22:34.204Z",
"description": "Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage ending **before** this hour."
}
]
}
},
"status": "Forbidden",
"code": 403,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json;datetime-format=rfc3339"
}
],
"cookie": [
],
"body": "{\n \"errors\": [\n \"Bad Request\",\n \"Bad Request\"\n ]\n}"
},
{
"name": "Too many requests",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json;datetime-format=rfc3339"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "DD-API-KEY",
"value": "<API Key>"
}
],
"url": {
"raw": "{{baseUrl}}/api/v1/usage/logs?start_hr=1991-02-02T07:22:34.204Z&end_hr=1991-02-02T07:22:34.204Z",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"usage",
"logs"
],
"query": [
{
"key": "start_hr",
"value": "1991-02-02T07:22:34.204Z",
"description": "(Required) Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage beginning at this hour."
},
{
"key": "end_hr",
"value": "1991-02-02T07:22:34.204Z",
"description": "Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage ending **before** this hour."
}
]
}
},
"status": "Too Many Requests",
"code": 429,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json;datetime-format=rfc3339"
}
],
"cookie": [
],
"body": "{\n \"errors\": [\n \"Bad Request\",\n \"Bad Request\"\n ]\n}"
}
]
}