Feature
This view displays the information about all OBServer nodes.
Fields
| Field | Type | Nullable | Description |
|---|---|---|---|
| SVR_IP | varchar(46) | NO | The IP address of the OBServer. |
| SVR_PORT | bigint(20) | NO | The port number of the OBServer. |
| ZONE | varchar(128) | NO | The name of the zone. |
| SQL_PORT | bigint(20) | NO | The SQL port number. |
| CPU_CAPACITY | bigint(20) | NO | The number of CPU cores for the observer process. |
| CPU_CAPACITY_MAX | double | NO | The maximum number of CPU cores for the observer process. It is subject to the resource_hard_limit parameter. Formula: CPU_CAPACITY_MAX = CPU_CAPACITY * resource_hard_limit. |
| CPU_ASSIGNED | double | NO | The number of allocated CPU cores for the OBServer node. It is the sum of the MIN_CPU values of all units on the OBServer node. Constraint: CPU_ASSIGNED <= CPU_CAPACITY. |
| CPU_ASSIGNED_MAX | double | NO | The maximum number of allocated CPU cores for the OBServer node. It is the sum of the MAX_CPU values of all units on the OBServer node. Constraint: CPU_ASSIGNED_MAX <= CPU_CAPACITY_MAX. |
| MEM_CAPACITY | bigint(20) | NO | The available memory size for the observer process. |
| MEM_ASSIGNED | bigint(20) | NO | The allocated memory size for the OBServer node. It is the sum of the MEMORY_SIZE values of all units on the OBServer node. Constraint: MEM_ASSIGNED <= MEM_CAPACITY. |
| LOG_DISK_CAPACITY | bigint(20) | NO | The total size of the log disk. |
| LOG_DISK_ASSIGNED | bigint(20) | NO | The allocated space size of the log disk. It is the sum of the MAX_DISK_SIZE values of all units on the OBServer node. |
| LOG_DISK_IN_USE | bigint(20) | NO | The used size of the log disk. |
| DATA_DISK_CAPACITY | bigint(20) | NO | The total size of the data disk. |
| DATA_DISK_IN_USE | bigint(20) | NO | The used size of the data disk. |
| DATA_DISK_HEALTH_STATUS | varchar(20) | NO | The health status of the data disk. NORMAL: The data disk is normal.WARNING: The data disk is abnormal.ERROR: An error occurred. |
| MEMORY_LIMIT | bigint(20) | NO | The available memory size for the observer process. |
| DATA_DISK_ABNORMAL_TIME | timestamp(6) | NO | The time when the last exception (WARNING) or error (ERROR) occurred on the data disk. |