Retrieve an existing Process Information

get

/services/{version}/mpoints/{item}/process

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Body ()
Root Schema : Oracle GoldenGate Monitoring point data for registered OGG process
Type: object
Title: Oracle GoldenGate Monitoring point data for registered OGG process
Show Source
  • Allowed Values: [ "mpoints:process" ]
  • Minimum Value: 0
    Maximum Value: 4.294967295E9
    The identifier of the first message issued by the process with the processId
  • lastHeartbeat
    Time of the Last Heartbeat
  • Minimum Value: 0
    Maximum Value: 4.294967295E9
    The identifier of the last message issued by the process with the processId
  • Minimum Value: 1
    Maximum Value: 65535
    The TCP/IP port the process listens on
  • Minimum Value: 1
    Maximum Value: 4.294967295E9
    The operating system process id
  • Allowed Values: [ "Unknown", "Classic", "Integrated", "Coordinated", "Parallel", "ParallelApplier", "ParallelMapper", "Not Applicable" ]
    The Process Mode
  • Minimum Length: 1
    Maximum Length: 16
    The process name
  • Allowed Values: [ "Registered", "Starting", "Running", "Stopping", "StoppingForced", "Stopped", "StoppedForced", "Abend", "Killed", "NotResponsive" ]
    The Process State
  • Allowed Values: [ "Unknown", "Manager", "Extract", "Replicat", "Pump", "Server", "GGSCI", "GGCMD", "DEFGEN", "EMSCLNT", "AdminServer", "AdminClient", "DistServer", "RecvServer", "PMServer", "ServiceManager" ]
    The Process Type
  • startTime
    Process Start Time
  • stateTime
    Time of the Last State Change
Nested Schema : lastHeartbeat
Time of the Last Heartbeat
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 : startTime
Process Start Time
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 : stateTime
Time of the Last State Change
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: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"
    }
}
Back to Top