Chilkat Online Tools

SQL Server / Monitoring API / List metrics based on matching criteria.

Back to Collection Items

-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    DECLARE @iTmp0 int
    -- Important: Do not use nvarchar(max).  See the warning about using nvarchar(max).
    DECLARE @sTmp0 nvarchar(4000)
    -- This example assumes the Chilkat API to have been previously unlocked.
    -- See Global Unlock Sample for sample code.

    DECLARE @http int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Http', @http OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    DECLARE @success int

    -- Use this online tool to generate code from sample JSON: Generate Code to Create JSON

    -- The following JSON is sent in the request body.

    -- {
    --   "dimensionFilters": {},
    --   "groupBy": [
    --     "aliqua nisi incididunt magna Excepteur",
    --     "eu et non laborum dolor"
    --   ],
    --   "name": "amet ut",
    --   "namespace": "Ut dolore",
    --   "resourceGroup": "aliqua sed",
    --   "sortBy": "NAME",
    --   "sortOrder": "ASC"
    -- }

    DECLARE @json int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.JsonObject', @json OUT

    EXEC sp_OAMethod @json, 'UpdateNewObject', @success OUT, 'dimensionFilters'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'groupBy[0]', 'aliqua nisi incididunt magna Excepteur'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'groupBy[1]', 'eu et non laborum dolor'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'name', 'amet ut'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'namespace', 'Ut dolore'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'resourceGroup', 'aliqua sed'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'sortBy', 'NAME'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'sortOrder', 'ASC'

    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'opc-request-id', 'pariatur nostrud eiusmod'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Content-Type', 'application/json'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'x-content-sha256', '{{content_sha256}}'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Authorization', '{{signature}}'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Date', '{{date}}'

    DECLARE @resp int
    EXEC sp_OAMethod @http, 'PostJson3', @resp OUT, 'https://telemetry-ingestion.{{region}}.oraclecloud.com/20180401/metrics/actions/listMetrics?compartmentId={{compartment_ocid}}&page=&limit=576&compartmentIdInSubtree=true', 'application/json', @json
    EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
    IF @iTmp0 = 0
      BEGIN
        EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @json
        RETURN
      END

    DECLARE @sbResponseBody int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.StringBuilder', @sbResponseBody OUT

    EXEC sp_OAMethod @resp, 'GetBodySb', @success OUT, @sbResponseBody

    DECLARE @jarrResp int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.JsonArray', @jarrResp OUT

    EXEC sp_OAMethod @jarrResp, 'LoadSb', @success OUT, @sbResponseBody
    EXEC sp_OASetProperty @jarrResp, 'EmitCompact', 0


    PRINT 'Response Body:'
    EXEC sp_OAMethod @jarrResp, 'Emit', @sTmp0 OUT
    PRINT @sTmp0

    DECLARE @respStatusCode int
    EXEC sp_OAGetProperty @resp, 'StatusCode', @respStatusCode OUT

    PRINT 'Response Status Code = ' + @respStatusCode
    IF @respStatusCode >= 400
      BEGIN

        PRINT 'Response Header:'
        EXEC sp_OAGetProperty @resp, 'Header', @sTmp0 OUT
        PRINT @sTmp0

        PRINT 'Failed.'
        EXEC @hr = sp_OADestroy @resp

        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @json
        EXEC @hr = sp_OADestroy @sbResponseBody
        EXEC @hr = sp_OADestroy @jarrResp
        RETURN
      END
    EXEC @hr = sp_OADestroy @resp

    -- Sample JSON response:
    -- (Sample code for parsing the JSON response is shown below)

    -- [
    --   {
    --     "compartmentId": "ocid1.compartment.oc1..exampleuniqueID",
    --     "dimensions": {},
    --     "name": "in veniam",
    --     "namespace": "ut eu ex deserunt",
    --     "resourceGroup": "sunt dolor dolore ea ipsum"
    --   },
    --   {
    --     "compartmentId": "ocid1.compartment.oc1..exampleuniqueID",
    --     "dimensions": {},
    --     "name": "tempor nisi",
    --     "namespace": "aliquip occaecat ullamco aute sint",
    --     "resourceGroup": "cillum laboris"
    --   }
    -- ]

    -- Sample code for parsing the JSON response...
    -- Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

    DECLARE @json int

    DECLARE @compartmentId nvarchar(4000)

    DECLARE @name nvarchar(4000)

    DECLARE @namespace nvarchar(4000)

    DECLARE @resourceGroup nvarchar(4000)

    DECLARE @i int
    SELECT @i = 0
    DECLARE @count_i int
    EXEC sp_OAGetProperty @jarrResp, 'Size', @count_i OUT
    WHILE @i < @count_i
      BEGIN
        EXEC sp_OAMethod @jarrResp, 'ObjectAt', @json OUT, @i
        EXEC sp_OAMethod @json, 'StringOf', @compartmentId OUT, 'compartmentId'
        EXEC sp_OAMethod @json, 'StringOf', @name OUT, 'name'
        EXEC sp_OAMethod @json, 'StringOf', @namespace OUT, 'namespace'
        EXEC sp_OAMethod @json, 'StringOf', @resourceGroup OUT, 'resourceGroup'
        EXEC @hr = sp_OADestroy @json

        SELECT @i = @i + 1
      END

    EXEC @hr = sp_OADestroy @http
    EXEC @hr = sp_OADestroy @json
    EXEC @hr = sp_OADestroy @sbResponseBody
    EXEC @hr = sp_OADestroy @jarrResp


