Retrieve an existing Process Information
get
/services/{version}/mpoints/{item}/process
Required Role: User
Retrieve an existing Process InformationRequest
Path Parameters
-
item(required): string
Minimum Length:
1
Maximum Length:32
-
version(required): string
Oracle GoldenGate Service API version.
Allowed Values:[ "v2" ]
Response
Supported Media Types
- application/json
200 Response
Root Schema : Oracle GoldenGate Monitoring point data for registered OGG process
Type:
object
Title:
Show Source
Oracle GoldenGate Monitoring point data for registered OGG process
-
$schema:
Allowed Values:
[ "mpoints:process" ]
-
firstMessage(required):
integer
Minimum Value:
0
Maximum Value:4294967295
The identifier of the first message issued by the process with the processId -
lastHeartbeat(required):
lastHeartbeat
Time of the Last Heartbeat
-
lastMessage(required):
integer
Minimum Value:
0
Maximum Value:4294967295
The identifier of the last message issued by the process with the processId -
portNumber:
integer
Minimum Value:
1
Maximum Value:65535
The TCP/IP port the process listens on -
processId:
integer
Minimum Value:
1
Maximum Value:4294967295
The operating system process id -
processMode(required):
Allowed Values:
[ "Unknown", "Classic", "Integrated", "Coordinated", "Parallel", "ParallelApplier", "ParallelMapper", "Not Applicable" ]
The Process Mode -
processName(required):
string
Minimum Length:
1
Maximum Length:16
The process name -
processState(required):
Allowed Values:
[ "Registered", "Starting", "Running", "Stopping", "StoppingForced", "Stopped", "StoppedForced", "Abend", "Killed", "NotResponsive" ]
The Process State -
processType(required):
Allowed Values:
[ "Unknown", "Manager", "Extract", "Replicat", "Pump", "Server", "GGSCI", "GGCMD", "DEFGEN", "EMSCLNT", "AdminServer", "AdminClient", "DistServer", "RecvServer", "PMServer", "ServiceManager" ]
The Process Type -
startTime(required):
startTime
Process Start Time
-
stateTime(required):
stateTime
Time of the Last State Change
Example Response (application/json)
{
"$schema":"api:standardResponse",
"links":[
{
"href":"http://localhost:17004/services/v2/mpoints/ADMINSRVR/process",
"mediaType":"application/json",
"rel":"canonical"
},
{
"href":"http://localhost:17004/services/v2/mpoints/ADMINSRVR/process",
"mediaType":"application/json",
"rel":"self"
},
{
"href":"http://localhost:17004/services/v2/metadata-catalog/process",
"mediaType":"application/schema+json",
"rel":"describedby"
}
],
"messages":[
],
"response":{
"processName":"ADMINSRVR",
"lastMessage":"0",
"firstMessage":"0",
"processId":"25256",
"lastHeartbeat":"2019-03-03T15:42:07.821Z",
"processType":"AdminServer",
"$schema":"mpoints:process",
"startTime":"2019-03-03T15:41:39.787Z",
"portNumber":"17001",
"stateTime":"2019-03-03T15:41:39.787Z",
"processMode":"Not Applicable",
"processState":"Running"
}
}