Apache ServiceMix · Schema
Route
Apache Camel route
Enterprise IntegrationESBIntegrationMessagingOSGiApacheOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Route identifier |
| description | string | Route description |
| status | string | Route status |
| uptime | string | Route uptime |
| exchangesTotal | integer | Total exchanges processed |
| exchangesFailed | integer | Failed exchanges count |
| meanProcessingTime | integer | Mean processing time in milliseconds |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/apache-servicemix/refs/heads/main/json-schema/apache-servicemix-route-schema.json",
"title": "Route",
"description": "Apache Camel route",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Route identifier"
},
"description": {
"type": "string",
"description": "Route description"
},
"status": {
"type": "string",
"enum": [
"Started",
"Stopped",
"Suspended"
],
"description": "Route status"
},
"uptime": {
"type": "string",
"description": "Route uptime"
},
"exchangesTotal": {
"type": "integer",
"format": "int64",
"description": "Total exchanges processed"
},
"exchangesFailed": {
"type": "integer",
"format": "int64",
"description": "Failed exchanges count"
},
"meanProcessingTime": {
"type": "integer",
"description": "Mean processing time in milliseconds"
}
}
}