ApiHive3ReplicationMetricsResultRow Data Model

Properties
name data type description
scheduledExecutionId number
policy string
dumpExecutionId number
metadata ApiHive3ReplicationMetricsMetadata
progress ApiHive3ReplicationMetricsProgress
startDate string
endDate string
errorMessage string

Example

{
  "scheduledExecutionId" : 12345,
  "policy" : "...",
  "dumpExecutionId" : 12345,
  "metadata" : {
    "dbName" : "...",
    "replicationType" : "INCREMENTAL",
    "stagingDir" : "...",
    "lastReplId" : 12345
  },
  "progress" : {
    "status" : "IN_PROGRESS",
    "stages" : [ {
      "name" : "...",
      "status" : "IN_PROGRESS",
      "startDate" : "...",
      "endDate" : "...",
      "metrics" : [ { }, { } ],
      "errorLogPath" : "..."
    }, {
      "name" : "...",
      "status" : "SUCCESS",
      "startDate" : "...",
      "endDate" : "...",
      "metrics" : [ { }, { } ],
      "errorLogPath" : "..."
    } ]
  },
  "startDate" : "...",
  "endDate" : "...",
  "errorMessage" : "..."
}