Tivoli Enterprise Console event mapping

Generic event mapping provides useful event class and attribute information for situations that do not have specific event mapping defined. Each event class corresponds to an attribute group in the monitoring agent. For a description of the event slots for each event class, see the tables described in this appendix. For more information about mapping attribute groups to event classes, see the Tivoli Enterprise Console product documentation.

Configuring the Tivoli Enterprise Console

To configure the Tivoli Enterprise Console, complete the following procedure:
  1. Ensure sure that the TEC IF is configured to point to the correct Tivoli Enterprise Console server with the correct host port information.
  2. Install the om_tec.baroc and kt<n>.baroc files into a rule base for Tivoli Enterprise Console and activate it.
    Note: When you install Tivoli Enterprise Monitoring Server support, the installation places the baroc files into one of the following directories, depending on your operating system:
    • On Windows systems: %CANDLE_HOME%\CMS\teclib
    • On UNIX systems: $CANDLE_HOME/tables/TEMS_NAME/TECLIB
    The following ktn.baroc files are available:
    • kt3.baroc, for the Application Management Console event classes.
    • kt5.baroc, for the Web Response Time event classes.
    • kt6.baroc, for the Robotic Response Time event classes.
  3. In this same directory, edit the tecserver.txt file to add the situations for which you want to see events, using the following format:
    SituationName=*,SEVERITY=CRITICAL|WARNING|UNKNOWN
  4. Restart the Tivoli Enterprise Monitoring Server.

Specifying attributes to include in events

Event data forwarded to Tivoli Enterprise Console is defined by the content of the following two file types in the Tivoli Enterprise Monitoring Server file system:
  • Baroc files
  • Event Mapping files
Baroc files, sometimes referred to as event class definition files, define different types of classes of events that an event server can receive. Event class definitions are generally structured as shown in the following example (keyword syntax is in upper case):
TEC_CLASS: class_name ISA super_class_name
DEFINES {
attribute_definitions;
};
END
The syntax for baroc files is case sensitive. The baroc files supplied with the various ITCAM for Transactions agents have attribute_definitions comprising an attribute name and data type. The following data types are used in these baroc files:
  • STRING - A string value
  • REAL - A real value
  • ENUM - A value of an enumeration
  • INT32 - A 32-bit integer value
  • INTEGER - A 29-bit integer value

Detailed information regarding Event Classes and Attributes can be found in the Rule Developers Guide, located at the following website:http://publib.boulder.ibm.com/infocenter/tivihelp/v3r1/index.jsp?topic=/com.ibm.itecruledev.doc/ecodmst.htm

Event Mapping files are XML files that specify how situation events data is mapped to baroc file event classes and attributes. Event mapping files are located in the same directory as the baroc files, and are similarly named:
  • kt3.map, for the Application Management Console event classes.
  • kt5.map, for the Web Response Time event classes.
  • kt6.map, for the Robotic Response Time event classes.
The event mapping file has the following format:
<itmEventMapping:agent>
  <id>xx</id>
  <version>n.n</version>
  <event_mapping>
    <attributeTable>
      <class/>
      <slot>
        <mappedAttribute/>
        or
        <mappedAttributeEnum/>
      </slot>
      :.......... one or more slot tags
    </attributeTable>
    :.......... one or more attributeTable tags
  </event_mapping>
</itmeventMapping:agent>
The syntax and usage of the tags in the mapping file are described as follows:
<attributeTable>
Syntax: <attributeTable name="attribute_table_name" [freeSpace="nnnn"]>, where nnnn is an integer value.

Usage: The freeSpace="nnnn" parameter is the maximum free space available in the TEC event buffer for additional slots after all of the slots that are defined in this event map are built.

<slot>
Syntax: <slot name="slot_name">

Usage: Defines a slot in the TEC event. The name of the slot is slot_name.

<mappedAttribute>
Syntax: <mappedAttribute name="attribute_name" [multiplier="nnn"]>

Usage: Specifies the attribute name that is mapped to the slot being defined. If attribute_name is not included in the event data, a null value is used. If the optional multiplier= parameter is specified and the value of the attribute is numeric, the value assigned for the slot is the attribute value multiplied by the number specified in the multiplier= parameter.

<mappedAttributeEnum>
Syntax: <mappedAttributeEnum name="attribute_name">

Usage: similar to the <mappedAttribute> tag, except if the attribute is defined as an enumerated value in the attribute file, the external enumerated string is used as the slot value instead of the attribute value. If there is no external enumerated string defined that matches the attribute value, the attribute value is used instead.

By default, not every attribute is included in events that are sent to Tivoli Enterprise Console. See the Attribute Groups section of the Response Time chapter in the User's Guide for an indication of which attributes in each group are preselected to be forwarded in events to Netcool/OMNIbus or Tivoli Enterprise Console.

Example: Forwarding additional Robotic Response Time attributes in events

You can modify the baroc and event mapping files to specify additional attributes to forward in events. The following example procedure illustrates how to modify the kt6.baroc and kt6.map files to create additional event slots for attributes that are not already being forwarded in events. This example will use attributes in the Robotic Response Time agent attribute group, RRT_Robotic_Playback_Events. You can use this same basic procedure to modify the baroc and event mapping files for any of the ITCAM for Transaction agents.

The procedure includes the following basic steps, which are further described below:
  1. Determine the amount of free space available in the event mapping file.
  2. Collect details about the name and size of the attributes to be added to the baroc and event mapping files.
  3. Edit the baroc and event mapping files to create slots for the additional attributes.
  4. Apply the baroc and event mapping file changes.
Step 1: Determine the amount of free space available in the event mapping file:
  1. Open the following file in the Tivoli Enterprise Monitoring Server file system:
    • On Windows systems: %CANDLE_HOME%\CMS\teclib\kt6.map
    • On UNIX systems: $CANDLE_HOME/tables/<TEMS_NAME>/TECLIB/kt6.map
  2. Search for the string: RRT_Robotic_Playback_Events.
  3. Make note of the freeSpace value, similar to the following example:
    <attributeTable freeSpace="398" name="RRT_Robotic_Playback_Events">
      <class name="ITM_RRT_Robotic_Playback_Events"/>
      <slot slotName="application_name">
        <mappedAttribute name="RRT_Robotic_Playback_Events.Application_Name"/>
      </slot>
      <slot slotName="transaction_name">
        <mappedAttribute name="RRT_Robotic_Playback_Events.Transaction_Name"/>
      </slot>
      <slot slotName="kt6_situation_name">
        <mappedAttribute name="RRT_Robotic_Playback_Events.Situation_Name"/>
      </slot>
      <slot slotName="command_name">
        <mappedAttribute name="RRT_Robotic_Playback_Events.Command_Name"/>
      </slot>
      <slot slotName="violation_data">
        <mappedAttribute name="RRT_Robotic_Playback_Events.Violation_Data"/>
      </slot>
      <slot slotName="expected_data">
        <mappedAttribute name="RRT_Robotic_Playback_Events.Expected_Data"/>
      </slot>
      <slot slotName="additional_details">
        <mappedAttribute name="RRT_Robotic_Playback_Events.Additional_Details"/>
      </slot>
      <slot slotName="captured_content_location">
        <mappedAttribute 
        name="RRT_Robotic_Playback_Events.Captured_Content_Location"/>
      </slot>
    </attributeTable>

    In this example, the attribute table has 398 bytes of available free space.

Step 2: Collect details about the name and size of the attributes to be added to the baroc and event mapping files:
  1. In the User's Guide, look up the RRT Robotic Playback Events attribute group.
    In the far right column of the table, note that there are a number of attributes that are not, by default, forwarded in events. Suppose for this example that you want to begin forwarding data for the following attributes in events:
    • Event_Type
    • Script_Name
    • Script_Type
  2. In the table, note the Tivoli Data Warehouse term and the column size in bytes value for the attributes you want to add to the existing event. The total size of the attributes to be added must not be greater than the freeSpace value noted in the kt6.map file.

    For this example, the amount of free space is 398 bytes. From the above table, each of the attributes being added is 128 bytes, for a total of 384 bytes.

  3. To add new entries to the kt6.map and kt6.baroc files, you need the mappedAttribute name and the slotName. The full mappedAttribute name is constructed from the Attribute Group Name (RRT_Robotic_Playback_Events) and the Attribute name from the Tivoli Data Warehouse term for historical reporting column of the above Attribute Group table. For our example these will be:
    • RRT_Robotic_Playback_Events.Event_Type
    • RRT_Robotic_Playback_Events.Script_Name
    • RRT_Robotic_Playback_Events.Script_Type
    The value for slotName is obtained from the Robotic Response Time Event classes table later in this appendix:
    Table 1. Robotic Response Time event slots to event classes
    Event class Event slot
    ITM_RRT_Robotic_Playback_Events ISA KT6_Base RRT_Robotic_Playback_Events attribute group
    origin_node: STRING;
    sample_timestamp: STRING;
    event_timestamp: STRING;
    script_name:	STRING;
    script_type:	STRING;
    script_type_enum:	STRING;
    event_type:	STRING;
    event_type_enum:	STRING;
    kt6_situation_name:	STRING;
    command_name:	STRING;
    violation_data:	STRING;
    expected_data:	STRING;
    additional_details:	STRING;
    application_name:	STRING;
    transaction_name:	STRING;
    captured_content_location:	STRING;
    The values for slotName in baroc and map files are the same as the corresponding entry in the Attribute Group table, but all lower-case. For example, Application_Name from the Attribute Group table is application_name in the baroc file, and is the value for slotName in the map file. For our example, the following entries are present:
    • event_type: STRING;
    • script_name: STRING;
    • script_type: STRING;
Step 3: Edit the baroc and event mapping files to create slots for the additional attributes
  1. Make backup copies of the following files:
    • On Windows systems:
      • %CANDLE_HOME%\CMS\teclib\kt6.baroc
      • %CANDLE_HOME%\CMS\teclib\kt6.map
    • On UNIX and Linux systems:
      • $CANDLE_HOME/tables/tems_name/TECLIB/kt6.baroc
      • $CANDLE_HOME/tables/tems_name/TECLIB/kt6.map
  2. Edit the kt6.baroc file to add the new attributes to the RRT_Robotic_Playback_Events Event Class.
    The resulting event class should look similar to the following example:
    TEC_CLASS :
            ITM_RRT_Robotic_Playback_Events ISA KT6_Base
            DEFINES {
    
                    #
                    # RRT_Robotic_Playback_Events attribute group
                    #
    
                    kt6_situation_name:	STRING;
                    command_name:	STRING;
                    violation_data:	STRING;
                    expected_data:	STRING;
                    additional_details:	STRING;
                    application_name:	STRING;
                    transaction_name:	STRING;
                    captured_content_location:	STRING;
                    event_type: STRING;
                    script_name: STRING;
                    script_type: STRING;
            };
    END
  3. Edit the kt6.map file and for each of these three new attributes, add the following lines:
    <slot slotName="xxxxxx">
      <mappedAttribute name="yyyyyy.zzzzzz"/>
    </slot>
    xxxxxx
    The Event Slot name from the appropriate TEC Event Mapping table or the lower-case version of the Attribute name from the appropriate Attribute Group table.
    yyyyyy
    Attribute Group name
    zzzzzz
    Attribute name

    In addition, update the value of the freeSpace parameter to account for the new attributes added. In this example, the original value of 398 bytes is reduced by 384 bytes, to a resulting freeSpace value of 14 bytes.

    The resulting kt6.map entry should look similar to the following example:
    <attributeTable freeSpace="14" name="RRT_Robotic_Playback_Events">
      <class name="ITM_RRT_Robotic_Playback_Events"/>
      <slot slotName="application_name">
        <mappedAttribute name="RRT_Robotic_Playback_Events.Application_Name"/>
      </slot>
      <slot slotName="transaction_name">
        <mappedAttribute name="RRT_Robotic_Playback_Events.Transaction_Name"/>
      </slot>
      <slot slotName="kt6_situation_name">
        <mappedAttribute name="RRT_Robotic_Playback_Events.Situation_Name"/>
      </slot>
      <slot slotName="command_name">
        <mappedAttribute name="RRT_Robotic_Playback_Events.Command_Name"/>
      </slot>
      <slot slotName="violation_data">
        <mappedAttribute name="RRT_Robotic_Playback_Events.Violation_Data"/>
      </slot>
      <slot slotName="expected_data">
        <mappedAttribute name="RRT_Robotic_Playback_Events.Expected_Data"/>
      </slot>
      <slot slotName="additional_details">
        <mappedAttribute name="RRT_Robotic_Playback_Events.Additional_Details"/>
      </slot>
      <slot slotName="captured_content_location">
        <mappedAttribute 
        name="RRT_Robotic_Playback_Events.Captured_Content_Location"/>
      </slot>
      <slot slotName="event_type">
        <mappedAttribute name="RRT_Robotic_Playback_Events.Event_Type"/>
      </slot>
      <slot slotName="script_name">
        <mappedAttribute name="RRT_Robotic_Playback_Events.Script_Name"/>
      </slot>
      <slot slotName="script_type">
        <mappedAttribute name="RRT_Robotic_Playback_Events.Script_Type"/>
      </slot></attributeTable>

