Retrieve an existing Extract Database Statistics
get
/services/{version}/mpoints/{item}/statisticsExtract
Required Role: User
Retrieve an existing Extract Database StatisticsRequest
Path Parameters
-
item(required): string
Minimum Length:
1
Maximum Length:32
-
version(required): string
Oracle GoldenGate Service API version.
Allowed Values:[ "v2" ]
Response
Supported Media Types
- application/json
200 Response
Root Schema : Oracle GoldenGate Extract process statistics
Type:
object
Title:
Show Source
Oracle GoldenGate Extract process statistics
-
$schema:
Allowed Values:
[ "mpoints:statisticsExtract" ]
-
mappedTotalDeletes:
integer
Minimum Value:
0
Maximum Value:9223372036854776000
DELETE operations performed -
mappedTotalInserts:
integer
Minimum Value:
0
Maximum Value:9223372036854776000
INSERT operations performed -
mappedTotalTruncates:
integer
Minimum Value:
0
Maximum Value:9223372036854776000
TRUNCATE operations performed -
mappedTotalUnsupported:
integer
Minimum Value:
0
Maximum Value:9223372036854776000
UNSUPPORTED operations performed -
mappedTotalUpdates:
integer
Minimum Value:
0
Maximum Value:9223372036854776000
UPDATE operations performed -
mappedTotalUpserts:
integer
Minimum Value:
0
Maximum Value:9223372036854776000
UPSERT operations performed -
totalConversionErrors:
integer
Minimum Value:
0
Maximum Value:9223372036854776000
Number of character conversion errors -
totalConversionTruncates:
integer
Minimum Value:
0
Maximum Value:9223372036854776000
Number of character conversion truncations -
totalDiscards:
integer
Minimum Value:
0
Maximum Value:9223372036854776000
Number of operations discarded -
totalExecutedDdls:
integer
Minimum Value:
0
Maximum Value:9223372036854776000
DDL operations performed -
totalExecutedProcedures:
integer
Minimum Value:
0
Maximum Value:9223372036854776000
Procedures operations performed -
totalIgnores:
integer
Minimum Value:
0
Maximum Value:9223372036854776000
Number of errors ignored -
totalRowFetchAttempts:
integer
Minimum Value:
0
Maximum Value:9223372036854776000
Attempts to fetch from DBMS -
totalRowFetchFailures:
integer
Minimum Value:
0
Maximum Value:9223372036854776000
Failed fetch attempts
Example Response (application/json)
{
"$schema":"api:standardResponse",
"response":{
"totalIgnores":"0",
"totalDiscards":"0",
"mappedTotalInserts":"0",
"totalConversionErrors":"0",
"$schema":"mpoints:statisticsExtract",
"totalConversionTruncates":"0",
"totalExecutedDdls":"0",
"mappedTotalDeletes":"0",
"totalRowFetchAttempts":"0",
"totalRowFetchFailures":"0",
"mappedTotalTruncates":"0",
"mappedTotalUpdates":"0"
},
"messages":[
],
"links":[
]
}