Retrieve an existing Heartbeat timings

get

/services/{version}/mpoints/{item}/heartbeat

Required Role: User

Retrieve an existing Heartbeat timings

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Body ()
Root Schema : Oracle GoldenGate Heartbeat Timings
Type: object
Title: Oracle GoldenGate Heartbeat Timings
Show Source
Nested Schema : heartbeats
Type: array
Minimum Number of Items: 0
Maximum Number of Items: 2147483647
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : heartbeatName
Extract, Replicat or Path name
Match Any
Show Source
  • Minimum Length: 1
    Maximum Length: 8
    Pattern: ^[A-Z_$][A-Z0-9_$]*$
  • Minimum Length: 1
    Maximum Length: 4096
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "rel":"canonical",
            "href":"http://localhost:9103/services/v2/mpoints/DISTSRVR/heartbeat",
            "mediaType":"application/json"
        },
        {
            "rel":"self",
            "href":"http://localhost:9103/services/v2/mpoints/DISTSRVR/heartbeat",
            "mediaType":"application/json"
        },
        {
            "rel":"describedby",
            "href":"http://localhost:9103/services/v2/metadata-catalog/heartbeat",
            "mediaType":"application/schema+json"
        }
    ],
    "messages":[
    ],
    "response":{
        "heartbeats":[
            {
                "heartbeatName":"pathE1toR2",
                "heartbeatLag":"3175",
                "heartbeatAge":"25023"
            },
            {
                "heartbeatName":"pathE1toR1",
                "heartbeatLag":"3190",
                "heartbeatAge":"25023"
            }
        ],
        "$schema":"mpoints:heartbeat"
    }
}
Back to Top