Chilkat Online Tools

Python / Datadog API Collection / Get hourly usage for logs

Back to Collection Items

import sys
import chilkat2

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

http = chilkat2.Http()

queryParams = chilkat2.JsonObject()
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 is a CkHttpResponse
resp = http.QuickRequestParams("GET","https://api.app.ddog-gov.com/api/v1/usage/logs",queryParams)
if (http.LastMethodSuccess == False):
    print(http.LastErrorText)
    sys.exit()

sbResponseBody = chilkat2.StringBuilder()
resp.GetBodySb(sbResponseBody)

jResp = chilkat2.JsonObject()
jResp.LoadSb(sbResponseBody)
jResp.EmitCompact = False

print("Response Body:")
print(jResp.Emit())

respStatusCode = resp.StatusCode
print("Response Status Code = " + str(respStatusCode))
if (respStatusCode >= 400):
    print("Response Header:")
    print(resp.Header)
    print("Failed.")

    sys.exit()

# 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 :
    jResp.I = i
    # billable_ingested is a memoryview
    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 is a memoryview
    ingested_events = jResp.IntOf("usage[i].ingested_events_bytes")
    # logs_forwarding_events is a memoryview
    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 is a memoryview
    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 is a memoryview
    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

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