Chilkat Online Tools

Java / ForgeRock Identity Cloud Collection / Get Prometheus Metrics (AM)

Back to Collection Items

import com.chilkatsoft.*;

public class ChilkatExample {

  static {
    try {
        System.loadLibrary("chilkat");
    } catch (UnsatisfiedLinkError e) {
      System.err.println("Native code library failed to load.\n" + e);
      System.exit(1);
    }
  }

  public static void main(String argv[])
  {
    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkHttp http = new CkHttp();
    boolean success;

    http.SetRequestHeader("x-api-secret","{{logApiSecret}}");
    http.SetRequestHeader("x-api-key","{{logApiKey}}");

    CkStringBuilder sbResponseBody = new CkStringBuilder();
    success = http.QuickGetSb("https://<tenant-name>.forgeblocks.com/monitoring/prometheus/am",sbResponseBody);
    if (success == false) {
        System.out.println(http.lastErrorText());
        return;
        }

    System.out.println("Response status code = " + http.get_LastStatus());
    System.out.println(sbResponseBody.getAsString());
  }
}

Curl Command

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

Postman Collection Item JSON

{
  "name": "Get Prometheus Metrics (AM)",
  "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",
        "value": "{{logApiKey}}",
        "type": "text"
      },
      {
        "key": "x-api-secret",
        "value": "{{logApiSecret}}",
        "type": "text"
      }
    ],
    "url": {
      "raw": "{{platformUrl}}/monitoring/prometheus/am",
      "host": [
        "{{platformUrl}}"
      ],
      "path": [
        "monitoring",
        "prometheus",
        "am"
      ]
    },
    "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"
    }
  ]
}