Chilkat Online Tools

delphiAx / Datadog API Collection / Get hourly usage for logs

Back to Collection Items

var
http: TChilkatHttp;
success: Integer;
queryParams: TChilkatJsonObject;
resp: IChilkatHttpResponse;
sbResponseBody: TChilkatStringBuilder;
jResp: TChilkatJsonObject;
respStatusCode: Integer;
billable_ingested_bytes: Integer;
hour: WideString;
indexed_events_count: Integer;
ingested_events_bytes: Integer;
logs_forwarding_events_bytes: Integer;
logs_live_indexed_count: Integer;
logs_live_ingested_bytes: Integer;
logs_rehydrated_indexed_count: Integer;
logs_rehydrated_ingested_bytes: Integer;
org_name: WideString;
public_id: WideString;
i: Integer;
count_i: Integer;

begin
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

http := TChilkatHttp.Create(Self);

queryParams := TChilkatJsonObject.Create(Self);
queryParams.UpdateString('start_hr','1991-02-02T07:22:34.204Z');
queryParams.UpdateString('end_hr','1991-02-02T07:22:34.204Z');

http.SetRequestHeader('Accept','application/json;datetime-format=rfc3339');

resp := http.QuickRequestParams('GET','https://api.app.ddog-gov.com/api/v1/usage/logs',queryParams.ControlInterface);
if (http.LastMethodSuccess = 0) then
  begin
    Memo1.Lines.Add(http.LastErrorText);
    Exit;
  end;

sbResponseBody := TChilkatStringBuilder.Create(Self);
resp.GetBodySb(sbResponseBody.ControlInterface);

jResp := TChilkatJsonObject.Create(Self);
jResp.LoadSb(sbResponseBody.ControlInterface);
jResp.EmitCompact := 0;

Memo1.Lines.Add('Response Body:');
Memo1.Lines.Add(jResp.Emit());

respStatusCode := resp.StatusCode;
Memo1.Lines.Add('Response Status Code = ' + IntToStr(respStatusCode));
if (respStatusCode >= 400) then
  begin
    Memo1.Lines.Add('Response Header:');
    Memo1.Lines.Add(resp.Header);
    Memo1.Lines.Add('Failed.');

    Exit;
  end;

// 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

i := 0;
count_i := jResp.SizeOfArray('usage');
while i < count_i do
  begin
    jResp.I := i;
    billable_ingested := jResp.IntOf('usage[i].billable_ingested_bytes');
    hour := jResp.StringOf('usage[i].hour');
    indexed_events_count := jResp.IntOf('usage[i].indexed_events_count');
    ingested_events := jResp.IntOf('usage[i].ingested_events_bytes');
    logs_forwarding_events := jResp.IntOf('usage[i].logs_forwarding_events_bytes');
    logs_live_indexed_count := jResp.IntOf('usage[i].logs_live_indexed_count');
    logs_live_ingested := jResp.IntOf('usage[i].logs_live_ingested_bytes');
    logs_rehydrated_indexed_count := jResp.IntOf('usage[i].logs_rehydrated_indexed_count');
    logs_rehydrated_ingested := jResp.IntOf('usage[i].logs_rehydrated_ingested_bytes');
    org_name := jResp.StringOf('usage[i].org_name');
    public_id := jResp.StringOf('usage[i].public_id');
    i := i + 1;
  end;

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}"
    }
  ]
}