Retrieve an existing Receiver Service Statistics

get

/services/{version}/mpoints/{item}/recvsrvrStats

Required Role: User

Retrieve an existing Receiver Service Statistics

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Body ()
Root Schema : Oracle GoldenGate Receiver Server Statistics
Type: object
Title: Oracle GoldenGate Receiver Server Statistics
Show Source
Nested Schema : recvsrvrStats
Type: array
Minimum Number of Items: 0
Maximum Number of Items: 2147483647
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : lastCommandTimestamp
Timestamp of the Last Command Received
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 : lastDataTimestamp
Timestamp of the Last Data Received
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 : lastStarted
Timestamp of the last time started.
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",
    "response":{
        "$schema":"mpoints:recvsrvrStats",
        "recvsrvrStats":[
            {
                "totalMessagesSent":"4",
                "totalSends":"1000",
                "lastCommandReceived":"Send",
                "lastFileReceived":"opt/ogg/trail01",
                "flushSizeThreshold":"1024",
                "targetFileName":"opt/ogg/trail01",
                "sendBufferSize":"4096",
                "localUri":"//file:mysys/opt/ogg/trail01",
                "lastDataTimestamp":"2015-06-05T13:22:18.034456Z",
                "totalReceives":"200",
                "messageBufferSize":"4096",
                "totalBytesReceived":"443987",
                "flushTimeThreshold":"5000",
                "totalBytesWritten":"12345",
                "sourceUri":"//file:mysys/opt/ogg/trail01",
                "totalSendWaitTime":"234567",
                "receiveBufferSize":"4096",
                "totalMessagesReceived":"5",
                "totalReceiveWaitTime":"778787",
                "lastCommandTimestamp":"2015-06-05T13:22:18.034456Z",
                "totalCommands":"1002",
                "pathName":"server1",
                "totalBytesSent":"3276712"
            },
            {
                "totalMessagesSent":"4",
                "totalSends":"1000",
                "lastCommandReceived":"Send",
                "lastFileReceived":"opt/ogg/trail02",
                "flushSizeThreshold":"1024",
                "targetFileName":"opt/ogg/trail02",
                "sendBufferSize":"4096",
                "localUri":"//file:mysys/opt/ogg/trail02",
                "lastDataTimestamp":"2015-06-05T13:22:18.034456Z",
                "totalReceives":"200",
                "messageBufferSize":"4096",
                "totalBytesReceived":"443987",
                "flushTimeThreshold":"5000",
                "totalBytesWritten":"12345",
                "sourceUri":"//file:mysys/opt/ogg/trail02",
                "totalSendWaitTime":"234567",
                "receiveBufferSize":"4096",
                "totalMessagesReceived":"5",
                "totalReceiveWaitTime":"778787",
                "lastCommandTimestamp":"2015-06-05T13:22:18.034456Z",
                "totalCommands":"1002",
                "pathName":"server2",
                "totalBytesSent":"3276712"
            }
        ]
    },
    "messages":[
    ],
    "links":[
    ]
}
Back to Top