Retrieve an existing Oracle GoldenGate Distribution Path Information
get
/services/{version}/sources/{distpath}/info
Required Role: User
Retrieve an existing Oracle GoldenGate Distribution Path InformationRequest
Path Parameters
-
distpath(required): string
Minimum Length:
1Maximum Length:32Pattern:^[A-Za-z][A-Za-z0-9-_.]*$ -
version(required): string
Oracle GoldenGate Service API version.
Allowed Values:[ "v2" ]
Response
Supported Media Types
- application/json
200 Response
Root Schema : Oracle GoldenGate Distribution Path info
Type:
objectTitle:
Show Source
Oracle GoldenGate Distribution Path info-
$schema:
Allowed Values:
[ "ogg:distPathInfo" ] -
encryptionProfile:
string
Minimum Length:
1Maximum Length:64Pattern:^[A-Za-z0-9][A-Za-z0-9_:-]*$Encryption Profile -
lag:
integer
Minimum Value:
0Maximum Value:4294967295Lag in seconds between the time when extract wrote a transaction in the trail file and the time when distsrvr processes this transaction. -
lastStarted(required):
lastStarted
Time when the distpath was last started, if null it means that the distpath was never started and created with status 'stopped'.
-
processId(required):
integer
Minimum Value:
1Maximum Value:4294967295Process id of the distsrvr process. -
sinceLagReported:
integer
Minimum Value:
0Maximum Value:4294967295Time in seconds since the lag was reported. -
sourceDatabaseInstance:
string
Minimum Length:
1Maximum Length:130Pattern:^([^.*?"]{1,128}|["].{1,128}["])$Instance of the database from which the trail files are produced. -
sourceDatabaseName:
string
Minimum Length:
1Maximum Length:130Pattern:^([^.*?"]{1,128}|["].{1,128}["])$Name of the database from which the trail files are produced. -
sourceExtractName:
string
Minimum Length:
1Maximum Length:8Pattern:^[A-Z_$][A-Z0-9_$]*$Name of the producer of the trail files read by this distpath. -
threadId(required):
integer
Minimum Value:
0Maximum Value:9223372036854776000Thread 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
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"
}
}