Apache SeaTunnel · Schema
SystemInfo
SeaTunnel system monitoring information
Data IntegrationETLELTBatchStreamingApacheOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| processors | integer | Number of CPU processors |
| physicalMemory | integer | Total physical memory in bytes |
| freePhysicalMemory | integer | Free physical memory in bytes |
| totalHeapMemory | integer | |
| freeHeapMemory | integer | |
| usedHeapMemory | integer |
JSON Schema
{
"$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-system-info-schema.json",
"title": "SystemInfo",
"description": "SeaTunnel system monitoring information",
"type": "object",
"properties": {
"processors": {
"type": "integer",
"description": "Number of CPU processors"
},
"physicalMemory": {
"type": "integer",
"format": "int64",
"description": "Total physical memory in bytes"
},
"freePhysicalMemory": {
"type": "integer",
"format": "int64",
"description": "Free physical memory in bytes"
},
"totalHeapMemory": {
"type": "integer",
"format": "int64"
},
"freeHeapMemory": {
"type": "integer",
"format": "int64"
},
"usedHeapMemory": {
"type": "integer",
"format": "int64"
}
}
}