Oracle GoldenGate · Schema
ProcessMetrics
CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication
Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| type | string | |
| status | string | |
| lag | number | |
| checkpointLag | number | |
| inputBytes | integer | |
| outputBytes | integer | |
| operationsProcessed | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ProcessMetrics",
"title": "ProcessMetrics",
"type": "object",
"properties": {
"name": {
"type": "string",
"example": "Example Title"
},
"type": {
"type": "string",
"example": "example_value"
},
"status": {
"type": "string",
"example": "example_value"
},
"lag": {
"type": "number",
"example": 42.5
},
"checkpointLag": {
"type": "number",
"example": 42.5
},
"inputBytes": {
"type": "integer",
"format": "int64",
"example": 10
},
"outputBytes": {
"type": "integer",
"format": "int64",
"example": 10
},
"operationsProcessed": {
"type": "integer",
"format": "int64",
"example": 10
}
}
}