SolarWinds · Schema
Check
Application MonitoringDatabase MonitoringInfrastructureIP Address ManagementIT ManagementITSMLog ManagementNetwork MonitoringObservability
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique check identifier |
| name | string | Check name |
| type | string | Check type |
| hostname | string | Target hostname |
| status | string | Current check status |
| resolution | integer | Check interval in minutes |
| lastresponsetime | integer | Last response time in milliseconds |
| lasttesttime | integer | Last test timestamp (Unix) |
| created | integer | Creation timestamp (Unix) |
| tags | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Check",
"title": "Check",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Unique check identifier",
"example": "abc123"
},
"name": {
"type": "string",
"description": "Check name",
"example": "Example Title"
},
"type": {
"type": "string",
"description": "Check type",
"enum": [
"http",
"httpcustom",
"tcp",
"ping",
"dns",
"udp",
"smtp",
"pop3",
"imap"
],
"example": "http"
},
"hostname": {
"type": "string",
"description": "Target hostname",
"example": "example_value"
},
"status": {
"type": "string",
"description": "Current check status",
"enum": [
"up",
"down",
"unconfirmed_down",
"unknown",
"paused"
],
"example": "up"
},
"resolution": {
"type": "integer",
"description": "Check interval in minutes",
"example": 10
},
"lastresponsetime": {
"type": "integer",
"description": "Last response time in milliseconds",
"example": 10
},
"lasttesttime": {
"type": "integer",
"description": "Last test timestamp (Unix)",
"example": 10
},
"created": {
"type": "integer",
"description": "Creation timestamp (Unix)",
"example": 10
},
"tags": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"count": {
"type": "integer"
}
}
},
"example": []
}
}
}