Chilkat Online Tools

unicodeC / ForgeRock Identity Cloud Collection / Get Prometheus Metrics (IDM)

Back to Collection Items

#include <C_CkHttpW.h>
#include <C_CkStringBuilderW.h>

void ChilkatSample(void)
    {
    HCkHttpW http;
    BOOL success;
    HCkStringBuilderW sbResponseBody;

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

    http = CkHttpW_Create();

    CkHttpW_SetRequestHeader(http,L"x-api-secret",L"{{logApiSecret}}");
    CkHttpW_SetRequestHeader(http,L"x-api-key",L"{{logApiKey}}");

    sbResponseBody = CkStringBuilderW_Create();
    success = CkHttpW_QuickGetSb(http,L"https://<tenant-name>.forgeblocks.com/monitoring/prometheus/idm",sbResponseBody);
    if (success == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkHttpW_Dispose(http);
        CkStringBuilderW_Dispose(sbResponseBody);
        return;
    }

    wprintf(L"Response status code = %d\n",CkHttpW_getLastStatus(http));
    wprintf(L"%s\n",CkStringBuilderW_getAsString(sbResponseBody));


    CkHttpW_Dispose(http);
    CkStringBuilderW_Dispose(sbResponseBody);

    }

Curl Command

curl -X GET
	-H "x-api-key: {{logApiKey}}"
	-H "x-api-secret: {{logApiSecret}}"
https://<tenant-name>.forgeblocks.com/monitoring/prometheus/idm

Postman Collection Item JSON

{
  "name": "Get Prometheus Metrics (IDM)",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "pm.test(\"Status code is 200.\", () => {",
          "  pm.expect(pm.response.code).to.eql(200);",
          "});"
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "auth": {
      "type": "noauth"
    },
    "method": "GET",
    "header": [
      {
        "key": "x-api-key",
        "type": "text",
        "value": "{{logApiKey}}"
      },
      {
        "key": "x-api-secret",
        "type": "text",
        "value": "{{logApiSecret}}"
      }
    ],
    "url": {
      "raw": "{{platformUrl}}/monitoring/prometheus/idm",
      "host": [
        "{{platformUrl}}"
      ],
      "path": [
        "monitoring",
        "prometheus",
        "idm"
      ]
    },
    "description": "AM prometheus metrics"
  },
  "response": [
    {
      "name": "Prometheus metrics for all AM pods",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/metrics/prometheus/am",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "metrics",
            "prometheus",
            "am"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": "# HELP am_cts_task_queue_size number of operations waiting in a CTS queue\n# TYPE am_cts_task_queue_size gauge\nam_cts_task_queue_size{kubernetes_pod_name=\"am-568cc4fbb6-cjnpg\",} 0.0"
    }
  ]
}