REST API Reference for Managing Oracle Coherence

View Cache Information by Service

get

/management/coherence/cluster/services/{serviceName}/views/{viewName}

Use this endpoint to view general statistics for a view cache that is managed by a specific service. The information is aggregated across all cache members. Use the query parameters to change which aggregated results to view and whether the results should be constrained to cluster members with a specific member role.

Request

Path Parameters
Query Parameters
  • The collector to use for aggregation
    Allowed Values: [ "all", "avg", "count", "list", "max", "min", "set", "sum", "intsummary", "longsummary", "doublesummary" ]
  • The data from cluster member belonging to the role will be included in the response
Back to Top

Response

Supported Media Types
  • application/json

200 Response

A successful request that returns information about a view cache
Body (
  1. viewAggregate
)
Root Schema : viewAggregate
Type: object
Show Source
Nested Schema : summaryNumber
Type: object
Show Source
  • average: integer(int64)
  • count: integer(int64)
  • max: integer(int64)
  • min: integer(int64)
  • sum: integer(int64)
Back to Top