Skip to main content
node
const fetch = require('node-fetch');

let url = 'https://api.coralogix.com/mgmt/openapi/v2/datausage/daily/processed_gbs';

let options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <API_KEY>', 'content-type': 'application/json'},
  body: '{"range":"RANGE_UNSPECIFIED","dateRange":{"fromDate":"2021-01-01T00:00:00.000Z","toDate":"2021-01-01T00:00:00.000Z"}}'
};

fetch(url, options)
  .then(res => res.json())
  .then(json => console.log(json))
  .catch(err => console.error('error:' + err));
{
  "gbs": [
    {
      "statsDate": "2023-11-07T05:31:56Z",
      "totalGbs": {
        "value": 123
      },
      "blockedGbs": {
        "value": 123
      },
      "lowLogsGbs": {
        "value": 123
      },
      "mediumLogsGbs": {
        "value": 123
      },
      "highLogsGbs": {
        "value": 123
      },
      "highMetricsGbs": {
        "value": 123
      },
      "lowTracingGbs": {
        "value": 123
      },
      "mediumTracingGbs": {
        "value": 123
      },
      "highTracingGbs": {
        "value": 123
      },
      "lowSessionRecordingGbs": {
        "value": 123
      },
      "cpuProfilesGbs": {
        "value": 123
      },
      "blockedMetricsGbs": {
        "value": 123
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

API key authentication

Body

application/json
range
enum<string>
default:RANGE_UNSPECIFIED
Available options:
RANGE_UNSPECIFIED,
RANGE_CURRENT_MONTH,
RANGE_LAST_30_DAYS,
RANGE_LAST_90_DAYS,
RANGE_LAST_WEEK
dateRange
object

This data structure represents a date range.

Response

A successful response.

gbs
/ Daily data usage in GBs. This entity represents only data processed by CX · object[]
I