Oracle GoldenGate · Schema

PathStatistics

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
name string
bytesProcessed integer
messagesProcessed integer
lag string
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-pathstatistics-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PathStatistics",
  "title": "PathStatistics",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "bytesProcessed": {
      "type": "integer",
      "format": "int64",
      "example": 10
    },
    "messagesProcessed": {
      "type": "integer",
      "format": "int64",
      "example": 10
    },
    "lag": {
      "type": "string",
      "example": "example_value"
    }
  }
}