computation

Query facets analytics

Group data by facet values with optional ranging, sorting and limits.

Facet requests are limited to 3 dimensions in the by clause.

Sorting and ranging always apply to the last given facet.

post/environments/{envId}/analytics/facets

Path parameters

envIdstring required

The unique ID of your environment

Request body

byFacetName[] required

List of facet names to group by (applies to all metrics)

limitinteger

Maximum number of buckets to return (applies to all metrics)

Example request

{
  "timeRange": {
    "from": "2025-01-01T00:00:00Z",
    "to": "2025-01-31T23:59:59Z"
  },
  "by": [
    "API",
    "APPLICATION"
  ],
  "limit": 2,
  "metrics": [
    {
      "name": "HTTP_REQUESTS",
      "measures": [
        "COUNT"
      ],
      "sort": [
        {
          "measure": "COUNT",
          "order": "DESC"
        }
      ]
    }
  ]
}

Response

Facets analytics response

Example response

{
  "metrics": [
    {
      "name": "HTTP_REQUESTS",
      "unit": "NUMBER",
      "buckets": [
        {
          "key": "49ddd7db-35d6-497e-b497-2dc16af0cdcc",
          "name": "api-1",
          "type": "GROUP",
          "buckets": [
            {
              "key": "e65289b0-35b2-40e7-8d41-711fba7fdc96",
              "name": "app-1",
              "type": "LEAF",
              "measures": [
                {
                  "name": "COUNT",
                  "value": 45
                }
              ]
            },
            {
              "key": "4c65d87a-008a-4a4c-b11a-a38b7a662fcc",
              "name": "app-2",
              "type": "LEAF",
              "measures": [
                {
                  "name": "COUNT",
                  "value": 34
                }
              ]
            },
            {
              "key": "71091fd9-a6a9-4c7f-afdb-d837ea28058c",
              "name": "app-3",
              "type": "LEAF",
              "measures": [
                {
                  "name": "COUNT",
                  "value": 989
                }
              ]
            }
          ]
        }
      ]
    }
  ]
}

Changes