Step 4: Apply the baroc and event mapping file changes

For the above changes to become effective you will have to perform the following steps:
  1. Restart Tivoli Enterprise Monitoring Server. This ensures that the newly added attributes are included in events being forwarded.
  2. To ensure the new attributes are recognized by the receiving event server, update the ITCAM for Transactions rule base on the TEC Server. For example:
    wrb -delrbclass kt6.baroc -force ITCAMfT_RB
    Copy the new baroc file from the TEMS file system to the TEC Server
    wrb -imprbclass kt6.baroc ITCAMfT_RB
    wrb -comprules ITCAMfT_RB
    wrb -loadrb ITCAMfT_RB
    wstopesvr
    wstartesvr 

Application Management Console Event classes

Each of the Application Management Console event classes is a child of the KT3_Base event class. The KT3_Base event class can be used for generic rules processing for any event from the Tivoli Enterprise Management Agent.
Table 2. Application Management Console event slots to event classes
Event class Event slot
ITM_DB_Agent_Details ISA KT3_Base DB_Agent_Details attribute group
timestamp: STRING;
sample_time: STRING;
origin_node: STRING;
property: STRING;
kt3_value: STRING;
property_enum: STRING;
ITM_ERT_Agent_Messages ISA KT3_Base ERT_Agent_Messages attribute group
origin_node: STRING;
message_date_and_time:	STRING;
sample_timestamp:	STRING;
kt3_severity:	INTEGER;
kt3_severity_enum:	STRING;
component:	STRING;
component_enum:	STRING;
message_id:	STRING;
message_text:	STRING;
message_source:	STRING;
ITM_DB_Application_Summary ISA KT3_Base DB_Application_Summary attribute group
origin_node: STRING;
aggby:	INTEGER;
aggby_enum:	INTEGER;
data_collector_type: STRING;
data_timespan:	INTEGER;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
overall_time:	REAL;
successful_requests:	INTEGER;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
type:	STRING;
data_timezoneoffset:	INTEGER;
scope:	INTEGER;
scope_enum:	STRING;
application:	STRING;
appkey:	STRING;
maximum_response_time_threshold:	REAL;
ITM_DB_Client_Summary ISA KT3_Base DB_Client_Summary attribute group
origin_node: STRING;
aggby:	INTEGER;
aggby_enum:	INTEGER;
data_collector_type: STRING;
data_timespan:	INTEGER;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
overall_time:	REAL;
successful_requests:	INTEGER;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
type:	STRING;
data_timezoneoffset:	INTEGER;
scope:	INTEGER;
scope_enum:	STRING;
client:	STRING;
ip:	STRING;
kt3_hostname:	STRING;
clientkey:	STRING;
maximum_response_time_threshold:	REAL;
ITM_DB_Depot_Status ISA KT3_Base DB_Depot_Status attribute group
origin_node: STRING;
last_update:	STRING;
ITM_DB_File_Depot ISA KT3_Base DB_File_Depot attribute group
origin_node: STRING;
attributes: STRING;
path_arg: STRING;
pattern_arg: STRING;
kt3_server_path:	STRING;
file_type:	STRING;
desc:	STRING;
name:	STRING;
hidden:	STRING;
date_modified:	STRING;
file_size:	STRING;
checksum:	STRING;
ITM_T3_File_Transfer ISA KT3_Base T3_File_Transfer attribute group
origin_node: STRING;
data: STRING;
temp_id_pre: INTEGER;
temp_id_post: INTEGER;
kt3_server_path:	STRING;
xfer_mode:	STRING;
xfer_state_pre:	STRING;
xfer_state_post:	STRING;
fail_type:	STRING;
fail_code:	INTEGER;
file_mod1_pre:	INTEGER;
file_mod2_pre:	INTEGER;
file_mod1_post:	INTEGER;
file_mod2_post:	INTEGER;
offset_pre:	INTEGER;
offset_post:	INTEGER;
data_len_pre:	INTEGER;
data_len_post:	INTEGER;
ITM_AMC_Internet_Service ISA KT3_Base AMC_Internet_Service attribute group
origin_node:	STRING;
overall_status:	INTEGER;
overall_status_enum:	STRING;
timestamp:	STRING;
good:	INTEGER;
marginal:	INTEGER;
failed:	INTEGER;
percent_good:	REAL;
percent_marginal:	REAL;
percent_failed:	REAL;
totaltime:	REAL;
percent_available:	REAL;
total_requests:	INTEGER;
profile:	STRING;
service:	STRING;
host:	STRING;
agent:	STRING;
profkey:	STRING;
description:	STRING;
ITM_AMC_Internet_Service_Element ISA KT3_Base AMC_Internet_Service_Element attribute group
origin_node:	STRING;
overall_status:	INTEGER;
overall_status_enum:	STRING;
timestamp:	STRING;
good:	INTEGER;
marginal:	INTEGER;
failed:	INTEGER;
percent_good:	REAL;
percent_marginal:	REAL;
percent_failed:	REAL;
totaltime:	REAL;
percent_available:	REAL;
total_requests:	INTEGER;
profile:	STRING;
service:	STRING;
host:	STRING;
agent:	STRING;
profkey:	STRING;
description:	STRING;
identchecksum:	STRING;
ITM_AMC_Internet_Service_Agent ISA KT3_Base AMC_Internet_Service_Agent attribute group
origin_node:	STRING;
overall_status:	INTEGER;
overall_status_enum:	STRING;
timestamp:	STRING;
good:	INTEGER;
marginal:	INTEGER;
failed:	INTEGER;
percent_good:	REAL;
percent_marginal:	REAL;
percent_failed:	REAL;
totaltime:	REAL;
percent_available:	REAL;
total_requests:	INTEGER;
profile:	STRING;
service:	STRING;
host:	STRING;
agent:	STRING;
profkey:	STRING;
description:	STRING;
identchecksum:	STRING;
ITM_AMC_Internet_Services_Profiles ISA KT3_Base AMC_Internet_Services_Profiles attribute group
origin_node:	STRING;
overall_status:	INTEGER;
overall_status_enum: STRING;
timestamp:	STRING;
good:	INTEGER;
marginal:	INTEGER;
failed:	INTEGER;
percent_good:	REAL;
percent_marginal:	REAL;
percent_failed:	REAL;
totaltime:	REAL;
percent_available:	REAL;
total_requests:	INTEGER;
profile:	STRING;
service:	STRING;
host:	STRING;
agent:	STRING;
profkey:	STRING;
aggby:	INTEGER;
aggby_enum:	INTEGER;
ITM_AMC_ISM ISA KT3_Base AMC_ISM attribute group
origin_node: STRING;
data_timespan: INTEGER;
data_interval: INTEGER;
last_updated: STRING;
ITM_AMC_Robotic_Playback_Status ISA KT3_Base AMC_Robotic_Playback_Status attribute group
origin_node: STRING;
robotic_node:	STRING;
sample_timestamp:	STRING;
kt3_situation_name:	STRING;
script_name:	STRING;
script_type:	STRING;
script_type_enum:	STRING;
command_name:	STRING;
last_run_startime:	STRING;
last_updated:	STRING;
last_run_duration:	REAL;
last_run_status:	STRING;
last_run_status_enum:	STRING;
current_run_status:	STRING;
current_run_status_enum:	STRING;
application_name:	STRING;
transaction_name:	STRING;
ITM_DB_Sub_Node_App_Client_Summary ISA KT3_Base DB_Sub_Node_App_Client_Summary attribute group
origin_node: STRING;
data_collector_type: STRING;
aggby:	INTEGER;
aggby_enum:	INTEGER;
data_timespan:	INTEGER;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
overall_time:	REAL;
successful_requests:	INTEGER;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
type:	STRING;
data_timezoneoffset:	INTEGER;
scope:	INTEGER;
scope_enum:	STRING;
application:	STRING;
client:	STRING;
ip:	STRING;
kt3_hostname:	STRING;
appkey:	STRING;
clientkey:	STRING;
maximum_response_time_threshold:	REAL;
ITM_AMC_Agent ISA KT3_Base AMC_Agent attribute group
origin_node: STRING;
data_collector_type: STRING;
data_collector_type_enum: STRING;
data_timespan:	INTEGER;
data_interval:	INTEGER;
overall_status:	INTEGER;
overall_status_enum:	STRING;
request_volume:	INTEGER;
request_volume_enum:	STRING;
current_requests:	INTEGER;
good_requests:	INTEGER;
slow_requests:	INTEGER;
bad_requests:	INTEGER;
min_requests:	INTEGER;
max_requests:	INTEGER;
average_requests:	INTEGER;
response_time:	REAL;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
web_server:	INTEGER;
web_server_enum:	STRING;
app_server:	INTEGER;
app_server_enum:	STRING;
msg_status:	INTEGER;
msg_status_enum:	STRING;
back_status:	INTEGER;
back_status_enum:	STRING;
client_status:	INTEGER;
client_status_enum:	STRING;
agent:	STRING;
type:	STRING;
last_updated:	STRING;
timestamp:	STRING;
application:	STRING;
appkey:	STRING;
transaction:	STRING;
ITM_AMC_Application ISA KT3_Base AMC_Application attribute group
origin_node: STRING;
data_collector_type: STRING;
data_collector_type_enum: STRING;
data_timespan:	INTEGER;
data_interval:	INTEGER;
overall_status:	INTEGER;
overall_status_enum:	STRING;
request_volume:	INTEGER;
request_volume_enum:	STRING;
current_requests:	INTEGER;
good_requests:	INTEGER;
slow_requests:	INTEGER;
bad_requests:	INTEGER;
min_requests:	INTEGER;
max_requests:	INTEGER;
average_requests:	INTEGER;
response_time:	REAL;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
web_server:	INTEGER;
web_server_enum:	STRING;
app_server:	INTEGER;
app_server_enum:	STRING;
msg_status:	INTEGER;
msg_status_enum:	STRING;
back_status:	INTEGER;
back_status_enum:	STRING;
client_status:	INTEGER;
client_status_enum:	STRING;
agent:	STRING;
type:	STRING;
last_updated:	STRING;
timestamp:	STRING;
application:	STRING;
appkey:	STRING;
ITM_DB_Sub_Node_Application_OverTime ISA KT3_Base DB_Sub_Node_Application_OverTime attribute group
origin_node: STRING;
data_collector_type: STRING;
aggby:	INTEGER;
aggby_enum:	INTEGER;
data_timespan:	INTEGER;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
overall_time:	REAL;
successful_requests:	INTEGER;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
type:	STRING;
data_timezoneoffset:	INTEGER;
scope:	INTEGER;
scope_enum:	STRING;
application:	STRING;
timestamp:	STRING;
appkey:	STRING;
maximum_response_time_threshold:	REAL;
ITM_DB_Sub_Node_Application_Summary ISA KT3_Base DB_Sub_Node_Application_Summary attribute group
origin_node: STRING;
data_collector_type: STRING;
aggby:	INTEGER;
aggby_enum:	INTEGER;
data_timespan:	INTEGER;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
overall_time:	REAL;
successful_requests:	INTEGER;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
type:	STRING;
data_timezoneoffset:	INTEGER;
scope:	INTEGER;
scope_enum:	STRING;
application:	STRING;
appkey:	STRING;
maximum_response_time_threshold:	REAL;
ITM_DB_Sub_Node_App_Server_Summary ISA KT3_Base DB_Sub_Node_App_Server_Summary attribute group
origin_node: STRING;
data_collector_type: STRING;
aggby:	INTEGER;
aggby_enum:	INTEGER;
data_timespan:	INTEGER;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
overall_time:	REAL;
successful_requests:	INTEGER;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
type:	STRING;
data_timezoneoffset:	INTEGER;
scope:	INTEGER;
scope_enum:	STRING;
application:	STRING;
server:	STRING;
ip:	STRING;
appkey:	STRING;
serverkey:	STRING;
maximum_response_time_threshold:	REAL;
ITM_AMC_Client ISA KT3_Base AMC_Client attribute group
origin_node: STRING;
data_collector_type: STRING;
data_collector_type_enum: STRING;
data_timespan:	INTEGER;
data_interval:	INTEGER;
overall_status:	INTEGER;
overall_status_enum:	STRING;
request_volume:	INTEGER;
request_volume_enum:	STRING;
current_requests:	INTEGER;
good_requests:	INTEGER;
slow_requests:	INTEGER;
bad_requests:	INTEGER;
min_requests:	INTEGER;
max_requests:	INTEGER;
average_requests:	INTEGER;
response_time:	REAL;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
web_server:	INTEGER;
web_server_enum:	STRING;
app_server:	INTEGER;
app_server_enum:	STRING;
msg_status:	INTEGER;
msg_status_enum:	STRING;
back_status:	INTEGER;
back_status_enum:	STRING;
client_status:	INTEGER;
client_status_enum:	STRING;
agent:	STRING;
type:	STRING;
last_updated:	STRING;
timestamp:	STRING;
application:	STRING;
appkey:	STRING;
client:	STRING;
ITM_DB_Sub_Node_Client_Over_Time ISA KT3_Base DB_Sub_Node_Client_Over_Time attribute group
origin_node: STRING;
data_collector_type: STRING;
aggby:	INTEGER;
aggby_enum:	INTEGER;
data_timespan:	INTEGER;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
overall_time:	REAL;
successful_requests:	INTEGER;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
type:	STRING;
data_timezoneoffset:	INTEGER;
scope:	INTEGER;
scope_enum:	STRING;
client:	STRING;
ip:	STRING;
kt3_hostname:	STRING;
timestamp:	STRING;
clientkey:	STRING;
maximum_response_time_threshold:	REAL;
ITM_DB_Sub_Node_Client_Summary ISA KT3_Base DB_Sub_Node_Client_Summary attribute group
origin_node: STRING;
data_collector_type: STRING;
aggby:	INTEGER;
aggby_enum:	INTEGER;
data_timespan:	INTEGER;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
overall_time:	REAL;
successful_requests:	INTEGER;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
type:	STRING;
data_timezoneoffset:	INTEGER;
scope:	INTEGER;
scope_enum:	STRING;
client:	STRING;
ip:	STRING;
kt3_hostname:	STRING;
clientkey:	STRING;
maximum_response_time_threshold:	REAL;
ITM_AMC_Client_Agents ISA KT3_Base AMC_Client_Agents attribute group
origin_node: STRING;
data_collector_type: STRING;
data_collector_type_enum: STRING;
data_timespan:	INTEGER;
data_interval:	INTEGER;
overall_status:	INTEGER;
overall_status_enum:	STRING;
request_volume:	INTEGER;
request_volume_enum:	STRING;
current_requests:	INTEGER;
good_requests:	INTEGER;
slow_requests:	INTEGER;
bad_requests:	INTEGER;
min_requests:	INTEGER;
max_requests:	INTEGER;
average_requests:	INTEGER;
response_time:	REAL;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
web_server:	INTEGER;
web_server_enum:	STRING;
app_server:	INTEGER;
app_server_enum:	STRING;
msg_status:	INTEGER;
msg_status_enum:	STRING;
back_status:	INTEGER;
back_status_enum:	STRING;
client_status:	INTEGER;
client_status_enum:	STRING;
agent:	STRING;
type:	STRING;
last_updated:	STRING;
timestamp:	STRING;
application:	STRING;
appkey:	STRING;
client:	STRING;
ITM_DB_Sub_Node_Client_Server_Summary ISA KT3_Base DB_Sub_Node_Client_Server_Summary attribute group
origin_node: STRING;
data_collector_type: STRING;
aggby:	INTEGER;
aggby_enum:	INTEGER;
data_timespan:	INTEGER;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
overall_time:	REAL;
successful_requests:	INTEGER;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
type:	STRING;
data_timezoneoffset:	INTEGER;
scope:	INTEGER;
scope_enum:	STRING;
client:	STRING;
ip:	STRING;
kt3_hostname:	STRING;
server:	STRING;
server_ip:	STRING;
clientkey:	STRING;
serverkey:	STRING;
maximum_response_time_threshold:	REAL;
ITM_AMC_Server ISA KT3_Base AMC_Server attribute group
origin_node: STRING;
data_collector_type: STRING;
data_collector_type_enum: STRING;
data_timespan:	INTEGER;
data_interval:	INTEGER;
overall_status:	INTEGER;
overall_status_enum:	STRING;
request_volume:	INTEGER;
request_volume_enum:	STRING;
current_requests:	INTEGER;
good_requests:	INTEGER;
slow_requests:	INTEGER;
bad_requests:	INTEGER;
min_requests:	INTEGER;
max_requests:	INTEGER;
average_requests:	INTEGER;
response_time:	REAL;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
web_server:	INTEGER;
web_server_enum:	STRING;
app_server:	INTEGER;
app_server_enum:	STRING;
msg_status:	INTEGER;
msg_status_enum:	STRING;
back_status:	INTEGER;
back_status_enum:	STRING;
server_status:	INTEGER;
server_status_enum:	STRING;
agent:	STRING;
type:	STRING;
last_updated:	STRING;
timestamp:	STRING;
application:	STRING;
appkey:	STRING;
server:	STRING;
ITM_DB_Sub_Node_Server_Over_Time ISA KT3_Base DB_Sub_Node_Server_Over_Time attribute group
origin_node: STRING;
data_collector_type: STRING;
aggby:	INTEGER;
aggby_enum:	INTEGER;
data_timespan:	INTEGER;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
overall_time:	REAL;
successful_requests:	INTEGER;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
type:	STRING;
data_timezoneoffset:	INTEGER;
scope:	INTEGER;
scope_enum:	STRING;
server:	STRING;
ip:	STRING;
timestamp:	STRING;
serverkey:	STRING;
maximum_response_time_threshold:	REAL;
ITM_DB_Sub_Node_Server_Summary ISA KT3_Base DB_Sub_Node_Server_Summary attribute group
origin_node: STRING;
data_collector_type: STRING;
aggby:	INTEGER;
aggby_enum:	INTEGER;
data_timespan:	INTEGER;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
overall_time:	REAL;
successful_requests:	INTEGER;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
type:	STRING;
data_timezoneoffset:	INTEGER;
scope:	INTEGER;
scope_enum:	STRING;
server:	STRING;
ip:	STRING;
serverkey:	STRING;
maximum_response_time_threshold:	REAL;
ITM_AMC_Server_Agents ISA KT3_Base AMC_Server_Agents attribute group
origin_node: STRING;
data_collector_type: STRING;
data_collector_type_enum: STRING;
data_timespan:	INTEGER;
data_interval:	INTEGER;
overall_status:	INTEGER;
overall_status_enum:	STRING;
request_volume:	INTEGER;
request_volume_enum:	STRING;
current_requests:	INTEGER;
good_requests:	INTEGER;
slow_requests:	INTEGER;
bad_requests:	INTEGER;
min_requests:	INTEGER;
max_requests:	INTEGER;
average_requests:	INTEGER;
response_time:	REAL;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
web_server:	INTEGER;
web_server_enum:	STRING;
app_server:	INTEGER;
app_server_enum:	STRING;
msg_status:	INTEGER;
msg_status_enum:	STRING;
back_status:	INTEGER;
back_status_enum:	STRING;
server_status:	INTEGER;
server_status_enum:	STRING;
agent:	STRING;
type:	STRING;
last_updated:	STRING;
timestamp:	STRING;
application:	STRING;
appkey:	STRING;
server:	STRING;
ITM_AMC_Transaction ISA KT3_Base AMC_Transaction attribute group
origin_node: STRING;
data_collector_type: STRING;
data_collector_type_enum: STRING;
data_timespan:	INTEGER;
data_interval:	INTEGER;
overall_status:	INTEGER;
overall_status_enum:	STRING;
request_volume:	INTEGER;
request_volume_enum:	STRING;
current_requests:	INTEGER;
good_requests:	INTEGER;
slow_requests:	INTEGER;
bad_requests:	INTEGER;
min_requests:	INTEGER;
max_requests:	INTEGER;
average_requests:	INTEGER;
response_time:	REAL;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
web_server:	INTEGER;
web_server_enum:	STRING;
app_server:	INTEGER;
app_server_enum:	STRING;
msg_status:	INTEGER;
msg_status_enum:	STRING;
back_status:	INTEGER;
back_status_enum:	STRING;
client_status:	INTEGER;
client_status_enum:	STRING;
agent:	STRING;
type:	STRING;
last_updated:	STRING;
timestamp:	STRING;
application:	STRING;
appkey:	STRING;
transaction:	STRING;
ITM_DB_Sub_Node_Transaction_Summary ISA KT3_Base DB_Sub_Node_Transaction_Summary attribute group
origin_node: STRING;
data_collector_type: STRING;
aggby:	INTEGER;
aggby_enum:	INTEGER;
data_timespan:	INTEGER;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
overall_time:	REAL;
successful_requests:	INTEGER;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
type:	STRING;
data_timezoneoffset:	INTEGER;
scope:	INTEGER;
scope_enum:	STRING;
application:	STRING;
transaction:	STRING;
appkey:	STRING;
maximum_response_time_threshold:	REAL;
ITM_DB_Sub_Node_Transaction_OverTime ISA KT3_Base DB_Sub_Node_Transaction_OverTime attribute group
origin_node: STRING;
data_collector_type: STRING;
aggby:	INTEGER;
aggby_enum:	INTEGER;
data_timespan:	INTEGER;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
overall_time:	REAL;
successful_requests:	INTEGER;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
type:	STRING;
data_timezoneoffset:	INTEGER;
scope:	INTEGER;
scope_enum:	STRING;
application:	STRING;
timestamp:	STRING;
transaction:	STRING;
appkey:	STRING;
maximum_response_time_threshold:	REAL;

