Retrieve an existing Distribution Service Path Statistics

get

/services/{version}/mpoints/{item}/distsrvrPathStats

Required Role: User

Retrieve an existing Distribution Service Path Statistics

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Body ()
Root Schema : Oracle GoldenGate Distribution Server Path statistics
Type: object
Title: Oracle GoldenGate Distribution Server Path statistics
Show Source
Nested Schema : statistics
Type: array
Minimum Number of Items: 0
Maximum Number of Items: 2147483647
Show Source
Nested Schema : items
Type: object
Show Source
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:distsrvrPathStats",
        "statistics":[
            {
                "totalInserts":10,
                "totalOthers":2,
                "name":"PROD.PATH.1",
                "totalDeletes":30,
                "lcrsReceived":96,
                "totalDDLs":0,
                "totalProcedures":0,
                "totalUpdates":20,
                "lcrsSent":10
            },
            {
                "totalInserts":5,
                "totalOthers":1,
                "name":"PROD.PATH.2",
                "totalDeletes":0,
                "lcrsReceived":43,
                "totalDDLs":0,
                "totalProcedures":0,
                "totalUpdates":2,
                "lcrsSent":15
            }
        ]
    },
    "messages":[
    ],
    "links":[
    ]
}
Back to Top