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
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-rest-process-metrics-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ProcessMetrics",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "lag": {
      "type": "number"
    },
    "checkpointLag": {
      "type": "number"
    },
    "inputBytes": {
      "type": "integer"
    },
    "outputBytes": {
      "type": "integer"
    },
    "operationsProcessed": {
      "type": "integer"
    }
  }
}