Retrieve Heartbeat Table

get

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

Retrieve details of the heartbeat table for a database connection.

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.

  • Oracle GoldenGate Service API version.

    Allowed Values: [ "v2" ]
Back to Top

Response

Supported Media Types

200 Response

Heartbeat table details retrieved.

Body ()
Root Schema : Oracle GoldenGate Heartbeat Table
Type: object
Title: Oracle GoldenGate Heartbeat Table
Show Source
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "href":"http://localhost:11001/services/v2/connections/OracleGoldenGate.oggadmin/tables/heartbeat",
            "mediaType":"application/json",
            "rel":"canonical"
        },
        {
            "href":"http://localhost:11001/services/v2/connections/OracleGoldenGate.oggadmin/tables/heartbeat",
            "mediaType":"application/json",
            "rel":"self"
        },
        {
            "href":"http://localhost:11001/services/v2/metadata-catalog/heartbeat",
            "mediaType":"application/schema+json",
            "rel":"describedby"
        }
    ],
    "messages":[
        {
            "$schema":"ogg:message",
            "code":"OGG-08100",
            "issued":"2019-03-15T14:40:45Z",
            "severity":"INFO",
            "title":"HEARTBEAT table oggadmin.gg_heartbeat exists.",
            "type":"http://docs.oracle.com/goldengate/c1910/gg-winux/GMESG/oggus.htm#OGG-08100"
        },
        {
            "$schema":"ogg:message",
            "code":"OGG-08100",
            "issued":"2019-03-15T14:40:45Z",
            "severity":"INFO",
            "title":"HEARTBEAT table oggadmin.gg_heartbeat_seed exists.",
            "type":"http://docs.oracle.com/goldengate/c1910/gg-winux/GMESG/oggus.htm#OGG-08100"
        },
        {
            "$schema":"ogg:message",
            "code":"OGG-08100",
            "issued":"2019-03-15T14:40:45Z",
            "severity":"INFO",
            "title":"HEARTBEAT table oggadmin.gg_heartbeat_history exists.",
            "type":"http://docs.oracle.com/goldengate/c1910/gg-winux/GMESG/oggus.htm#OGG-08100"
        },
        {
            "$schema":"ogg:message",
            "code":"OGG-08100",
            "issued":"2019-03-15T14:40:45Z",
            "severity":"INFO",
            "title":"HEARTBEAT table oggadmin.gg_heartbeat supplemental logging ENABLED.",
            "type":"http://docs.oracle.com/goldengate/c1910/gg-winux/GMESG/oggus.htm#OGG-08100"
        },
        {
            "$schema":"ogg:message",
            "code":"OGG-08100",
            "issued":"2019-03-15T14:40:45Z",
            "severity":"INFO",
            "title":"HEARTBEAT table oggadmin.gg_heartbeat_seed supplemental logging ENABLED.",
            "type":"http://docs.oracle.com/goldengate/c1910/gg-winux/GMESG/oggus.htm#OGG-08100"
        },
        {
            "$schema":"ogg:message",
            "code":"OGG-08100",
            "issued":"2019-03-15T14:40:45Z",
            "severity":"INFO",
            "title":"HEARTBEAT table oggadmin.gg_heartbeat_history partitioning DISABLED.",
            "type":"http://docs.oracle.com/goldengate/c1910/gg-winux/GMESG/oggus.htm#OGG-08100"
        },
        {
            "$schema":"ogg:message",
            "code":"OGG-08100",
            "issued":"2019-03-15T14:40:45Z",
            "severity":"INFO",
            "title":"Frequency interval: 60 seconds.",
            "type":"http://docs.oracle.com/goldengate/c1910/gg-winux/GMESG/oggus.htm#OGG-08100"
        },
        {
            "$schema":"ogg:message",
            "code":"OGG-08100",
            "issued":"2019-03-15T14:40:45Z",
            "severity":"INFO",
            "title":"Purge frequency interval: 2 days.",
            "type":"http://docs.oracle.com/goldengate/c1910/gg-winux/GMESG/oggus.htm#OGG-08100"
        },
        {
            "$schema":"ogg:message",
            "code":"OGG-08100",
            "issued":"2019-03-15T14:40:45Z",
            "severity":"INFO",
            "title":"Retention time: 30 days.",
            "type":"http://docs.oracle.com/goldengate/c1910/gg-winux/GMESG/oggus.htm#OGG-08100"
        }
    ],
    "response":{
        "$schema":"ogg:tablesHeartbeat",
        "addTrandata":true,
        "frequency":60,
        "partitioned":false,
        "purgeFrequency":2,
        "retentionTime":30,
        "targetOnly":false,
        "trackingExtractRestart":true
    }
}
Back to Top