Back to Collection Items
#include <CkHttpW.h>
#include <CkJsonObjectW.h>
#include <CkHttpResponseW.h>
#include <CkStringBuilderW.h>
void ChilkatSample(void)
{
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttpW http;
bool success;
CkJsonObjectW queryParams;
queryParams.UpdateString(L"start_hr",L"1991-02-02T07:22:34.204Z");
queryParams.UpdateString(L"end_hr",L"1991-02-02T07:22:34.204Z");
http.SetRequestHeader(L"Accept",L"application/json;datetime-format=rfc3339");
CkHttpResponseW *resp = http.QuickRequestParams(L"GET",L"https://api.app.ddog-gov.com/api/v1/usage/logs",queryParams);
if (http.get_LastMethodSuccess() == false) {
wprintf(L"%s\n",http.lastErrorText());
return;
}
CkStringBuilderW sbResponseBody;
resp->GetBodySb(sbResponseBody);
CkJsonObjectW jResp;
jResp.LoadSb(sbResponseBody);
jResp.put_EmitCompact(false);
wprintf(L"Response Body:\n");
wprintf(L"%s\n",jResp.emit());
int respStatusCode = resp->get_StatusCode();
wprintf(L"Response Status Code = %d\n",respStatusCode);
if (respStatusCode >= 400) {
wprintf(L"Response Header:\n");
wprintf(L"%s\n",resp->header());
wprintf(L"Failed.\n");
delete resp;
return;
}
delete 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
// Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.
int billable_ingested_bytes;
const wchar_t *hour = 0;
int indexed_events_count;
int ingested_events_bytes;
int logs_forwarding_events_bytes;
int logs_live_indexed_count;
int logs_live_ingested_bytes;
int logs_rehydrated_indexed_count;
int logs_rehydrated_ingested_bytes;
const wchar_t *org_name = 0;
const wchar_t *public_id = 0;
int i = 0;
int count_i = jResp.SizeOfArray(L"usage");
while (i < count_i) {
jResp.put_I(i);
success = jResp.IntOf(L"usage[i].billable_ingested_bytes",billable_ingested);
hour = jResp.stringOf(L"usage[i].hour");
indexed_events_count = jResp.IntOf(L"usage[i].indexed_events_count");
success = jResp.IntOf(L"usage[i].ingested_events_bytes",ingested_events);
success = jResp.IntOf(L"usage[i].logs_forwarding_events_bytes",logs_forwarding_events);
logs_live_indexed_count = jResp.IntOf(L"usage[i].logs_live_indexed_count");
success = jResp.IntOf(L"usage[i].logs_live_ingested_bytes",logs_live_ingested);
logs_rehydrated_indexed_count = jResp.IntOf(L"usage[i].logs_rehydrated_indexed_count");
success = jResp.IntOf(L"usage[i].logs_rehydrated_ingested_bytes",logs_rehydrated_ingested);
org_name = jResp.stringOf(L"usage[i].org_name");
public_id = jResp.stringOf(L"usage[i].public_id");
i = i + 1;
}
}
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}"
}
]
}