Web Response Time Event classes

Each of the event classes is a child of KT5_Base. The KT5_Base event class can be used for generic rules processing for any event from the Tivoli® Enterprise Monitoring Agent.
Table 3. Web Response Time event classes to event slots
Event class Event slot
ITM_WRT_Agent_Details ISA KT5_Base WRT_Agent_Details attribute group
origin_node: STRING;
timestamp: STRING;
property: STRING;
property_enum: STRING;
kt5_value: STRING;
sample_time: STRING;
ITM_WRT_Agent_Messages ISA KT5_Base WRT_Agent_Messages attribute group
origin_node: STRING;
message_date_and_time: STRING;
sample_timestamp: STRING;
kt5_severity: INTEGER;
kt5_severity_enum: STRING;
component: STRING;
component_enum: STRING;
message_id: STRING;
message_text: STRING;
message_source: STRING;
ITM_WRT_Application_Status ISA KT5_Base WRT_Application_Status attribute group
origin_node: STRING;
application: STRING;
importance: INTEGER;
importance_enum: STRING;
timestamp: STRING;
data_interval: INTEGER;
percent_failed: REAL;
percent_slow: REAL;
percent_good: REAL;
percent_available: REAL;
average_response_time: REAL;
failed_requests: INTEGER;
total_requests: INTEGER;
slow_requests: INTEGER;
good_requests: INTEGER;
minimum_response_time_threshold: REAL;
maximum_response_time_threshold: REAL;
minimum_response_time: REAL;
maximum_response_time: REAL;
data_collector_type: STRING;
sample_time: STRING;
rank: REAL;
average_client_time:	REAL;
average_load_time:	REAL;
average_network_time:	REAL;
average_server_time:	REAL;
average_resolve_time:	REAL;
request_packet_count:	INTEGER;
request_ack_packet_count:	INTEGER;
reply_packet_count:	INTEGER;
reply_ack_packet_count:	INTEGER;

