Skip to main content
Monitoring & Collection/Monitoring Query & Overview
GETMonitoringSince 1.0SynchronousAuth Required

GetProductView

Get aggregated product view including summary, top resources, and trends

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Path Parameters

Query Parameters

Request Inputs

Path Parameters

  • productTypeStringRequired

    Product type to query (e.g. vm, host, storage)

Query Parameters

  • platformUuidString

    UUID of the target platform UUID of the target platform

Responses

200 OK

On success, this API returns the following response structure.

  • productTypeString

    Product type this view applies to

    Example: vm

  • summaryJsonString

    JSON-encoded summary statistics for this product view

    Example: {"total":100,"running":90}

  • topResourcesList

    Top resources

    Example: (nested array)

    • uuidString

      Unique identifier of the resource

      Example: vm-xyz-001

    • nameString

      Display name of the resource

      Example: web-server-01

    • resourceTypeString

      Type of the resource (e.g. vm, host, volume)

      Example: vm

    • metricNameString

      Metric name used for ranking

      Example: cpu_usage_percent

    • valueLong

      Metric value for this resource

      Example: 87.3

    • unitString

      Unit of the metric value

      Example: %

  • trendsList

    Trends for this resource

    Example: (nested array)

    • timestampString

      Timestamp for this resource

      Example: 2026-01-15T08:00:00Z

    • valueLong

      Metric value at this trend point

      Example: 72.5

Endpoint

GET/api/v1/monitoring/products/{productType}/view

/api/v1/monitoring/products/{productType}/view

Operation ID

GetProductView

Permalink

Request Example

curl -X GET '{host}/api/v1/monitoring/products/{productType}/view' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "productType": "vm",
  "summaryJson": "{\"total\":100,\"running\":90}",
  "topResources": [
    {}
  ],
  "trends": [
    {}
  ]
}

Change History

This API has no change history records yet.

View all change history