Retrieve an existing Process Information

get

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

Required Role: User

Retrieve an existing Process Information

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
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