(continued in next row)

ITM_WRT_Application_Status ISA KT5_Base (Continued)

(continued from previous row)

total_kbytes:	INTEGER;
request_kbytes:	INTEGER;
reply_kbytes:	INTEGER;
average_object_count:	INTEGER;
average_object_size:	INTEGER;
total_header_requests_count:	INTEGER;
total_header_request_resolve_time:	REAL;
informational:	INTEGER;
successes:	INTEGER;
redirections:	INTEGER;
client_errors:	INTEGER;
server_errors:	INTEGER;
number_of_403s:	INTEGER;
number_of_404s:	INTEGER;
number_of_500s:	INTEGER;
percent_informational:	REAL;
percent_successes:	REAL;
percent_redirections:	REAL;
percent_client_errors:	REAL;
percent_server_errors:	REAL;
percent_of_403s:	REAL;
percent_of_404s:	REAL;
percent_of_500s:	REAL;
kt5_situation_status:	INTEGER;
kt5_situation_status_enum:	INTEGER;
scope:	INTEGER;
scope_enum:	STRING;
average_render_time:	REAL;
average_users:	REAL;
average_good_users:	REAL;
average_slow_users:	REAL;
average_failed_users:	REAL;
number_active_sessions:	INTEGER;
number_good_sessions:	INTEGER;
number_slow_sessions:	INTEGER;
number_failed_sessions:	INTEGER;
average_session_duration:	INTEGER;
average_page_views_per_session:	INTEGER;
number_of_retransmissions:	INTEGER;
kilobytes_retransmitted:	INTEGER;
number_of_content_check_errors:	INTEGER;
ITM_WRT_Application_Over_Time ISA KT5_Base WRT_Application_Over_Time attribute group
origin_node: STRING;
application:	STRING;
importance:	INTEGER;
importance_enum:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
data_collector_type: STRING;
sample_time: STRING;
rank: REAL;
aggby:	INTEGER;
aggby_enum:	INTEGER;
average_client_time:	REAL;
average_load_time:	REAL;
average_network_time:	REAL;
average_server_time:	REAL;
average_resolve_time:	REAL;
request_packet_count:	INTEGER;
request_ack_packet_count:	INTEGER;
reply_packet_count:	INTEGER;
reply_ack_packet_count:	INTEGER;

(continued in next row)

ITM_WRT_Application_Over_Time ISA KT5_Base (Continued)

(continued from previous row)

total_kbytes:	INTEGER;
request_kbytes:	INTEGER;
reply_kbytes:	INTEGER;
average_object_count:	INTEGER;
average_object_size:	INTEGER;
total_header_requests_count:	INTEGER;
total_header_request_resolve_time:	REAL;
informational:	INTEGER;
successes:	INTEGER;
redirections:	INTEGER;
client_errors:	INTEGER;
server_errors:	INTEGER;
number_of_403s:	INTEGER;
number_of_404s:	INTEGER;
number_of_500s:	INTEGER;
percent_informational:	REAL;
percent_successes:	REAL;
percent_redirections:	REAL;
percent_client_errors:	REAL;
percent_server_errors:	REAL;
percent_of_403s:	REAL;
percent_of_404s:	REAL;
percent_of_500s:	REAL;
average_render_time:	REAL;
total_users:	INTEGER;
total_good_users:	INTEGER;
total_slow_users:	INTEGER;
total_failed_users:	INTEGER;
maximum_response_time_threshold:	REAL;
number_of_retransmissions:	INTEGER;
kilobytes_retransmitted:	INTEGER;
number_of_content_check_errors:	INTEGER;
ITM_WRT_Application_Summary ISA KT5_Base WRT_Application_Summary attribute group
origin_node: STRING;
data_collector_type: STRING;
sample_time: STRING;
rank: REAL;
aggby:	INTEGER;
aggby_enum:	INTEGER;
application:	STRING;
importance:	INTEGER;
importance_enum:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
average_client_time:	REAL;
average_load_time:	REAL;
average_network_time:	REAL;
average_server_time:	REAL;
average_resolve_time:	REAL;
request_packet_count:	INTEGER;

(continued in next row)

ITM_WRT_Application_Summary ISA KT5_Base (continued)

(continued from previous row)

request_ack_packet_count:	INTEGER;
reply_packet_count:	INTEGER;
reply_ack_packet_count:	INTEGER;
total_kbytes:	INTEGER;
request_kbytes:	INTEGER;
reply_kbytes:	INTEGER;
average_object_count:	INTEGER;
total_object_size:	INTEGER;
total_header_requests_count:	INTEGER;
total_header_request_resolve_time:	REAL;
informational:	INTEGER;
successes:	INTEGER;
redirections:	INTEGER;
client_errors:	INTEGER;
server_errors:	INTEGER;
number_of_403s:	INTEGER;
number_of_404s:	INTEGER;
number_of_500s:	INTEGER;
percent_informational:	REAL;
percent_successes:	REAL;
percent_redirections:	REAL;
percent_client_errors:	REAL;
percent_server_errors:	REAL;
percent_of_403s:	REAL;
percent_of_404s:	REAL;
percent_of_500s:	REAL;
average_render_time:	REAL;
average_users:	REAL;
average_good_users:	REAL;
average_slow_users:	REAL;
average_failed_users:	REAL;
maximum_response_time_threshold:	REAL;
number_of_retransmissions:	INTEGER;
kilobytes_retransmitted:	INTEGER;
number_of_content_check_errors:	INTEGER;
ITM_WRT_Client_Application ISA KT5_Base WRT_Client_Application attribute group
origin_node: STRING;
data_collector_type: STRING;
sample_time: STRING;
rank: REAL;
aggby:	INTEGER;
aggby_enum:	INTEGER;
client:	STRING;
application:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
average_client_time:	REAL;
average_load_time:	REAL;
average_network_time:	REAL;
average_server_time:	REAL;
average_resolve_time:	REAL;
request_packet_count:	INTEGER;
request_ack_packet_count:	INTEGER;
reply_packet_count:	INTEGER;

(continued in next row)

ITM_WRT_Client_Application ISA KT5_Base (Continued)

(continued from previous row)

reply_ack_packet_count:	INTEGER;
total_kbytes:	INTEGER;
request_kbytes:	INTEGER;
reply_kbytes:	INTEGER;
average_object_count:	INTEGER;
average_object_size:	INTEGER;
total_header_requests_count:	INTEGER;
total_header_request_resolve_time:	REAL;
informational:	INTEGER;
successes:	INTEGER;
redirections:	INTEGER;
client_errors:	INTEGER;
server_errors:	INTEGER;
number_of_403s:	INTEGER;
number_of_404s:	INTEGER;
number_of_500s:	INTEGER;
percent_informational:	REAL;
percent_successes:	REAL;
percent_redirections:	REAL;
percent_client_errors:	REAL;
percent_server_errors:	REAL;
percent_of_403s:	REAL;
percent_of_404s:	REAL;
percent_of_500s:	REAL;
average_render_time:	REAL;
average_users:	REAL;
average_good_users:	REAL;
average_slow_users:	REAL;
average_failed_users:	REAL;
maximum_response_time_threshold:	REAL;
number_of_content_check_errors:	INTEGER;
ITM_WRT_Client_Status ISA KT5_Base WRT_Client_Status attribute group
origin_node: STRING;
data_collector_type: STRING;
sample_time: STRING;
rank: REAL;
client:	STRING;
ip:	STRING;
kt5_hostname:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
average_client_time:	REAL;
average_load_time:	REAL;
average_network_time:	REAL;
average_server_time:	REAL;
average_resolve_time:	REAL;
request_packet_count:	INTEGER;
request_ack_packet_count:	INTEGER;
reply_packet_count:	INTEGER;
reply_ack_packet_count:	INTEGER;
total_kbytes:	INTEGER;

(continued in next row)

ITM_WRT_Client_Status ISA KT5_Base (Continued)

(continued from previous row)

request_kbytes:	INTEGER;
reply_kbytes:	INTEGER;
average_object_count:	INTEGER;
average_object_size:	INTEGER;
total_header_requests_count:	INTEGER;
total_header_request_resolve_time:	REAL;
informational:	INTEGER;
successes:	INTEGER;
redirections:	INTEGER;
client_errors:	INTEGER;
server_errors:	INTEGER;
number_of_403s:	INTEGER;
number_of_404s:	INTEGER;
number_of_500s:	INTEGER;
ipv6:	STRING;
percent_informational:	REAL;
percent_successes:	REAL;
percent_redirections:	REAL;
percent_client_errors:	REAL;
percent_server_errors:	REAL;
percent_of_403s:	REAL;
percent_of_404s:	REAL;
percent_of_500s:	REAL;
kt5_situation_status:	INTEGER;
kt5_situation_status_enum:	STRING;
scope:	INTEGER;
scope_enum:	STRING;
average_render_time:	REAL;
average_users:	REAL;
average_good_users:	REAL;
average_slow_users:	REAL;
average_failed_users:	REAL;
maximum_response_time_threshold:	REAL;
number_of_retransmissions:	INTEGER;
kilobytes_retransmitted:	INTEGER;
number_of_content_check_errors:	INTEGER;
ITM_WRT_Client_Over_Time ISA KT5_Base WRT_Client_Over_Time attribute group
origin_node: STRING;
data_collector_type: STRING;
sample_time: STRING;
rank: REAL;
aggby:	INTEGER;
aggby_enum:	INTEGER;
client:	STRING;
ip:	STRING;
kt5_hostname:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
average_client_time:	REAL;
average_load_time:	REAL;
average_network_time:	REAL;
average_server_time:	REAL;
average_resolve_time:	REAL;
request_packet_count:	INTEGER;
request_ack_packet_count:	INTEGER;
reply_packet_count:	INTEGER;
reply_ack_packet_count:	INTEGER;

(continued on next row)

ITM_WRT_Client_Over_Time ISA KT5_Base (Continued)

(continued from previous row)

