Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| origins | array | |
| pool | object | |
| timestamp | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/load-balancing_analytics",
"title": "load-balancing_analytics",
"properties": {
"id": {
"default": 1,
"type": "integer"
},
"origins": {
"example": [
{
"address": "198.51.100.4",
"changed": true,
"enabled": true,
"failure_reason": "No failures",
"healthy": true,
"ip": "198.51.100.4",
"name": "some-origin"
}
],
"items": {
"$ref": "#/components/schemas/load-balancing_origin-analytics"
},
"type": "array"
},
"pool": {
"example": {
"changed": true,
"healthy": true,
"id": "74bc6a8b9b0dda3d651707a2928bad0c",
"minimum_origins": 1,
"name": "some-pool"
},
"type": "object"
},
"timestamp": {
"example": "2014-01-01T05:20:00.12345Z",
"format": "date-time",
"type": "string"
}
},
"type": "object"
}