Apache SeaTunnel · Schema

JobMetrics

Runtime metrics for a SeaTunnel job

Data IntegrationETLELTBatchStreamingApacheOpen Source

Properties

Name Type Description
sourceReceivedCount integer Total records read from source
sinkWriteCount integer Total records written to sink
sourceReceivedQPS number Records per second from source
sinkWriteQPS number Records per second to sink
View JSON Schema on GitHub

JSON Schema

apache-seatunnel-job-metrics-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-seatunnel/refs/heads/main/json-schema/apache-seatunnel-job-metrics-schema.json",
  "title": "JobMetrics",
  "description": "Runtime metrics for a SeaTunnel job",
  "type": "object",
  "properties": {
    "sourceReceivedCount": {
      "type": "integer",
      "format": "int64",
      "description": "Total records read from source"
    },
    "sinkWriteCount": {
      "type": "integer",
      "format": "int64",
      "description": "Total records written to sink"
    },
    "sourceReceivedQPS": {
      "type": "number",
      "description": "Records per second from source"
    },
    "sinkWriteQPS": {
      "type": "number",
      "description": "Records per second to sink"
    }
  }
}