Retrieve Process Heartbeat Records

get

/services/{version}/connections/{connection}/tables/heartbeat/{process}

Retrieve heartbeat table entries for an extract or replicat group.

Request

Path Parameters
  • Minimum Length: 1
    Maximum Length: 61
    Pattern: ^[a-zA-Z][a-zA-Z0-9_#$]{1,29}([.][a-zA-Z][a-zA-Z0-9_#$]{1,29})?$

    Connection name. For each alias in the credential store, a connection with the name 'domain.alias' exists.

  • Minimum Length: 1
    Maximum Length: 8
    Pattern: ^[A-Z_$][A-Z0-9_$]*$

    The name of the extract or replicat process.

  • Oracle GoldenGate Service API version.

    Allowed Values: [ "v2" ]
Back to Top

Response

Supported Media Types

200 Response

Heartbeat table entries retrieved successfully.

Body ()
Root Schema : Oracle GoldenGate Process Heartbeat Details
Type: object
Title: Oracle GoldenGate Process Heartbeat Details
Show Source
Nested Schema : heartbeats
Type: array
Minimum Number of Items: 0
Maximum Number of Items: 1024
Heartbeat details
Show Source
Nested Schema : items
Type: object
Show Source
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "href":"http://localhost:11001/services/v2/connections/OracleGoldenGate.oggadmin/tables/heartbeat/EXT2",
            "mediaType":"application/json",
            "rel":"canonical"
        },
        {
            "href":"http://localhost:11001/services/v2/connections/OracleGoldenGate.oggadmin/tables/heartbeat/EXT2",
            "mediaType":"application/json",
            "rel":"self"
        },
        {
            "href":"http://localhost:11001/services/v2/metadata-catalog/process",
            "mediaType":"application/schema+json",
            "rel":"describedby"
        }
    ],
    "messages":[
    ],
    "response":{
        "$schema":"ogg:processHeartbeat",
        "heartbeats":[
            {
                "ageSeconds":97.78,
                "lagSeconds":53,
                "path":"EXT2 ==> REP2",
                "source":"ORCL",
                "target":"ORCL"
            }
        ]
    }
}
Back to Top