total_kbytes:	INTEGER;
request_kbytes:	INTEGER;
reply_kbytes:	INTEGER;
average_object_count:	INTEGER;
average_object_size:	INTEGER;
total_header_requests_count:	INTEGER;
total_header_request_resolve_time:	REAL;
informational:	INTEGER;
successes:	INTEGER;
redirections:	INTEGER;
client_errors:	INTEGER;
server_errors:	INTEGER;
number_of_403s:	INTEGER;
number_of_404s:	INTEGER;
number_of_500s:	INTEGER;
ipv6:	STRING;
percent_informational:	REAL;
percent_successes:	REAL;
percent_redirections:	REAL;
percent_client_errors:	REAL;
percent_server_errors:	REAL;
percent_of_403s:	REAL;
percent_of_404s:	REAL;
percent_of_500s:	REAL;
average_render_time:	REAL;
total_users:	INTEGER;
total_good_users:	INTEGER;
total_slow_users:	INTEGER;
total_failed_users:	INTEGER;
maximum_response_time_threshold:	REAL;
number_of_retransmissions:	INTEGER;
kilobytes_retransmitted:	INTEGER;
number_of_content_check_errors:	INTEGER;
ITM_WRT_Client_Patterns ISA KT5_Base WRT_Client_Patterns attribute group
origin_node: STRING;
timestamp:	STRING;
client_name:	STRING;
client_hostname_pattern:	STRING;
client_ip_pattern:	STRING;
aggregates_uniquely:	INTEGER;
aggregates_uniquely_enum:	STRING;
sample_time: STRING;
ITM_WRT_Client_Summary ISA KT5_Base WRT_Client_Summary attribute group
origin_node: STRING;
data_collector_type: STRING;
sample_time: STRING;
rank: REAL;
aggby:	INTEGER;
aggby_enum:	INTEGER;
client:	STRING;
ip:	STRING;
kt5_hostname:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
average_client_time:	REAL;
average_load_time:	REAL;
average_network_time:	REAL;
average_server_time:	REAL;
average_resolve_time:	REAL;
request_packet_count:	INTEGER;
request_ack_packet_count:	INTEGER;
reply_packet_count:	INTEGER;
reply_ack_packet_count:	INTEGER;
total_kbytes:	INTEGER;
request_kbytes:	INTEGER;
reply_kbytes:	INTEGER;

(continued on next row)

ITM_WRT_Client_Summary ISA KT5_Base (Continued)

(continued from previous row)

average_object_count:	INTEGER;
average_object_size:	INTEGER;
total_header_requests_count:	INTEGER;
total_header_request_resolve_time:	REAL;
informational:	INTEGER;
successes:	INTEGER;
redirections:	INTEGER;
client_errors:	INTEGER;
server_errors:	INTEGER;
number_of_403s:	INTEGER;
number_of_404s:	INTEGER;
number_of_500s:	INTEGER;
ipv6:	STRING;
percent_informational:	REAL;
percent_successes:	REAL;
percent_redirections:	REAL;
percent_client_errors:	REAL;
percent_server_errors:	REAL;
percent_of_403s:	REAL;
percent_of_404s:	REAL;
percent_of_500s:	REAL;
average_render_time:	REAL;
average_users:	REAL;
average_good_users:	REAL;
average_slow_users:	REAL;
average_failed_users:	REAL;
maximum_response_time_threshold:	REAL;
number_of_retransmissions:	INTEGER;
kilobytes_retransmitted:	INTEGER;
number_of_content_check_errors:	INTEGER;
ITM_WRT_Client_Server ISA KT5_Base WRT_Client_Server attribute group
origin_node: STRING;
data_collector_type: STRING;
sample_time: STRING;
rank: REAL;
aggby:	INTEGER;
aggby_enum:	INTEGER;
client:	STRING;
server:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
average_client_time:	REAL;
average_load_time:	REAL;
average_network_time:	REAL;
average_server_time:	REAL;
average_resolve_time:	REAL;
request_packet_count:	INTEGER;
request_ack_packet_count:	INTEGER;
reply_packet_count:	INTEGER;
reply_ack_packet_count:	INTEGER;
total_kbytes:	INTEGER;
request_kbytes:	INTEGER;
reply_kbytes:	INTEGER;
average_object_count:	INTEGER;
average_object_size:	INTEGER;
total_header_requests_count:	INTEGER;
total_header_request_resolve_time:	REAL;
informational:	INTEGER;
successes:	INTEGER;
redirections:	INTEGER;
client_errors:	INTEGER;
server_errors:	INTEGER;
number_of_403s:	INTEGER;
number_of_404s:	INTEGER;
number_of_500s:	INTEGER;
percent_informational:	REAL;
percent_successes:	REAL;
percent_redirections:	REAL;
percent_client_errors:	REAL;
percent_server_errors:	REAL;
percent_of_403s:	REAL;
percent_of_404s:	REAL;
percent_of_500s:	REAL;
average_render_time:	REAL;
average_users:	REAL;
average_good_users:	REAL;
average_slow_users:	REAL;
average_failed_users:	REAL;
maximum_response_time_threshold:	REAL;
number_of_content_check_errors:	INTEGER;
ITM_WRT_Depot_Status ISA KT5_Base WRT_Depot_Status attribute group
origin_node: STRING;
depot_node: STRING;
ITM_WRT_Profile_Configuration ISA KT5_Base WRT_Profile_Configuration attribute group
origin_node: STRING;
sample_timestamp: STRING;
config_type:	INTEGER;
config_type_enum:	STRING;
config_name:	STRING;
entry_type:	INTEGER;
entry_type_enum:	STRING;
key_name:	STRING;
kt5_value:	STRING;
ITM_WRT_Server_Application ISA KT5_Base WRT_Server_Application attribute group
origin_node: STRING;
data_collector_type: STRING;
sample_time: STRING;
rank: REAL;
aggby:	INTEGER;
aggby_enum:	INTEGER;
server:	STRING;
application:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
average_client_time:	REAL;
average_load_time:	REAL;
average_network_time:	REAL;
average_server_time:	REAL;
average_resolve_time:	REAL;
request_packet_count:	INTEGER;
request_ack_packet_count:	INTEGER;
reply_packet_count:	INTEGER;
reply_ack_packet_count:	INTEGER;
total_kbytes:	INTEGER;
request_kbytes:	INTEGER;
reply_kbytes:	INTEGER;
average_object_count:	INTEGER;
average_object_size:	INTEGER;
total_header_requests_count:	INTEGER;
total_header_request_resolve_time:	REAL;
informational:	INTEGER;
successes:	INTEGER;
redirections:	INTEGER;
client_errors:	INTEGER;
server_errors:	INTEGER;
number_of_403s:	INTEGER;
number_of_404s:	INTEGER;
number_of_500s:	INTEGER;
percent_informational:	REAL;
percent_successes:	REAL;
percent_redirections:	REAL;
percent_client_errors:	REAL;
percent_server_errors:	REAL;
percent_of_403s:	REAL;
percent_of_404s:	REAL;
percent_of_500s:	REAL;
average_render_time:	REAL;
average_users:	REAL;
average_good_users:	REAL;
average_slow_users:	REAL;
average_failed_users:	REAL;
maximum_response_time_threshold:	REAL;
number_of_content_check_errors:	INTEGER;
ITM_WRT_Server_Status ISA KT5_Base WRT_Server_Status attribute group
origin_node: STRING;
data_collector_type: STRING;
sample_time: STRING;
rank: REAL;
kt5_situation_status:	INTEGER;
kt5_situation_status_enum:	INTEGER;
server:	STRING;
ip:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
average_client_time:	REAL;
average_load_time:	REAL;
average_network_time:	REAL;
average_server_time:	REAL;
average_resolve_time:	REAL;
request_packet_count:	INTEGER;
request_ack_packet_count:	INTEGER;
reply_packet_count:	INTEGER;
reply_ack_packet_count:	INTEGER;
total_kbytes:	INTEGER;
request_kbytes:	INTEGER;
reply_kbytes:	INTEGER;
average_object_count:	INTEGER;
average_object_size:	INTEGER;
total_header_requests_count:	INTEGER;
total_header_request_resolve_time:	REAL;
informational:	INTEGER;
successes:	INTEGER;

(continued on next row)

ITM_WRT_Server_Status ISA KT5_Base (continued)

(continued from previous row)

redirections:	INTEGER;
client_errors:	INTEGER;
server_errors:	INTEGER;
number_of_403s:	INTEGER;
number_of_404s:	INTEGER;
number_of_500s:	INTEGER;
ipv6:	STRING;
percent_informational:	REAL;
percent_successes:	REAL;
percent_redirections:	REAL;
percent_client_errors:	REAL;
percent_server_errors:	REAL;
percent_of_403s:	REAL;
percent_of_404s:	REAL;
percent_of_500s:	REAL;
scope:	INTEGER;
scope_enum:	STRING;
average_render_time:	REAL;
average_users:	REAL;
average_good_users:	REAL;
average_slow_users:	REAL;
average_failed_users:	REAL;
maximum_response_time_threshold:	REAL;
number_active_sessions:	INTEGER;
number_good_sessions:	INTEGER;
number_slow_sessions:	INTEGER;
number_failed_sessions:	INTEGER;
average_session_duration:	INTEGER;
average_page_views_per_session:	INTEGER;
number_of_retransmissions:	INTEGER;
kilobytes_retransmitted:	INTEGER;
number_of_content_check_errors:	INTEGER;
number_of_ssl_errors:	INTEGER;
number_of_ssl_warnings:	INTEGER;
number_of_network_ssl_errors:	INTEGER;
number_of_server_ssl_errors:	INTEGER;
number_of_server_ssl_warnings:	INTEGER;
number_of_client_ssl_errors:	INTEGER;
number_of_client_ssl_warnings:	INTEGER;
ITM_WRT_Server_Over_Time ISA KT5_Base WRT_Server_Over_Time attribute group
origin_node: STRING;
data_collector_type: STRING;
sample_time: STRING;
rank: REAL;
aggby:	INTEGER;
aggby_enum:	INTEGER;
server:	STRING;
ip:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
average_client_time:	REAL;
average_load_time:	REAL;
average_network_time:	REAL;
average_server_time:	REAL;
average_resolve_time:	REAL;
request_packet_count:	INTEGER;
request_ack_packet_count:	INTEGER;
reply_packet_count:	INTEGER;
reply_ack_packet_count:	INTEGER;

(continued on next row)

ITM_WRT_Server_Over_Time ISA KT5_Base (Continued)

(continued from previous row)

total_kbytes:	INTEGER;
request_kbytes:	INTEGER;
reply_kbytes:	INTEGER;
average_object_count:	INTEGER;
average_object_size:	INTEGER;
total_header_requests_count:	INTEGER;
total_header_request_resolve_time:	REAL;
informational:	INTEGER;
successes:	INTEGER;
redirections:	INTEGER;
client_errors:	INTEGER;
server_errors:	INTEGER;
number_of_403s:	INTEGER;
number_of_404s:	INTEGER;
number_of_500s:	INTEGER;
ipv6:	STRING;
percent_informational:	REAL;
percent_successes:	REAL;
percent_redirections:	REAL;
percent_client_errors:	REAL;
percent_server_errors:	REAL;
percent_of_403s:	REAL;
percent_of_404s:	REAL;
percent_of_500s:	REAL;
average_render_time:	REAL;
total_users:	INTEGER;
total_good_users:	INTEGER;
total_slow_users:	INTEGER;
total_failed_users:	INTEGER;
maximum_response_time_threshold:	REAL;
number_of_retransmissions:	INTEGER;
kilobytes_retransmitted:	INTEGER;
number_of_content_check_errors:	INTEGER;
number_of_ssl_errors:	INTEGER;
number_of_ssl_warnings:	INTEGER;
number_of_network_ssl_errors:	INTEGER;
number_of_server_ssl_errors:	INTEGER;
number_of_server_ssl_warnings:	INTEGER;
number_of_client_ssl_errors:	INTEGER;
number_of_client_ssl_warnings:	INTEGER;
ITM_WRT_Server_Summary ISA KT5_Base WRT_Server_Summary attribute group
origin_node: STRING;
data_collector_type: STRING;
sample_time: STRING;
rank: REAL;
aggby:	INTEGER;
aggby_enum:	INTEGER;
server:	STRING;
ip:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
average_client_time:	REAL;
average_load_time:	REAL;
average_network_time:	REAL;
average_server_time:	REAL;
average_resolve_time:	REAL;
request_packet_count:	INTEGER;
request_ack_packet_count:	INTEGER;
reply_packet_count:	INTEGER;
reply_ack_packet_count:	INTEGER;

(continued on next row)

ITM_WRT_Server_Summary ISA KT5_Base (Continued)

(continued from previous row)

