Retrieve Status

get

/services/{version}/replicats/{replicat}/info/status

Required Role: User

Retrieve the current status of the replicat process.

Request

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

    The name of the replicat. Replicat names are upper case, begin with an alphabetic character followed by up to seven alpha-numeric characters.

  • Oracle GoldenGate Service API version.

    Allowed Values: [ "v2" ]
Back to Top

Response

Supported Media Types

200 Response

Process status retrieved successfully.

Body ()
Root Schema : Replicat process status
Type: object
Title: Replicat process status
Show Source
Nested Schema : lastStarted
Match One
Show Source
  • Minimum Length: 20
    Maximum Length: 32
    Pattern: ^[0-9]{4}[-](0[1-9]|1[0-2])[-](0[1-9]|[12][0-9]|3[01])[tT ]([01][0-9]|2[0-3]):[0-5][0-9]:([0-5][0-9]|60)([.][0-9]{1,6})?([zZ]|[+-][0-9][0-9]:[0-5][0-9])$
Nested Schema : position
Match One
Show Source
Nested Schema : position-x-oneOf[0]
Type: object
Show Source
Nested Schema : position-x-oneOf[1]
Type: object
Show Source
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "href":"http://localhost:9012/services/v2/replicats/REPS/info/status",
            "mediaType":"application/json",
            "rel":"canonical"
        },
        {
            "href":"http://localhost:9012/services/v2/replicats/REPS/info/status",
            "mediaType":"application/json",
            "rel":"self"
        },
        {
            "href":"http://localhost:9012/services/v2/metadata-catalog/replicatStatus",
            "mediaType":"application/schema+json",
            "rel":"describedby"
        }
    ],
    "messages":[
    ],
    "response":{
        "$schema":"ogg:replicatStatus",
        "lag":"0",
        "lastStarted":"2024-04-03T22:35:31.674Z",
        "position":{
            "name":"ea",
            "offset":"0",
            "path":"/u02/Deployment/var/lib/data/ggnorth/",
            "sequence":"0"
        },
        "processId":"787",
        "sinceLagReported":"0",
        "status":"running"
    }
}
Back to Top