Retrieve an existing Oracle GoldenGate Receiver Service Path Information

get

/services/{version}/targets/{path}/info

Required Role: User

Retrieve an existing Oracle GoldenGate Receiver Service Path Information

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Body ()
Root Schema : Oracle GoldenGate Distribution Path info
Type: object
Title: Oracle GoldenGate Distribution Path info
Show Source
  • Allowed Values: [ "ogg:distPathInfo" ]
  • Minimum Length: 1
    Maximum Length: 64
    Pattern: ^[A-Za-z0-9][A-Za-z0-9_:-]*$
    Encryption Profile
  • Minimum Value: 0
    Maximum Value: 4294967295
    Lag in seconds between the time when extract wrote a transaction in the trail file and the time when distsrvr processes this transaction.
  • lastStarted
    Time when the distpath was last started, if null it means that the distpath was never started and created with status 'stopped'.
  • Minimum Value: 1
    Maximum Value: 4294967295
    Process id of the distsrvr process.
  • Minimum Value: 0
    Maximum Value: 4294967295
    Time in seconds since the lag was reported.
  • Minimum Length: 1
    Maximum Length: 130
    Pattern: ^([^.*?"]{1,128}|["].{1,128}["])$
    Instance of the database from which the trail files are produced.
  • Minimum Length: 1
    Maximum Length: 130
    Pattern: ^([^.*?"]{1,128}|["].{1,128}["])$
    Name of the database from which the trail files are produced.
  • Minimum Length: 1
    Maximum Length: 8
    Pattern: ^[A-Z_$][A-Z0-9_$]*$
    Name of the producer of the trail files read by this distpath.
  • Minimum Value: 0
    Maximum Value: 9223372036854776000
    Thread id of the distpath thread.
Nested Schema : lastStarted
Time when the distpath was last started, if null it means that the distpath was never started and created with status 'stopped'.
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])$
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "href":"http://localhost:9002/services/v2/distpaths/moriapath1/info",
            "mediaType":"application/json",
            "rel":"canonical"
        },
        {
            "href":"http://localhost:9002/services/v2/distpaths/moriapath1/info",
            "mediaType":"application/schema+json",
            "rel":"describedby"
        }
    ],
    "messages":[
    ],
    "response":{
        "threadId":"140292288149248",
        "processId":"28934",
        "$schema":"ogg:distPathInfo",
        "sinceLagReported":"5",
        "sourceDatabaseInstance":"vlez1",
        "lastStarted":"2016-10-28T01:45:50.148Z",
        "sourceDatabaseName":"VLEZ1",
        "sourceExtractName":"EXT1",
        "lag":"0"
    }
}
Back to Top