total_kbytes:	INTEGER;
request_kbytes:	INTEGER;
reply_kbytes:	INTEGER;
average_object_count:	INTEGER;
average_object_size:	INTEGER;
total_header_requests_count:	INTEGER;
total_header_request_resolve_time:	REAL;
informational:	INTEGER;
successes:	INTEGER;
redirections:	INTEGER;
client_errors:	INTEGER;
server_errors:	INTEGER;
number_of_403s:	INTEGER;
number_of_404s:	INTEGER;
number_of_500s:	INTEGER;
ipv6:	STRING;
percent_informational:	REAL;
percent_successes:	REAL;
percent_redirections:	REAL;
percent_client_errors:	REAL;
percent_server_errors:	REAL;
percent_of_403s:	REAL;
percent_of_404s:	REAL;
percent_of_500s:	REAL;
average_render_time:	REAL;
average_users:	REAL;
average_good_users:	REAL;
average_slow_users:	REAL;
average_failed_users:	REAL;
maximum_response_time_threshold:	REAL;
number_of_retransmissions:	INTEGER;
kilobytes_retransmitted:	INTEGER;
number_of_content_check_errors:	INTEGER;
number_of_ssl_errors:	INTEGER;
number_of_ssl_warnings:	INTEGER;
number_of_network_ssl_errors:	INTEGER;
number_of_server_ssl_errors:	INTEGER;
number_of_server_ssl_warnings:	INTEGER;
number_of_client_ssl_errors:	INTEGER;
number_of_client_ssl_warnings:	INTEGER;
ITM_WRT_SubTransaction_Status ISA KT5_Base WRT_SubTransaction_Status attribute group
origin_node: STRING;
data_collector_type: STRING;
sample_time: STRING;
rank: REAL;
kt5_situation_status:	INTEGER;
kt5_situation_status_enum:	INTEGER;
transaction:	STRING;
rootuuid:	STRING;
parentuuid:	STRING;
currentuuid:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
average_client_time:	REAL;
average_load_time:	REAL;
average_network_time:	REAL;
average_server_time:	REAL;
average_resolve_time:	REAL;
request_packet_count:	INTEGER;
request_ack_packet_count:	INTEGER;
reply_packet_count:	INTEGER;
reply_ack_packet_count:	INTEGER;

(continued on next row)

ITM_WRT_SubTransaction_Status ISA KT5_Base (Continued)

(continued from previous row)

total_kbytes:	INTEGER;
request_kbytes:	INTEGER;
reply_kbytes:	INTEGER;
average_object_count:	INTEGER;
average_object_size:	INTEGER;
total_header_requests_count:	INTEGER;
total_header_request_resolve_time:	REAL;
informational:	INTEGER;
successes:	INTEGER;
redirections:	INTEGER;
client_errors:	INTEGER;
server_errors:	INTEGER;
number_of_403s:	INTEGER;
number_of_404s:	INTEGER;
number_of_500s:	INTEGER;
percent_informational:	REAL;
percent_successes:	REAL;
percent_redirections:	REAL;
percent_client_errors:	REAL;
percent_server_errors:	REAL;
percent_of_403s:	REAL;
percent_of_404s:	REAL;
percent_of_500s:	REAL;
scope:	INTEGER;
scope_enum:	STRING;
average_users:	REAL;
average_good_users:	REAL;
average_slow_users:	REAL;
average_failed_users:	REAL;
number_of_retransmissions:	INTEGER;
kilobytes_retransmitted:	INTEGER;
number_of_content_check_errors:	INTEGER;
ITM_WRT_SubTransaction_Instance ISA KT5_Base WRT_SubTransaction_Instance attribute group
origin_node: STRING;
application_pattern:	STRING;
transaction_pattern:	STRING;
client_hostname_pattern:	STRING;
client_ip_pattern:	STRING;
data_collector_type: STRING;
sample_time: STRING;
gmt_offset: INTEGER;
timezone: STRING;
referrer_url: STRING;
browser_description: STRING;
server_description: STRING;
url_hostname: STRING;
url_path: STRING;
url_file: STRING;
url_query_string: STRING;
url_anchor: STRING;
average_client_time:	REAL;
average_load_time:	REAL;
average_network_time:	REAL;
average_server_time:	REAL;
average_resolve_time:	REAL;
request_packet_count:	INTEGER;
request_ack_packet_count:	INTEGER;
reply_packet_count:	INTEGER;
reply_ack_packet_count:	INTEGER;
total_kbytes:	INTEGER;
request_kbytes:	INTEGER;
reply_kbytes:	INTEGER;
average_object_count:	INTEGER;
average_object_size:	INTEGER;
total_header_requests_count:	INTEGER;
total_header_request_resolve_time:	REAL;
timestamp:	STRING;
application_name:	STRING;
transaction_name:	STRING;
client_name:	STRING;
rootuuid:	STRING;
response_time:	REAL;
status_code:	INTEGER;
ip_source_address:	STRING;
ip_destination_address:	STRING;
ip_destination_port:	INTEGER;
url:	STRING;
application_protocol:	STRING;
page_title:	STRING;
method:	INTEGER;
method_enum:	STRING;
parentuuid:	STRING;
currentuuid:	STRING;
instanceroot:	STRING;
number_of_retransmissions:	INTEGER;
kilobytes_retransmitted:	INTEGER;
ITM_WRT_SubTransaction_Over_Time ISA KT5_Base WRT_SubTransaction_Over_Time attribute group
origin_node: STRING;
data_collector_type: STRING;
sample_time: STRING;
rank: REAL;
transaction:	STRING;
rootuuid:	STRING;
parentuuid:	STRING;
currentuuid:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
average_client_time:	REAL;
average_load_time:	REAL;
average_network_time:	REAL;
average_server_time:	REAL;
average_resolve_time:	REAL;
request_packet_count:	INTEGER;
request_ack_packet_count:	INTEGER;
reply_packet_count:	INTEGER;
reply_ack_packet_count:	INTEGER;
total_kbytes:	INTEGER;
request_kbytes:	INTEGER;
reply_kbytes:	INTEGER;
average_object_count:	INTEGER;
average_object_size:	INTEGER;
total_header_requests_count:	INTEGER;
total_header_request_resolve_time:	REAL;
informational:	INTEGER;
successes:	INTEGER;
redirections:	INTEGER;
client_errors:	INTEGER;
server_errors:	INTEGER;
number_of_403s:	INTEGER;
number_of_404s:	INTEGER;
number_of_500s:	INTEGER;
percent_informational:	REAL;
percent_successes:	REAL;
percent_redirections:	REAL;
percent_client_errors:	REAL;
percent_server_errors:	REAL;
percent_of_403s:	REAL;
percent_of_404s:	REAL;
percent_of_500s:	REAL;
average_render_time:	REAL;
total_users:	INTEGER;
total_good_users:	INTEGER;
total_slow_users:	INTEGER;
total_failed_users:	INTEGER;
number_of_retransmissions:	INTEGER;
kilobytes_retransmitted:	INTEGER;
number_of_content_check_errors:	INTEGER;
ITM_WRT_SubTransaction_Summary ISA KT5_Base WRT_SubTransaction_Summary attribute group
origin_node: STRING;
data_collector_type: STRING;
sample_time: STRING;
rank: REAL;
transaction:	STRING;
rootuuid:	STRING;
parentuuid:	STRING;
currentuuid:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
average_client_time:	REAL;
average_load_time:	REAL;
average_network_time:	REAL;
average_server_time:	REAL;
average_resolve_time:	REAL;
request_packet_count:	INTEGER;
request_ack_packet_count:	INTEGER;
reply_packet_count:	INTEGER;
reply_ack_packet_count:	INTEGER;
total_kbytes:	INTEGER;
request_kbytes:	INTEGER;
reply_kbytes:	INTEGER;
average_object_count:	INTEGER;
average_object_size:	INTEGER;
total_header_requests_count:	INTEGER;
total_header_request_resolve_time:	REAL;
informational:	INTEGER;
successes:	INTEGER;
redirections:	INTEGER;
client_errors:	INTEGER;
server_errors:	INTEGER;
number_of_403s:	INTEGER;
number_of_404s:	INTEGER;
number_of_500s:	INTEGER;
percent_informational:	REAL;
percent_successes:	REAL;
percent_redirections:	REAL;
percent_client_errors:	REAL;
percent_server_errors:	REAL;
percent_of_403s:	REAL;
percent_of_404s:	REAL;
percent_of_500s:	REAL;
average_render_time:	REAL;
average_users:	REAL;
average_good_users:	REAL;
average_slow_users:	REAL;
average_failed_users:	REAL;
number_of_retransmissions:	INTEGER;
kilobytes_retransmitted:	INTEGER;
number_of_content_check_errors:	INTEGER;
ITM_WRT_Transaction_Status ISA KT5_Base WRT_Transaction_Status attribute group
origin_node: STRING;
data_collector_type: STRING;
sample_time: STRING;
rank: REAL;
percent_informational: REAL;
percent_successes: REAL;
percent_redirections: REAL;
percent_client_errors: REAL;
percent_server_errors: REAL;
kt5_situation_status:	INTEGER;
kt5_situation_status_enum:	INTEGER;
application:	STRING;
transaction:	STRING;
client:	STRING;
server:	STRING;
rootuuid:	STRING;
importance:	INTEGER;
importance_enum:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
average_client_time:	REAL;
average_load_time:	REAL;
average_network_time:	REAL;
average_server_time:	REAL;
average_resolve_time:	REAL;
request_packet_count:	INTEGER;
request_ack_packet_count:	INTEGER;
reply_packet_count:	INTEGER;
reply_ack_packet_count:	INTEGER;

(continued on next row)

ITM_WRT_Transaction_Status ISA KT5_Base (Continued)

(continued from previous row)

total_kbytes:	INTEGER;
request_kbytes:	INTEGER;
reply_kbytes:	INTEGER;
average_object_count:	INTEGER;
average_object_size:	INTEGER;
total_header_requests_count:	INTEGER;
total_header_request_resolve_time:	REAL;
informational:	INTEGER;
successes:	INTEGER;
redirections:	INTEGER;
client_errors:	INTEGER;
server_errors:	INTEGER;
number_of_403s:	INTEGER;
number_of_404s:	INTEGER;
number_of_500s:	INTEGER;
percent_of_403s:	REAL;
percent_of_404s:	REAL;
percent_of_500s:	REAL;
scope:	INTEGER;
scope_enum:	STRING;
average_render_time:	REAL;
average_users:	REAL;
average_good_users:	REAL;
average_slow_users:	REAL;
average_failed_users:	REAL;
maximum_response_time_threshold:	REAL;
number_of_retransmissions:	INTEGER;
kilobytes_retransmitted:	INTEGER;
number_of_content_check_errors:	INTEGER;
ITM_WRT_Transaction_Instance ISA KT5_Base WRT_Transaction_Instance attribute group
origin_node: STRING;
application_pattern:	STRING;
transaction_pattern:	STRING;
client_hostname_pattern:	STRING;
client_ip_pattern:	STRING;
minimum_response_time_threshold:	REAL;
data_collector_type: STRING;
importance: INTEGER;
importance_enum: STRING;
sample_time: STRING;
gmt_offset: INTEGER;
timezone: STRING;
referrer_url: STRING;
browser_description: STRING;
server_description: STRING;
application_protocol: STRING;
url_hostname: STRING;
url_path: STRING;
url_file: STRING;
url_query_string: STRING;
url_anchor: STRING;
method: INTEGER;
method_enum: STRING;
aggby:	INTEGER;
aggby_enum:	INTEGER;
request_packet_count:	INTEGER;
request_ack_packet_count:	INTEGER;
reply_packet_count:	INTEGER;
reply_ack_packet_count:	INTEGER;
request_bytes:	INTEGER;
reply_bytes:	INTEGER;
total_object_count:	INTEGER;
total_object_size:	INTEGER;
total_header_requests_count:	INTEGER;
total_header_request_resolve_time:	REAL;
render_time:	REAL;

(continued on next row)

ITM_WRT_Transaction_Instance ISA KT5_Base (Continued)

(continued from previous row)

