Retrieve an existing Process Information

get

/services/{version}/mpoints/processes

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 processes
Type: object
Title: Oracle GoldenGate Monitoring point data for registered OGG processes
Show Source
Nested Schema : processes
Type: array
Minimum Number of Items: 0
Maximum Number of Items: 2147483647
Show Source
Nested Schema : items
Type: object
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/processes",
            "mediaType":"application/json",
            "rel":"canonical"
        },
        {
            "href":"http://localhost:17004/services/v2/mpoints/processes",
            "mediaType":"application/json",
            "rel":"self"
        },
        {
            "href":"http://localhost:17004/services/v2/metadata-catalog/processes",
            "mediaType":"application/schema+json",
            "rel":"describedby"
        }
    ],
    "messages":[
    ],
    "response":{
        "$schema":"mpoints:processes",
        "processes":[
            {
                "processName":"ADMINSRVR",
                "lastMessage":"0",
                "firstMessage":"0",
                "processId":"25256",
                "lastHeartbeat":"2019-03-03T15:42:11.821Z",
                "processType":"AdminServer",
                "startTime":"2019-03-03T15:41:39.787Z",
                "portNumber":"17001",
                "stateTime":"2019-03-03T15:41:39.787Z",
                "processMode":"Not Applicable",
                "processState":"Running"
            },
            {
                "processName":"DISTSRVR",
                "lastMessage":"0",
                "firstMessage":"0",
                "processId":"655",
                "lastHeartbeat":"2019-03-03T15:42:14.475Z",
                "processType":"DistServer",
                "startTime":"2019-03-02T14:51:55.993Z",
                "portNumber":"17002",
                "stateTime":"2019-03-02T14:51:55.995Z",
                "processMode":"Not Applicable",
                "processState":"Running"
            },
            {
                "processName":"EXT1",
                "lastMessage":"0",
                "firstMessage":"0",
                "processId":"24335",
                "lastHeartbeat":"2019-03-03T15:42:13.474Z",
                "processType":"Extract",
                "startTime":"2019-03-03T14:58:43.291Z",
                "stateTime":"2019-03-03T14:59:02.102Z",
                "processMode":"Integrated",
                "processState":"Running"
            },
            {
                "processName":"PMSRVR",
                "lastMessage":"0",
                "firstMessage":"0",
                "processId":"25157",
                "lastHeartbeat":"2019-03-03T15:42:13.455Z",
                "processType":"PMServer",
                "startTime":"2019-03-03T15:38:13.819Z",
                "portNumber":"17004",
                "stateTime":"2019-03-03T15:38:13.820Z",
                "processMode":"Not Applicable",
                "processState":"Running"
            },
            {
                "processName":"RECVSRVR",
                "lastMessage":"0",
                "firstMessage":"0",
                "processId":"657",
                "lastHeartbeat":"2019-03-03T15:42:11.915Z",
                "processType":"RecvServer",
                "startTime":"2019-03-02T14:51:56.022Z",
                "portNumber":"17003",
                "stateTime":"2019-03-02T14:51:56.023Z",
                "processMode":"Not Applicable",
                "processState":"Running"
            }
        ]
    }
}
Back to Top