Changed in 27 of the 49 revisions of this API.7551270

  • ff8d60356a082149See the full diff
    • added the new NATIVE_ACTIVE_CONNECTIONS_DOWNSTREAM enum value to the metrics/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new NATIVE_ACTIVE_CONNECTIONS_UPSTREAM enum value to the metrics/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new NATIVE_AUTHENTICATIONS_FAILURE_DOWNSTREAM enum value to the metrics/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new NATIVE_AUTHENTICATIONS_FAILURE_UPSTREAM enum value to the metrics/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new NATIVE_AUTHENTICATIONS_SUCCESS_DOWNSTREAM enum value to the metrics/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new NATIVE_AUTHENTICATIONS_SUCCESS_UPSTREAM enum value to the metrics/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new NATIVE_BYTES_CONSUMED_DOWNSTREAM enum value to the metrics/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new NATIVE_BYTES_CONSUMED_UPSTREAM enum value to the metrics/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new NATIVE_BYTES_PRODUCED_DOWNSTREAM enum value to the metrics/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new NATIVE_BYTES_PRODUCED_UPSTREAM enum value to the metrics/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new NATIVE_MESSAGES_CONSUMED_DOWNSTREAM enum value to the metrics/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new NATIVE_MESSAGES_CONSUMED_UPSTREAM enum value to the metrics/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new NATIVE_MESSAGES_PRODUCED_DOWNSTREAM enum value to the metrics/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new NATIVE_MESSAGES_PRODUCED_UPSTREAM enum value to the metrics/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new NATIVE_OPERATIONS_ANSWERED enum value to the metrics/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new NATIVE_OPERATIONS_COMPLETED enum value to the metrics/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new NATIVE_OPERATIONS_FORWARDED enum value to the metrics/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new NATIVE_OPERATIONS_RECEIVED enum value to the metrics/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new NATIVE_OPERATION_BROKER_DURATION enum value to the metrics/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new NATIVE_OPERATION_GATEWAY_REQUEST_DURATION enum value to the metrics/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new NATIVE_OPERATION_GATEWAY_RESPONSE_DURATION enum value to the metrics/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new NATIVE_ACTIVE_CONNECTIONS_DOWNSTREAM enum value to the request property metrics/items/name

      request-property-enum-value-added

    • added the new NATIVE_ACTIVE_CONNECTIONS_UPSTREAM enum value to the request property metrics/items/name

      request-property-enum-value-added

    • added the new NATIVE_AUTHENTICATIONS_FAILURE_DOWNSTREAM enum value to the request property metrics/items/name

      request-property-enum-value-added

    • added the new NATIVE_AUTHENTICATIONS_FAILURE_UPSTREAM enum value to the request property metrics/items/name

      request-property-enum-value-added

    • added the new NATIVE_AUTHENTICATIONS_SUCCESS_DOWNSTREAM enum value to the request property metrics/items/name

      request-property-enum-value-added

    • added the new NATIVE_AUTHENTICATIONS_SUCCESS_UPSTREAM enum value to the request property metrics/items/name

      request-property-enum-value-added

    • added the new NATIVE_BYTES_CONSUMED_DOWNSTREAM enum value to the request property metrics/items/name

      request-property-enum-value-added

    • added the new NATIVE_BYTES_CONSUMED_UPSTREAM enum value to the request property metrics/items/name

      request-property-enum-value-added

    • added the new NATIVE_BYTES_PRODUCED_DOWNSTREAM enum value to the request property metrics/items/name

      request-property-enum-value-added

    • added the new NATIVE_BYTES_PRODUCED_UPSTREAM enum value to the request property metrics/items/name

      request-property-enum-value-added

    • added the new NATIVE_CLIENT_ID enum value to the request property by/items/

      request-property-enum-value-added

    • added the new NATIVE_CLIENT_ID enum value to the request property filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_CLIENT_ID enum value to the request property filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_CLIENT_ID enum value to the request property filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_CLIENT_ID enum value to the request property metrics/items/filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_CLIENT_ID enum value to the request property metrics/items/filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_CLIENT_ID enum value to the request property metrics/items/filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_FAILURE_SIDE enum value to the request property by/items/

      request-property-enum-value-added

    • added the new NATIVE_FAILURE_SIDE enum value to the request property filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_FAILURE_SIDE enum value to the request property filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_FAILURE_SIDE enum value to the request property filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_FAILURE_SIDE enum value to the request property metrics/items/filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_FAILURE_SIDE enum value to the request property metrics/items/filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_FAILURE_SIDE enum value to the request property metrics/items/filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_MESSAGES_CONSUMED_DOWNSTREAM enum value to the request property metrics/items/name

      request-property-enum-value-added

    • added the new NATIVE_MESSAGES_CONSUMED_UPSTREAM enum value to the request property metrics/items/name

      request-property-enum-value-added

    • added the new NATIVE_MESSAGES_PRODUCED_DOWNSTREAM enum value to the request property metrics/items/name

      request-property-enum-value-added

    • added the new NATIVE_MESSAGES_PRODUCED_UPSTREAM enum value to the request property metrics/items/name

      request-property-enum-value-added

    • added the new NATIVE_OPERATION enum value to the request property by/items/

      request-property-enum-value-added

    • added the new NATIVE_OPERATION enum value to the request property filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_OPERATION enum value to the request property filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_OPERATION enum value to the request property filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_OPERATION enum value to the request property metrics/items/filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_OPERATION enum value to the request property metrics/items/filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_OPERATION enum value to the request property metrics/items/filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_OPERATIONS_ANSWERED enum value to the request property metrics/items/name

      request-property-enum-value-added

    • added the new NATIVE_OPERATIONS_COMPLETED enum value to the request property metrics/items/name

      request-property-enum-value-added

    • added the new NATIVE_OPERATIONS_FORWARDED enum value to the request property metrics/items/name

      request-property-enum-value-added

    • added the new NATIVE_OPERATIONS_RECEIVED enum value to the request property metrics/items/name

      request-property-enum-value-added

    • added the new NATIVE_OPERATION_BROKER_DURATION enum value to the request property metrics/items/name

      request-property-enum-value-added

    • added the new NATIVE_OPERATION_GATEWAY_REQUEST_DURATION enum value to the request property metrics/items/name

      request-property-enum-value-added

    • added the new NATIVE_OPERATION_GATEWAY_RESPONSE_DURATION enum value to the request property metrics/items/name

      request-property-enum-value-added

    • added the new NATIVE_TOPIC enum value to the request property by/items/

      request-property-enum-value-added

    • added the new NATIVE_TOPIC enum value to the request property filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_TOPIC enum value to the request property filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_TOPIC enum value to the request property filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_TOPIC enum value to the request property metrics/items/filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_TOPIC enum value to the request property metrics/items/filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_TOPIC enum value to the request property metrics/items/filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added CONTAINS discriminator mapping keys to the filters/items/ request property

      request-property-discriminator-mapping-added

    • added CONTAINS discriminator mapping keys to the metrics/items/filters/items/ request property

      request-property-discriminator-mapping-added

    • added the new CONTAINS enum value to the request property filters/items/oneOf[ArrayFilter]/operator

      request-property-enum-value-added

    • added the new CONTAINS enum value to the request property filters/items/oneOf[NumberFilter]/operator

      request-property-enum-value-added

    • added the new CONTAINS enum value to the request property filters/items/oneOf[StringFilter]/operator

      request-property-enum-value-added

    • added the new CONTAINS enum value to the request property metrics/items/filters/items/oneOf[ArrayFilter]/operator

      request-property-enum-value-added

    • added the new CONTAINS enum value to the request property metrics/items/filters/items/oneOf[NumberFilter]/operator

      request-property-enum-value-added

    • added the new CONTAINS enum value to the request property metrics/items/filters/items/oneOf[StringFilter]/operator

      request-property-enum-value-added

    • added the new REQUEST_ID enum value to the request property filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new REQUEST_ID enum value to the request property filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new REQUEST_ID enum value to the request property filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new REQUEST_ID enum value to the request property metrics/items/filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new REQUEST_ID enum value to the request property metrics/items/filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new REQUEST_ID enum value to the request property metrics/items/filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new TRANSACTION_ID enum value to the request property filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new TRANSACTION_ID enum value to the request property filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new TRANSACTION_ID enum value to the request property filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new TRANSACTION_ID enum value to the request property metrics/items/filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new TRANSACTION_ID enum value to the request property metrics/items/filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new TRANSACTION_ID enum value to the request property metrics/items/filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new ENTRYPOINT enum value to the request property filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new ENTRYPOINT enum value to the request property filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new ENTRYPOINT enum value to the request property filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new ENTRYPOINT enum value to the request property metrics/items/filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new ENTRYPOINT enum value to the request property metrics/items/filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new ENTRYPOINT enum value to the request property metrics/items/filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new URI enum value to the request property filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new URI enum value to the request property filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new URI enum value to the request property filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new URI enum value to the request property metrics/items/filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new URI enum value to the request property metrics/items/filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new URI enum value to the request property metrics/items/filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

  • f1e14444ad0712See the full diff
    • added the new SUM enum value to the metrics/items/buckets/items/oneOf[BucketLeaf]/measures/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new SUM enum value to the request property metrics/items/measures/items/

      request-property-enum-value-added

    • added the new SUM enum value to the request property metrics/items/sorts/items/measure

      request-property-enum-value-added

  • 6889427e4080325See the full diff
    • added the new EDGE_HEARTBEAT_COUNT enum value to the metrics/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new EDGE_TOKENS_IN enum value to the metrics/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new EDGE_TOKENS_OUT enum value to the metrics/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new EDGE_HEARTBEAT_COUNT enum value to the request property metrics/items/name

      request-property-enum-value-added

    • added the new EDGE_MODEL enum value to the request property by/items/

      request-property-enum-value-added

    • added the new EDGE_MODEL enum value to the request property filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new EDGE_MODEL enum value to the request property filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new EDGE_MODEL enum value to the request property filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new EDGE_MODEL enum value to the request property metrics/items/filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new EDGE_MODEL enum value to the request property metrics/items/filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new EDGE_MODEL enum value to the request property metrics/items/filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new EDGE_TOKENS_IN enum value to the request property metrics/items/name

      request-property-enum-value-added

    • added the new EDGE_TOKENS_OUT enum value to the request property metrics/items/name

      request-property-enum-value-added

    • added the new EDGE_TOOL enum value to the request property by/items/

      request-property-enum-value-added

    • added the new EDGE_TOOL enum value to the request property filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new EDGE_TOOL enum value to the request property filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new EDGE_TOOL enum value to the request property filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new EDGE_TOOL enum value to the request property metrics/items/filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new EDGE_TOOL enum value to the request property metrics/items/filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new EDGE_TOOL enum value to the request property metrics/items/filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new EDGE_TYPE enum value to the request property by/items/

      request-property-enum-value-added

    • added the new EDGE_VERSION enum value to the request property by/items/

      request-property-enum-value-added

    • added the new EDGE_VERSION enum value to the request property filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new EDGE_VERSION enum value to the request property filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new EDGE_VERSION enum value to the request property filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new EDGE_VERSION enum value to the request property metrics/items/filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new EDGE_VERSION enum value to the request property metrics/items/filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new EDGE_VERSION enum value to the request property metrics/items/filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

  • 18f9da80195c128See the full diff
    • added the new EDGE_DETECTION_COUNT enum value to the metrics/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new EDGE_CLIENT enum value to the request property by/items/

      request-property-enum-value-added

    • added the new EDGE_CLIENT enum value to the request property filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new EDGE_CLIENT enum value to the request property filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new EDGE_CLIENT enum value to the request property filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new EDGE_CLIENT enum value to the request property metrics/items/filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new EDGE_CLIENT enum value to the request property metrics/items/filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new EDGE_CLIENT enum value to the request property metrics/items/filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new EDGE_DETECTION_COUNT enum value to the request property metrics/items/name

      request-property-enum-value-added

    • added the new EDGE_PROCESS enum value to the request property by/items/

      request-property-enum-value-added

    • added the new EDGE_PROCESS enum value to the request property filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new EDGE_PROCESS enum value to the request property filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new EDGE_PROCESS enum value to the request property filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new EDGE_PROCESS enum value to the request property metrics/items/filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new EDGE_PROCESS enum value to the request property metrics/items/filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new EDGE_PROCESS enum value to the request property metrics/items/filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new EDGE_PROVIDER enum value to the request property by/items/

      request-property-enum-value-added

    • added the new EDGE_PROVIDER enum value to the request property filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new EDGE_PROVIDER enum value to the request property filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new EDGE_PROVIDER enum value to the request property filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new EDGE_PROVIDER enum value to the request property metrics/items/filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new EDGE_PROVIDER enum value to the request property metrics/items/filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new EDGE_PROVIDER enum value to the request property metrics/items/filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new EDGE_TYPE enum value to the request property filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new EDGE_TYPE enum value to the request property filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new EDGE_TYPE enum value to the request property filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new EDGE_TYPE enum value to the request property metrics/items/filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new EDGE_TYPE enum value to the request property metrics/items/filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new EDGE_TYPE enum value to the request property metrics/items/filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_CONNECTIONS_SUMMARY enum value to the metrics/items/name response property for the response status 200

      response-property-enum-value-added

    • added the new NATIVE_CONNECTIONS_SUMMARY enum value to the request property metrics/items/name

      request-property-enum-value-added

    • added the new NATIVE_CONNECTION_STATUS enum value to the request property by/items/

      request-property-enum-value-added

    • added the new NATIVE_CONNECTION_STATUS enum value to the request property filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_CONNECTION_STATUS enum value to the request property filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_CONNECTION_STATUS enum value to the request property filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_CONNECTION_STATUS enum value to the request property metrics/items/filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_CONNECTION_STATUS enum value to the request property metrics/items/filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new NATIVE_CONNECTION_STATUS enum value to the request property metrics/items/filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new API_PRODUCT enum value to the request property by/items/

      request-property-enum-value-added

    • added the new API_PRODUCT enum value to the request property filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new API_PRODUCT enum value to the request property filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new API_PRODUCT enum value to the request property filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the new API_PRODUCT enum value to the request property metrics/items/filters/items/oneOf[ArrayFilter]/name

      request-property-enum-value-added

    • added the new API_PRODUCT enum value to the request property metrics/items/filters/items/oneOf[NumberFilter]/name

      request-property-enum-value-added

    • added the new API_PRODUCT enum value to the request property metrics/items/filters/items/oneOf[StringFilter]/name

      request-property-enum-value-added

    • added the optional property metrics/items/unit to the response with the 200 status

      response-optional-property-added