This table contains the static resource data as sampled from the host. The resource type is "host" and the resource name is the name of the host. The default sampling time is 1 hour.
Column Name |
Data Type |
Nullable (Y/N) |
Key (PK/FK) |
Description |
CLUSTER_NAME |
VARCHAR2(128) |
N |
PK |
This is the cluster name. |
TIME_STAMP |
TIMESTAMP(6) |
N |
|
The record sample time in the local cluster time zone. |
TIME_STAMP_GMT |
NUMBER(13) |
N |
PK |
The record sample time in the GMT time. This is the number of seconds from midnight, 1 January, 1970. |
RESOURCE_NAME |
VARCHAR2(128) |
N |
PK |
The resource name. For resource_type="host", this is the name of the host. |
RESOURCE_TYPE |
VARCHAR2(128) |
N |
PK |
The resource type. This table only logs host-related static resource attributes. Therefore, this field is always "host". |
ATTRIBUTE_NAME |
VARCHAR2(256) |
N |
PK |
The static attributes:
- Host Model. This is stored in attribute_value_str.
- Host Type. This is stored in attribute_value_str.
- CPU factor. This is stored in attribute_value_num.
- Number of CPUs. This is stored in attribute_value_num.
- Name of a Boolean Resource. Stored "TRUE" as attribute_value_str.
|
ATTRIBUTE_TYPE |
VARCHAR2(128) |
N |
|
The attribute value data type: "String", "Boolean", or "Numeric". |
ATTRIBUTE_VALUE_STR |
VARCHAR2(128) |
Y |
|
The attribute value converted into a string (Host Model, Host Type and Name of a Boolean Resource). Numeric data types are not converted. |
ATTRIBUTE_VALUE_NUM |
NUMBER(14,4) |
Y |
|
The numeric attribute value (CPU factor and Number of CPUs). |
INSERT_SEQ |
NUMBER(15) |
Y |
|
The order of sequence in which this record is inserted into the table. This field is auto-incremented whenever a new record is inserted into the table. |