timestamp:	STRING;
application_name:	STRING;
transaction_name:	STRING;
client_name:	STRING;
rootuuid:	STRING;
response_time:	REAL;
status_code:	INTEGER;
ip_source_address:	STRING;
ip_destination_address:	STRING;
ip_destination_port:	INTEGER;
url:	STRING;
page_title:	STRING;
average_client_time:	REAL;
average_load_time:	REAL;
average_network_time:	REAL;
average_server_time:	REAL;
average_resolve_time:	REAL;
total_bytes:	INTEGER;
instanceroot:	STRING;
server:	STRING;
maximum_response_time_threshold:	REAL;
user:	STRING;
session:	STRING;
sort_order:	INTEGER;
sort_order_enum:	STRING;
number_of_retransmissions:	INTEGER;
kilobytes_retransmitted:	INTEGER;
content_error_type:	INTEGER;
content_error_type_enum:	STRING;
content_error_search_string:	STRING;
ITM_WRT_Transaction_Over_Time ISA KT5_Base WRT_Transaction_Over_Time attribute group
origin_node: STRING;
data_collector_type: STRING;
sample_time: STRING;
rank: REAL;
percent_informational: REAL;
percent_successes: REAL;
percent_redirections: REAL;
percent_client_errors: REAL;
percent_server_errors: REAL;
application:	STRING;
transaction:	STRING;
client:	STRING;
server:	STRING;
rootuuid:	STRING;
importance:	INTEGER;
importance_enum:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
average_client_time:	REAL;
average_load_time:	REAL;
average_network_time:	REAL;
average_server_time:	REAL;
average_resolve_time:	REAL;
request_packet_count:	INTEGER;
request_ack_packet_count:	INTEGER;
reply_packet_count:	INTEGER;
reply_ack_packet_count:	INTEGER;

(continued on next row)

ITM_WRT_Transaction_Over_Time ISA KT5_Base (Continued)

(continued from previous row)

total_kbytes:	INTEGER;
request_kbytes:	INTEGER;
reply_kbytes:	INTEGER;
average_object_count:	INTEGER;
average_object_size:	INTEGER;
total_header_requests_count:	INTEGER;
total_header_request_resolve_time:	REAL;
informational:	INTEGER;
successes:	INTEGER;
redirections:	INTEGER;
client_errors:	INTEGER;
server_errors:	INTEGER;
number_of_403s:	INTEGER;
number_of_404s:	INTEGER;
number_of_500s:	INTEGER;
percent_of_403s:	REAL;
percent_of_404s:	REAL;
percent_of_500s:	REAL;
average_render_time:	REAL;
total_users:	INTEGER;
total_good_users:	INTEGER;
total_slow_users:	INTEGER;
total_failed_users:	INTEGER;
maximum_response_time_threshold:	REAL;
number_of_retransmissions:	INTEGER;
kilobytes_retransmitted:	INTEGER;
number_of_content_check_errors:	INTEGER;
ITM_WRT_Transactions_Patterns ISA KT5_Base WRT_Transactions_Patterns attribute group
origin_node:	STRING;
sample_time:	STRING;
timestamp:	STRING;
application_name:	STRING;
application_pattern:	STRING;
transaction_name:	STRING;
transaction_pattern:	STRING;
aggregate_applications_uniquely:	INTEGER;
aggregate_applications_uniquely_enum:	STRING;
aggregate_transactions_uniquely:	INTEGER;
aggregate_transactions_uniquely_enum:	STRING;
collect_instances:	INTEGER;
collect_instances_enum:	STRING;
sampling_percent:	INTEGER;
importance:	INTEGER;
importance_enum:	STRING;
minimum_response_time_threshold:	REAL;
maximum_response_time_threshold:	REAL;
ITM_WRT_Transaction_Summary ISA KT5_Base WRT_Transaction_Summary attribute group
origin_node: STRING;
data_collector_type: STRING;
sample_time: STRING;
rank: REAL;
percent_informational: REAL;
percent_successes: REAL;
percent_redirections: REAL;
percent_client_errors: REAL;
percent_server_errors: REAL;
application:	STRING;
transaction:	STRING;
client:	STRING;
server:	STRING;
rootuuid:	STRING;
importance:	INTEGER;
importance_enum:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
average_client_time:	REAL;
average_load_time:	REAL;
average_network_time:	REAL;
average_server_time:	REAL;
average_resolve_time:	REAL;
request_packet_count:	INTEGER;
request_ack_packet_count:	INTEGER;
reply_packet_count:	INTEGER;
reply_ack_packet_count:	INTEGER;

(continued on next row)

ITM_WRT_Transaction_Summary ISA KT5_Base (Continued)

(continued from previous row)

total_kbytes:	INTEGER;
request_kbytes:	INTEGER;
reply_kbytes:	INTEGER;
average_object_count:	INTEGER;
average_object_size:	INTEGER;
total_header_requests_count:	INTEGER;
total_header_request_resolve_time:	REAL;
informational:	INTEGER;
successes:	INTEGER;
redirections:	INTEGER;
client_errors:	INTEGER;
server_errors:	INTEGER;
number_of_403s:	INTEGER;
number_of_404s:	INTEGER;
number_of_500s:	INTEGER;
percent_of_403s:	REAL;
percent_of_404s:	REAL;
percent_of_500s:	REAL;
average_render_time:	REAL;
average_users:	REAL;
average_good_users:	REAL;
average_slow_users:	REAL;
average_failed_users:	REAL;
maximum_response_time_threshold:	REAL;
number_of_retransmissions:	INTEGER;
kilobytes_retransmitted:	INTEGER;
number_of_content_check_errors:	INTEGER;
ITM_WRT_User_Sessions ISA KT5_Base WRT_User_Sessions attribute group
origin_node: STRING;
data_collector_type: STRING;
sample_time: STRING;
rank: REAL;
aggby:	INTEGER;
aggby_enum:	INTEGER;
client:	STRING;
application:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
average_client_time:	REAL;
average_load_time:	REAL;
average_network_time:	REAL;
average_server_time:	REAL;
average_resolve_time:	REAL;
request_packet_count:	INTEGER;
request_ack_packet_count:	INTEGER;
reply_packet_count:	INTEGER;
reply_ack_packet_count:	INTEGER;

(continued on next row)

ITM_WRT_User_Sessions ISA KT5_Base (Continued)

(continued from previous row)

total_kbytes:	INTEGER;
request_kbytes:	INTEGER;
reply_kbytes:	INTEGER;
average_object_count:	INTEGER;
average_object_size:	INTEGER;
total_header_requests_count:	INTEGER;
total_header_request_resolve_time:	REAL;
informational:	INTEGER;
successes:	INTEGER;
redirections:	INTEGER;
client_errors:	INTEGER;
server_errors:	INTEGER;
number_of_403s:	INTEGER;
number_of_404s:	INTEGER;
number_of_500s:	INTEGER;
percent_informational:	REAL;
percent_successes:	REAL;
percent_redirections:	REAL;
percent_client_errors:	REAL;
percent_server_errors:	REAL;
percent_of_403s:	REAL;
percent_of_404s:	REAL;
percent_of_500s:	REAL;
average_render_time:	REAL;
maximum_response_time_threshold:	REAL;
number_of_sessions:	INTEGER;
number_of_requests:	INTEGER;
scope:	INTEGER;
scope_enum:	STRING;
user:	STRING;
session:	STRING;
session_start_time:	STRING;
session_end_time:	STRING;
session_duration:	REAL;
number_of_content_check_errors:	INTEGER;
ITM_WRT_SSL_Alert_Current_Status ISA KT5_Base WRT_SSL_Alert_Current_Status attribute group
alert_name: STRING;
alert_type: INTEGER;
alert_type_enum: STRING;
client_group: STRING;
count: INTEGER;
first_occurrence: STRING;
origin_node: STRING;
sample_time: STRING;
scope: INTEGER;
server_ip: STRING;
server_port: INTEGER;
severity: INTEGER;
severity_enum: STRING;
timestamp:	STRING;

Robotic Response Time Event classes

