Chilkat Online Tools

ERROR!

------------------- GenerateCode ----------------------
ImpliedContentType: 
---- begin chilkat script ----
// This example assumes the Chilkat API to have been previously unlocked.
// See {{-global_unlock:::Global Unlock Sample-}} for sample code.

new Http http;
ckbool success;

new JsonObject queryParams;
ignore = queryParams.UpdateString("start_hr","1991-02-02T07:22:34.204Z");
ignore = queryParams.UpdateString("end_hr","1991-02-02T07:22:34.204Z");

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


HttpResponse resp = http.QuickRequestParams("GET","https://api.app.ddog-gov.com/api/v1/usage/logs",queryParams);
if (http.LastMethodSuccess == ckfalse) {
    println http.LastErrorText;
    return;
}

new StringBuilder sbResponseBody;
ignore = resp.GetBodySb(sbResponseBody);

new JsonObject jResp;
call jResp.LoadSb(sbResponseBody);
jResp.EmitCompact = ckfalse;

println "Response Body:";
println jResp.Emit();

int respStatusCode = resp.StatusCode;
println "Response Status Code = ",respStatusCode;
if (respStatusCode >= 400) {
    println "Response Header:";
    println resp.Header;
    println "Failed.";
    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: {{.https://tools.chilkat.io/jsonParse|||Generate JSON Parsing Code.}}

#ifdef IS_C_CPP
// Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.
#undef IS_C_CPP

int billable_ingested_bytes;
string hour;
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;
string org_name;
string public_id;

int i = 0;
int count_i = jResp.SizeOfArray("usage");
while i < count_i {
    jResp.I = i;
    billable_ingested_bytes = 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_bytes = jResp.IntOf("usage[i].ingested_events_bytes");
    logs_forwarding_events_bytes = jResp.IntOf("usage[i].logs_forwarding_events_bytes");
    logs_live_indexed_count = jResp.IntOf("usage[i].logs_live_indexed_count");
    logs_live_ingested_bytes = jResp.IntOf("usage[i].logs_live_ingested_bytes");
    logs_rehydrated_indexed_count = jResp.IntOf("usage[i].logs_rehydrated_indexed_count");
    logs_rehydrated_ingested_bytes = 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 chilkat script ----

Go / Datadog API Collection / Get hourly usage for logs

Back to Collection Items

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

    http := chilkat.NewHttp()
    var success bool

    queryParams := chilkat.NewJsonObject()
    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)
    if http.LastMethodSuccess() == false {
        fmt.Println(http.LastErrorText())
        http.DisposeHttp()
        queryParams.DisposeJsonObject()
        return
    }

    sbResponseBody := chilkat.NewStringBuilder()
    resp.GetBodySb(sbResponseBody)

    jResp := chilkat.NewJsonObject()
    jResp.LoadSb(sbResponseBody)
    jResp.SetEmitCompact(false)

    fmt.Println("Response Body:")
    fmt.Println(*jResp.Emit())

    respStatusCode := resp.StatusCode()
    fmt.Println("Response Status Code = ", respStatusCode)
    if respStatusCode >= 400 {
        fmt.Println("Response Header:")
        fmt.Println(resp.Header())
        fmt.Println("Failed.")
        resp.DisposeHttpResponse()
        http.DisposeHttp()
        queryParams.DisposeJsonObject()
        sbResponseBody.DisposeStringBuilder()
        jResp.DisposeJsonObject()
        return
    }

    resp.DisposeHttpResponse()

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

    var billable_ingested_bytes int
    var hour *string = new(string)
    var indexed_events_count int
    var ingested_events_bytes int
    var logs_forwarding_events_bytes int
    var logs_live_indexed_count int
    var logs_live_ingested_bytes int
    var logs_rehydrated_indexed_count int
    var logs_rehydrated_ingested_bytes int
    var org_name *string = new(string)
    var public_id *string = new(string)

    i := 0
    count_i := jResp.SizeOfArray("usage")
    for i < count_i {
        jResp.SetI(i)
        ERROR: Undefined variable(billable_ingested)
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")
        ERROR: Undefined variable(ingested_events)
ingested_events = jResp.IntOf("usage[i].ingested_events_bytes")
        ERROR: Undefined variable(logs_forwarding_events)
logs_forwarding_events = jResp.IntOf("usage[i].logs_forwarding_events_bytes")
        logs_live_indexed_count = jResp.IntOf("usage[i].logs_live_indexed_count")
        ERROR: Undefined variable(logs_live_ingested)
logs_live_ingested = jResp.IntOf("usage[i].logs_live_ingested_bytes")
        logs_rehydrated_indexed_count = jResp.IntOf("usage[i].logs_rehydrated_indexed_count")
        ERROR: Undefined variable(logs_rehydrated_ingested)
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
    }


    http.DisposeHttp()
    queryParams.DisposeJsonObject()
    sbResponseBody.DisposeStringBuilder()
    jResp.DisposeJsonObject()

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