END
GO

Curl Command

curl -X POST
	-H "opc-request-id: pariatur nostrud eiusmod"
	-H "Content-Type: application/json"
	-H "Date: {{date}}"
	-H "Authorization: {{signature}}"
	-H "x-content-sha256: {{content_sha256}}"
	-d '{
    "dimensionFilters": {},
    "groupBy": [
        "aliqua nisi incididunt magna Excepteur",
        "eu et non laborum dolor"
    ],
    "name": "amet ut",
    "namespace": "Ut dolore",
    "resourceGroup": "aliqua sed",
    "sortBy": "NAME",
    "sortOrder": "ASC"
}'
https://telemetry-ingestion.{{region}}.oraclecloud.com/20180401/metrics/actions/listMetrics?compartmentId={{compartment_ocid}}&page=&limit=576&compartmentIdInSubtree=true

Postman Collection Item JSON

{
  "name": "List metrics based on matching criteria.",
  "request": {
    "method": "POST",
    "header": [
      {
        "description": "Customer part of the request identifier token. If you need to contact Oracle about a particular\nrequest, please provide the complete request ID.\n",
        "key": "opc-request-id",
        "value": "pariatur nostrud eiusmod"
      },
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "Date",
        "value": "{{date}}",
        "description": "(Required) Current Date",
        "type": "text"
      },
      {
        "key": "Authorization",
        "value": "{{signature}}",
        "description": "(Required) Signature Authentication on Authorization header",
        "type": "text"
      },
      {
        "key": "x-content-sha256",
        "value": "{{content_sha256}}",
        "description": "(Required) Content sha256 for POST, PUT and PATCH operations",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"dimensionFilters\": {},\n    \"groupBy\": [\n        \"aliqua nisi incididunt magna Excepteur\",\n        \"eu et non laborum dolor\"\n    ],\n    \"name\": \"amet ut\",\n    \"namespace\": \"Ut dolore\",\n    \"resourceGroup\": \"aliqua sed\",\n    \"sortBy\": \"NAME\",\n    \"sortOrder\": \"ASC\"\n}"
    },
    "url": {
      "raw": "{{baseUrlIngestion}}/metrics/actions/listMetrics?compartmentId={{compartment_ocid}}&page=&limit=576&compartmentIdInSubtree=true",
      "host": [
        "{{baseUrlIngestion}}"
      ],
      "path": [
        "metrics",
        "actions",
        "listMetrics"
      ],
      "query": [
        {
          "key": "compartmentId",
          "value": "{{compartment_ocid}}",
          "description": "(Required) The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the\nresources monitored by the metric that you are searching for. Use tenancyId to search in\nthe root compartment.\n\nExample: `ocid1.compartment.oc1..exampleuniqueID`\n"
        },
        {
          "key": "page",
          "value": "",
          "description": "For list pagination. The value of the `opc-next-page` response header from the previous \"List\" call.\nFor important details about how pagination works, see [List Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).\n"
        },
        {
          "key": "limit",
          "value": "576",
          "description": "For list pagination. The maximum number of results per page, or items to return in a paginated \"List\" call.\nFor important details about how pagination works, see [List Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).\n\nDefault: 1000\n\nExample: 500\n"
        },
        {
          "key": "compartmentIdInSubtree",
          "value": "true",
          "description": "When true, returns resources from all compartments and subcompartments. The parameter can\nonly be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment).\nA true value requires the user to have tenancy-level permissions. If this requirement is not met,\nthen the call is rejected. When false, returns resources from only the compartment specified in\ncompartmentId. Default is false.\n"
        }
      ]
    },
    "description": "Returns metric definitions that match the criteria specified in the request. Compartment OCID required.\nFor information about metrics, see [Metrics Overview](https://docs.oracle.com/iaas/Content/Monitoring/Concepts/monitoringoverview.htm#MetricsOverview).\nFor important limits information, see [Limits on Monitoring](https://docs.oracle.com/iaas/Content/Monitoring/Concepts/monitoringoverview.htm#Limits).\n\nTransactions Per Second (TPS) per-tenancy limit for this operation: 10.\n"
  },
  "response": [
    {
      "name": "The metric definitions were successfully retrieved.\n",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": "Customer part of the request identifier token. If you need to contact Oracle about a particular\nrequest, please provide the complete request ID.\n",
            "key": "opc-request-id",
            "value": "pariatur nostrud eiusmod"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"dimensionFilters\": {},\n    \"groupBy\": [\n        \"ea dolor tempor nostrud\",\n        \"cillum ea in\"\n    ],\n    \"name\": \"exercitation dolor\",\n    \"namespace\": \"elit consectetur\",\n    \"resourceGroup\": \"enim adipis\",\n    \"sortBy\": \"NAMESPACE\",\n    \"sortOrder\": \"DESC\"\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/metrics/actions/listMetrics?compartmentId=mollit in Duis enim&page=do ipsum&limit=576&compartmentIdInSubtree=true",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "metrics",
            "actions",
            "listMetrics"
          ],
          "query": [
            {
              "key": "compartmentId",
              "value": "mollit in Duis enim"
            },
            {
              "key": "page",
              "value": "do ipsum"
            },
            {
              "key": "limit",
              "value": "576"
            },
            {
              "key": "compartmentIdInSubtree",
              "value": "true"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "opc-next-page",
          "value": "pariatur nostrud eiusmod",
          "description": "For list pagination. When this header appears in the response, additional pages of results remain.\nFor important details about how pagination works, see [List Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).\n"
        },
        {
          "key": "opc-request-id",
          "value": "pariatur nostrud eiusmod",
          "description": "Unique Oracle-assigned identifier for the request. If you need to contact Oracle about\na particular request, please provide the request ID.\n"
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "[\n {\n  \"compartmentId\": \"ocid1.compartment.oc1..exampleuniqueID\",\n  \"dimensions\": {},\n  \"name\": \"in veniam\",\n  \"namespace\": \"ut eu ex deserunt\",\n  \"resourceGroup\": \"sunt dolor dolore ea ipsum\"\n },\n {\n  \"compartmentId\": \"ocid1.compartment.oc1..exampleuniqueID\",\n  \"dimensions\": {},\n  \"name\": \"tempor nisi\",\n  \"namespace\": \"aliquip occaecat ullamco aute sint\",\n  \"resourceGroup\": \"cillum laboris\"\n }\n]"
    },
    {
      "name": "Bad Request",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": "Customer part of the request identifier token. If you need to contact Oracle about a particular\nrequest, please provide the complete request ID.\n",
            "key": "opc-request-id",
            "value": "pariatur nostrud eiusmod"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"dimensionFilters\": {},\n    \"groupBy\": [\n        \"ea dolor tempor nostrud\",\n        \"cillum ea in\"\n    ],\n    \"name\": \"exercitation dolor\",\n    \"namespace\": \"elit consectetur\",\n    \"resourceGroup\": \"enim adipis\",\n    \"sortBy\": \"NAMESPACE\",\n    \"sortOrder\": \"DESC\"\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/metrics/actions/listMetrics?compartmentId=mollit in Duis enim&page=do ipsum&limit=576&compartmentIdInSubtree=true",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "metrics",
            "actions",
            "listMetrics"
          ],
          "query": [
            {
              "key": "compartmentId",
              "value": "mollit in Duis enim"
            },
            {
              "key": "page",
              "value": "do ipsum"
            },
            {
              "key": "limit",
              "value": "576"
            },
            {
              "key": "compartmentIdInSubtree",
              "value": "true"
            }
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "opc-request-id",
          "value": "pariatur nostrud eiusmod",
          "description": "Unique Oracle-assigned identifier for the request. If you need to contact Oracle about\na particular request, please provide the request ID.\n"
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"code\": \"qui anim ut\",\n \"message\": \"esse proident\"\n}"
    },
    {
      "name": "Unauthorized",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": "Customer part of the request identifier token. If you need to contact Oracle about a particular\nrequest, please provide the complete request ID.\n",
            "key": "opc-request-id",
            "value": "pariatur nostrud eiusmod"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"dimensionFilters\": {},\n    \"groupBy\": [\n        \"ea dolor tempor nostrud\",\n        \"cillum ea in\"\n    ],\n    \"name\": \"exercitation dolor\",\n    \"namespace\": \"elit consectetur\",\n    \"resourceGroup\": \"enim adipis\",\n    \"sortBy\": \"NAMESPACE\",\n    \"sortOrder\": \"DESC\"\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/metrics/actions/listMetrics?compartmentId=mollit in Duis enim&page=do ipsum&limit=576&compartmentIdInSubtree=true",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "metrics",
            "actions",
            "listMetrics"
          ],
          "query": [
            {
              "key": "compartmentId",
              "value": "mollit in Duis enim"
            },
            {
              "key": "page",
              "value": "do ipsum"
            },
            {
              "key": "limit",
              "value": "576"
            },
            {
              "key": "compartmentIdInSubtree",
              "value": "true"
            }
          ]
        }
      },
      "status": "Unauthorized",
      "code": 401,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "opc-request-id",
          "value": "pariatur nostrud eiusmod",
          "description": "Unique Oracle-assigned identifier for the request. If you need to contact Oracle about\na particular request, please provide the request ID.\n"
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"code\": \"qui anim ut\",\n \"message\": \"esse proident\"\n}"
    },
    {
      "name": "Not Authorized Or Not Found",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": "Customer part of the request identifier token. If you need to contact Oracle about a particular\nrequest, please provide the complete request ID.\n",
            "key": "opc-request-id",
            "value": "pariatur nostrud eiusmod"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"dimensionFilters\": {},\n    \"groupBy\": [\n        \"ea dolor tempor nostrud\",\n        \"cillum ea in\"\n    ],\n    \"name\": \"exercitation dolor\",\n    \"namespace\": \"elit consectetur\",\n    \"resourceGroup\": \"enim adipis\",\n    \"sortBy\": \"NAMESPACE\",\n    \"sortOrder\": \"DESC\"\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/metrics/actions/listMetrics?compartmentId=mollit in Duis enim&page=do ipsum&limit=576&compartmentIdInSubtree=true",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "metrics",
            "actions",
            "listMetrics"
          ],
          "query": [
            {
              "key": "compartmentId",
              "value": "mollit in Duis enim"
            },
            {
              "key": "page",
              "value": "do ipsum"
            },
            {
              "key": "limit",
              "value": "576"
            },
            {
              "key": "compartmentIdInSubtree",
              "value": "true"
            }
          ]
        }
      },
      "status": "Not Found",
      "code": 404,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "opc-request-id",
          "value": "pariatur nostrud eiusmod",
          "description": "Unique Oracle-assigned identifier for the request. If you need to contact Oracle about\na particular request, please provide the request ID.\n"
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"code\": \"qui anim ut\",\n \"message\": \"esse proident\"\n}"
    },
    {
      "name": "Client is getting throttled, please retry with backoff.",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": "Customer part of the request identifier token. If you need to contact Oracle about a particular\nrequest, please provide the complete request ID.\n",
            "key": "opc-request-id",
            "value": "pariatur nostrud eiusmod"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"dimensionFilters\": {},\n    \"groupBy\": [\n        \"ea dolor tempor nostrud\",\n        \"cillum ea in\"\n    ],\n    \"name\": \"exercitation dolor\",\n    \"namespace\": \"elit consectetur\",\n    \"resourceGroup\": \"enim adipis\",\n    \"sortBy\": \"NAMESPACE\",\n    \"sortOrder\": \"DESC\"\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/metrics/actions/listMetrics?compartmentId=mollit in Duis enim&page=do ipsum&limit=576&compartmentIdInSubtree=true",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "metrics",
            "actions",
            "listMetrics"
          ],
          "query": [
            {
              "key": "compartmentId",
              "value": "mollit in Duis enim"
            },
            {
              "key": "page",
              "value": "do ipsum"
            },
            {
              "key": "limit",
              "value": "576"
            },
            {
              "key": "compartmentIdInSubtree",
              "value": "true"
            }
          ]
        }
      },
      "status": "Too Many Requests",
      "code": 429,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "opc-request-id",
          "value": "pariatur nostrud eiusmod",
          "description": "Unique Oracle-assigned identifier for the request. If you need to contact Oracle about\na particular request, please provide the request ID.\n"
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"code\": \"qui anim ut\",\n \"message\": \"esse proident\"\n}"
    },
    {
      "name": "Internal Server Error",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": "Customer part of the request identifier token. If you need to contact Oracle about a particular\nrequest, please provide the complete request ID.\n",
            "key": "opc-request-id",
            "value": "pariatur nostrud eiusmod"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"dimensionFilters\": {},\n    \"groupBy\": [\n        \"ea dolor tempor nostrud\",\n        \"cillum ea in\"\n    ],\n    \"name\": \"exercitation dolor\",\n    \"namespace\": \"elit consectetur\",\n    \"resourceGroup\": \"enim adipis\",\n    \"sortBy\": \"NAMESPACE\",\n    \"sortOrder\": \"DESC\"\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/metrics/actions/listMetrics?compartmentId=mollit in Duis enim&page=do ipsum&limit=576&compartmentIdInSubtree=true",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "metrics",
            "actions",
            "listMetrics"
          ],
          "query": [
            {
              "key": "compartmentId",
              "value": "mollit in Duis enim"
            },
            {
              "key": "page",
              "value": "do ipsum"
            },
            {
              "key": "limit",
              "value": "576"
            },
            {
              "key": "compartmentIdInSubtree",
              "value": "true"
            }
          ]
        }
      },
      "status": "Internal Server Error",
      "code": 500,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "opc-request-id",
          "value": "pariatur nostrud eiusmod",
          "description": "Unique Oracle-assigned identifier for the request. If you need to contact Oracle about\na particular request, please provide the request ID.\n"
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"code\": \"qui anim ut\",\n \"message\": \"esse proident\"\n}"
    },
    {
      "name": "An error has occurred.",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": "Customer part of the request identifier token. If you need to contact Oracle about a particular\nrequest, please provide the complete request ID.\n",
            "key": "opc-request-id",
            "value": "pariatur nostrud eiusmod"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"dimensionFilters\": {},\n    \"groupBy\": [\n        \"ea dolor tempor nostrud\",\n        \"cillum ea in\"\n    ],\n    \"name\": \"exercitation dolor\",\n    \"namespace\": \"elit consectetur\",\n    \"resourceGroup\": \"enim adipis\",\n    \"sortBy\": \"NAMESPACE\",\n    \"sortOrder\": \"DESC\"\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/metrics/actions/listMetrics?compartmentId=mollit in Duis enim&page=do ipsum&limit=576&compartmentIdInSubtree=true",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "metrics",
            "actions",
            "listMetrics"
          ],
          "query": [
            {
              "key": "compartmentId",
              "value": "mollit in Duis enim"
            },
            {
              "key": "page",
              "value": "do ipsum"
            },
            {
              "key": "limit",
              "value": "576"
            },
            {
              "key": "compartmentIdInSubtree",
              "value": "true"
            }
          ]
        }
      },
      "status": "Internal Server Error",
      "code": 500,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "opc-request-id",
          "value": "pariatur nostrud eiusmod",
          "description": "Unique Oracle-assigned identifier for the request. If you need to contact Oracle about\na particular request, please provide the request ID.\n"
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"code\": \"qui anim ut\",\n \"message\": \"esse proident\"\n}"
    }
  ]
}