Each of the event classes is a child of KT6_Base. The KT6_Base event class can be used for generic rules processing for any event from the Tivoli Enterprise Management Agent.
Table 4. Robotic Response Time event slots to event classes
Event class Event slot
ITM_RRT_Agent_Details ISA KT6_Base RRT_Agent_Details attribute group
timestamp: STRING;
sample_time: STRING;
origin_node: STRING;
property: STRING;
kt6_value: STRING;
property_enum: STRING;
ITM_RRT_Agent_Messages ISA KT6_Base RRT_Agent_Messages attribute group
origin_node: STRING;
sample_timestamp: STRING;
message_date_and_time: STRING;
kt6_severity: INTEGER;
kt6_severity_enum: STRING;
component: STRING;
component_enum: STRING;
message_id: STRING;
message_text: STRING;
message_source: STRING;
ITM_RRT_Application_Status ISA KT6_Base RRT_Application_Status attribute group
origin_node: STRING;
data_collector_type: STRING;
sample_time: STRING;
rank: REAL;
kt6_situation_status:	INTEGER;
kt6_situation_status_enum:	INTEGER;
application:	STRING;
importance:	INTEGER;
importance_enum:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
data_collector_type:	STRING;
total_server_response_time:	REAL;
total_connect_time:	REAL;
total_dns_time:	REAL;
total_resolve_time:	REAL;
average_server_response_time:	REAL;
average_connect_time:	REAL;
average_dns_time:	REAL;
average_resolve_time:	REAL;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
scope:	INTEGER;
scope_enum:	STRING;
maximum_response_time_threshold:	REAL;
ITM_RRT_Application_Over_Time ISA KT6_Base RRT_Application_Over_Time attribute group
origin_node: STRING;
data_collector_type: STRING;
sample_time: STRING;
rank: REAL;
aggby:	INTEGER;
aggby_enum:	INTEGER;
application:	STRING;
importance:	INTEGER;
importance_enum:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
data_collector_type:	STRING;
total_server_response_time:	REAL;
total_connect_time:	REAL;
total_dns_time:	REAL;
total_resolve_time:	REAL;
average_server_response_time:	REAL;
average_connect_time:	REAL;
average_dns_time:	REAL;
average_resolve_time:	REAL;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
maximum_response_time_threshold:	REAL;
ITM_RRT_Application_Summary ISA KT6_Base RRT_Application_Summary attribute group
origin_node: STRING;
sample_time: STRING;
rank: REAL;
aggby:	INTEGER;
aggby_enum:	INTEGER;
application:	STRING;
importance:	INTEGER;
importance_enum:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
data_collector_type:	STRING;
total_server_response_time:	REAL;
total_connect_time:	REAL;
total_dns_time:	REAL;
total_resolve_time:	REAL;
average_server_response_time:	REAL;
average_connect_time:	REAL;
average_dns_time:	REAL;
average_resolve_time:	REAL;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
maximum_response_time_threshold:	REAL;
ITM_RRT_Client_Application ISA KT6_Base RRT_Client_Application attribute group
origin_node: STRING;
sample_time: STRING;
rank: REAL;
aggby:	INTEGER;
aggby_enum:	INTEGER;
client:	STRING;
application:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
data_collector_type:	STRING;
total_server_response_time:	REAL;
total_connect_time:	REAL;
total_dns_time:	REAL;
total_resolve_time:	REAL;
average_server_response_time:	REAL;
average_connect_time:	REAL;
average_dns_time:	REAL;
average_resolve_time:	REAL;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
maximum_response_time_threshold:	REAL;
ITM_RRT_Client_Over_Time ISA KT6_Base RRT_Client_Over_Time attribute group
origin_node: STRING;
sample_time: STRING;
rank: REAL;
aggby:	INTEGER;
aggby_enum:	INTEGER;
client:	STRING;
ip:	STRING;
kt6_hostname:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
data_collector_type:	STRING;
total_server_response_time:	REAL;
total_connect_time:	REAL;
total_dns_time:	REAL;
total_resolve_time:	REAL;
average_server_response_time:	REAL;
average_connect_time:	REAL;
average_dns_time:	REAL;
average_resolve_time:	REAL;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
ipv6:	STRING;
maximum_response_time_threshold:	REAL;
ITM_RRT_Client_Patterns ISA KT6_Base RRT_Client_Patterns attribute group
origin_node: STRING;
timestamp:	STRING;
client_name:	STRING;
client_hostname_pattern:	STRING;
client_ip_pattern:	STRING;
aggregates_uniquely:	INTEGER;
aggregates_uniquely_enum:	STRING;
sample_time:	STRING;
ITM_RRT_Client_Summary ISA KT6_Base RRT_Client_Summary attribute group
origin_node: STRING;
sample_time: STRING;
rank: REAL;
aggby:	INTEGER;
aggby_enum:	INTEGER;
client:	STRING;
ip:	STRING;
kt6_hostname:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
data_collector_type:	STRING;
total_server_response_time:	REAL;
total_connect_time:	REAL;
total_dns_time:	REAL;
total_resolve_time:	REAL;
average_server_response_time:	REAL;
average_connect_time:	REAL;
average_dns_time:	REAL;
average_resolve_time:	REAL;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
ipv6:	STRING;
maximum_response_time_threshold:	REAL;
ITM_RRT_Depot_Status ISA KT6_Base RRT_Depot_Status attribute group
origin_node: STRING;
depot_node: STRING;
ITM_RRT_Robotic_Playback_Events_Sampled ISA KT6_Base RRT_Robotic_Playback_Events_Sampled attribute group
origin_node: STRING;
sample_timestamp: STRING;
event_timestamp: STRING;
script_type:	STRING;
script_type_enum:	STRING;
event_type:	STRING;
event_type_enum:	STRING;
kt6_situation_name:	STRING;
script_name:	STRING;
command_name:	STRING;
violation_data:	STRING;
expected_data:	STRING;
additional_details:	STRING;
application_name:	STRING;
transaction_name:	STRING;
captured_content_location:	STRING;
ITM_RRT_Robotic_Playback_Configuration ISA KT6_Base RRT_Robotic_Playback_Configuration attribute group
origin_node:	STRING;
sample_timestamp:	STRING;
robotic_script_name:	STRING;
script_type:	STRING;
script_type_enum:	STRING;
generic_playback_command:	STRING;
timeout_period:	INTEGER;
number_retries:	INTEGER;
retry_lag_time:	INTEGER;
concurrent:	STRING;
concurrent_enum:	STRING;
abort_on_violation:	STRING;
abort_on_violation_enum:	STRING;
cli_success_rc:	INTEGER;
ITM_RRT_Robotic_Playback_Events ISA KT6_Base RRT_Robotic_Playback_Events attribute group
origin_node: STRING;
sample_timestamp: STRING;
event_timestamp: STRING;
script_name:	STRING;
script_type:	STRING;
script_type_enum:	STRING;
event_type:	STRING;
event_type_enum:	STRING;
kt6_situation_name:	STRING;
command_name:	STRING;
violation_data:	STRING;
expected_data:	STRING;
additional_details:	STRING;
application_name:	STRING;
transaction_name:	STRING;
captured_content_location:	STRING;
ITM_RRT_Robotic_Playback_Status ISA KT6_Base RRT_Robotic_Playback_Status attribute group
origin_node: STRING;
sample_timestamp: STRING;
kt6_situation_name:	STRING;
script_name:	STRING;
script_type:	STRING;
script_type_enum:	STRING;
command_name:	STRING;
last_run_startime:	STRING;
last_updated:	STRING;
last_run_duration:	REAL;
last_run_status:	STRING;
last_run_status_enum:	STRING;
current_run_status:	STRING;
current_run_status_enum:	STRING;
application_name:	STRING;
transaction_name:	STRING;
ITM_RRT_Profile_Configuration ISA KT6_Base RRT_Profile_Configuration attribute group
origin_node: STRING;
sample_timestamp: STRING;
config_type:	INTEGER;
config_type_enum:	STRING;
config_name:	STRING;
entry_type:	INTEGER;
entry_type_enum:	STRING;
key_name:	STRING;
kt6_value:	STRING;
ITM_RRT_Realms ISA KT6_Base RRT_Realms attribute group
origin_node: STRING;
timestamp:	STRING;
realm_name:	STRING;
host_name:	STRING;
user_name:	STRING;
password:	STRING;
realm_type:	STRING;
realm_type_enum:	STRING;
auth_type:	STRING;
ITM_RRT_SubTransaction_Status ISA KT6_Base RRT_SubTransaction_Status attribute group
origin_node: STRING;
data_collector_type: STRING;
sample_time: STRING;
rank: REAL;
kt6_situation_status:	INTEGER;
kt6_situation_status_enum:	INTEGER;
transaction:	STRING;
rootuuid:	STRING;
parentuuid:	STRING;
currentuuid:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
total_server_response_time:	REAL;
total_connect_time:	REAL;
total_dns_time:	REAL;
total_resolve_time:	REAL;
average_server_response_time:	REAL;
average_connect_time:	REAL;
average_dns_time:	REAL;
average_resolve_time:	REAL;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
scope:	INTEGER;
scope_enum:	STRING;
minimum_response_time_threshold:	REAL;
maximum_response_time_threshold:	REAL;
ITM_RRT_SubTransaction_Instance ISA KT6_Base RRT_SubTransaction_Instance attribute group
origin_node: STRING;
application_pattern:	STRING;
transaction_pattern:	STRING;
client_hostname_pattern:	STRING;
client_ip_pattern:	STRING;
data_collector_type: STRING;
sample_time: STRING;
timestamp:	STRING;
application_name:	STRING;
transaction_name:	STRING;
client_name:	STRING;
rootuuid:	STRING;
response_time:	REAL;
status_code:	INTEGER;
parentuuid:	STRING;
currentuuid:	STRING;
instanceroot:	STRING;
total_server_response_time:	REAL;
total_connect_time:	REAL;
total_dns_time:	REAL;
total_resolve_time:	REAL;
average_server_response_time:	REAL;
average_connect_time:	REAL;
average_dns_time:	REAL;
average_resolve_time:	REAL;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
minimum_response_time_threshold:	REAL;
maximum_response_time_threshold:	REAL;
ITM_RRT_SubTransaction_Over_Time ISA KT6_Base RRT_SubTransaction_Over_Time attribute group
origin_node: STRING;
data_collector_type: STRING;
sample_time: STRING;
rank: REAL;
transaction:	STRING;
rootuuid:	STRING;
parentuuid:	STRING;
currentuuid:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
total_server_response_time:	REAL;
total_connect_time:	REAL;
total_dns_time:	REAL;
total_resolve_time:	REAL;
average_server_response_time:	REAL;
average_connect_time:	REAL;
average_dns_time:	REAL;
average_resolve_time:	REAL;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
minimum_response_time_threshold:	REAL;
maximum_response_time_threshold:	REAL;
ITM_RRT_SubTransaction_Summary ISA KT6_Base RRT_SubTransaction_Summary attribute group
origin_node: STRING;
data_collector_type: STRING;
sample_time: STRING;
rank: REAL;
transaction:	STRING;
rootuuid:	STRING;
parentuuid:	STRING;
currentuuid:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
total_server_response_time:	REAL;
total_connect_time:	REAL;
total_dns_time:	REAL;
total_resolve_time:	REAL;
average_server_response_time:	REAL;
average_connect_time:	REAL;
average_dns_time:	REAL;
average_resolve_time:	REAL;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
minimum_response_time_threshold:	REAL;
maximum_response_time_threshold:	REAL;
ITM_RRT_Transaction_Status ISA KT6_Base RRT_Transaction_Status attribute group
origin_node: STRING;
data_collector_type: STRING;
sample_time: STRING;
kt6_situation_status:	INTEGER;
kt6_situation_status_enum:	INTEGER;
application:	STRING;
transaction:	STRING;
client:	STRING;
server:	STRING;
rootuuid:	STRING;
importance:	INTEGER;
importance_enum:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
rank:	REAL;
total_server_response_time:	REAL;
total_connect_time:	REAL;
total_dns_time:	REAL;
total_resolve_time:	REAL;
average_server_response_time:	REAL;
average_connect_time:	REAL;
average_dns_time:	REAL;
average_resolve_time:	REAL;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
scope:	INTEGER;
scope_enum:	STRING;
maximum_response_time_threshold:	REAL;
ITM_RRT_Transaction_Instance ISA KT6_Base RRT_Transaction_Instance attribute group
origin_node: STRING;
application_pattern:	STRING;
transaction_pattern:	STRING;
client_hostname_pattern:	STRING;
client_ip_pattern:	STRING;
data_collector_type: STRING;
sample_time: STRING;
aggby:	INTEGER;
aggby_enum:	INTEGER;
timestamp:	STRING;
application_name:	STRING;
transaction_name:	STRING;
client_name:	STRING;
rootuuid:	STRING;
instanceroot:	STRING;
response_time:	REAL;
status_code:	INTEGER;
minimum_response_time_threshold:	REAL;
importance:	INTEGER;
importance_enum:	STRING;
total_server_response_time:	REAL;
total_connect_time:	REAL;
total_dns_time:	REAL;
total_resolve_time:	REAL;
average_server_response_time:	REAL;
average_connect_time:	REAL;
average_dns_time:	REAL;
average_resolve_time:	REAL;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
server:	STRING;
maximum_response_time_threshold:	REAL;
ITM_RRT_Transaction_Over_Time ISA KT6_Base RRT_Transaction_Over_Time attribute group
origin_node: STRING;
sample_time: STRING;
aggby:	INTEGER;
aggby_enum:	INTEGER;
application:	STRING;
transaction:	STRING;
client:	STRING;
server:	STRING;
rootuuid:	STRING;
importance:	INTEGER;
importance_enum:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
rank:	REAL;
total_server_response_time:	REAL;
total_connect_time:	REAL;
total_dns_time:	REAL;
total_resolve_time:	REAL;
average_server_response_time:	REAL;
average_connect_time:	REAL;
average_dns_time:	REAL;
average_resolve_time:	REAL;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
maximum_response_time_threshold:	REAL;
ITM_RRT_Transactions_Patterns ISA KT6_Base RRT_Transactions_Patterns attribute group
origin_node: STRING;
sample_time: STRING;
timestamp:	STRING;
application_name:	STRING;
application_pattern:	STRING;
transaction_name:	STRING;
transaction_pattern:	STRING;
aggregate_applications_uniquely:	INTEGER;
aggregate_applications_uniquely_enum:	STRING;
aggregate_transactions_uniquely:	INTEGER;
aggregate_transactions_uniquely_enum:	STRING;
collect_instances:	INTEGER;
collect_instances_enum:	STRING;
sampling_percent:	INTEGER;
importance:	INTEGER;
importance_enum:	STRING;
minimum_response_time_threshold:	REAL;
maximum_response_time_threshold:	REAL;
ITM_RRT_Transaction_Summary ISA KT6_Base RRT_Transaction_Summary attribute group
origin_node: STRING;
data_collector_type: STRING;
sample_time: STRING;
aggby:	INTEGER;
aggby_enum:	INTEGER;
application:	STRING;
transaction:	STRING;
client:	STRING;
server:	STRING;
rootuuid:	STRING;
importance:	INTEGER;
importance_enum:	STRING;
timestamp:	STRING;
data_interval:	INTEGER;
percent_failed:	REAL;
percent_slow:	REAL;
percent_good:	REAL;
percent_available:	REAL;
average_response_time:	REAL;
failed_requests:	INTEGER;
total_requests:	INTEGER;
slow_requests:	INTEGER;
good_requests:	INTEGER;
minimum_response_time_threshold:	REAL;
minimum_response_time:	REAL;
maximum_response_time:	REAL;
rank:	REAL;
total_server_response_time:	REAL;
total_connect_time:	REAL;
total_dns_time:	REAL;
total_resolve_time:	REAL;
average_server_response_time:	REAL;
average_connect_time:	REAL;
average_dns_time:	REAL;
average_resolve_time:	REAL;
client_time:	REAL;
network_time:	REAL;
server_time:	REAL;
maximum_response_time_threshold:	REAL;