ibm-information-center/dist/eclipse/plugins/i5OS.ic.rzatz_5.4.0.1/51/program/jrasmsgt.htm

162 lines
11 KiB
HTML
Raw Normal View History

2024-04-02 14:02:31 +00:00
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<LINK rel="stylesheet" type="text/css" href="../../../rzahg/ic.css">
<title>JRas messages and trace event types</title>
</head>
<BODY>
<!-- Java sync-link -->
<SCRIPT LANGUAGE="Javascript" SRC="../../../rzahg/synch.js" TYPE="text/javascript"></SCRIPT>
<h4><a name="jrasmsgt"></a>JRas messages and trace event types</h4>
<p>This topic describes JRas message and trace event types.</p>
<p><strong>Event types</strong></p>
<p>The base message and trace event types defined by the standalone JRas logging toolkit are not the same as the &quot;native&quot; types recognized by the WebSphere Application Server - Express runtime. Instead the basic JRas types are mapped onto the native types. This mapping may vary by platform or edition. The mapping is discussed below.</p>
<p><strong>Platform Message Event Types</strong></p>
<p>The message event types that are recognized and processed by the WebSphere Application Server - Express runtime are defined in the RASIMessageEvent interface provided by the standalone JRas logging toolkit. These message types are mapped onto the native message types as follows.</p>
<table border="1" width="640">
<tr align="left">
<th>WebSphere Application Server - Express native type</th>
<th>JRas RASIMessageEvent type</th>
</tr>
<tr align="left">
<td>Audit</td>
<td>TYPE_INFO, TYPE_INFORMATION</td>
</tr>
<tr align="left">
<td>Warning</td>
<td>TYPE_WARN, TYPE_WARNING</td>
</tr>
<tr align="left">
<td>Error</td>
<td>TYPE_ERR, TYPE_ERROR</td>
</tr>
</table>
<p><strong>Platform Trace Event Types</strong></p>
<p>
The trace event types recognized and processed by the WebSphere Application Server - Express runtime are defined in the RASITraceEvent interface provided by the standalone JRas logging toolkit. The RASITraceEvent interface provides a rich and overly complex set of types. This interface defines both a simple set of levels, as well as a set of enumerated types.</p>
<ul>
<li>For a user who prefers a simple set of levels, RASITraceEvent provides TYPE_LEVEL1, TYPE_LEVEL2, and TYPE_LEVEL3. The implementations provide support for this set of levels. The levels are hierarchical (that is, enabling level 2 will also enable level 1, enabling level 3 also enables levels 1 and 2). </li>
<li>For users who prefer a more complex set of values that can be OR'd together, RASITraceEvent provides TYPE_API, TYPE_CALLBACK, TYPE_ENTRY_EXIT, TYPE_ERROR_EXC, TYPE_MISC_DATA, TYPE_OBJ_CREATE, TYPE_OBJ_DELETE, TYPE_PRIVATE, TYPE_PUBLIC, TYPE_STATIC, and TYPE_SVC. </li>
</ul>
<p>The trace event types are mapped onto the native trace types. Mapping WebSphere Application Server - Express trace types to JRas RASITraceEvent &quot;Level&quot; types is as follows:</p>
<table border="1" width="640">
<tr align="left">
<th>WebSphere Application Server - Express native type</th>
<th>JRas RASITraceEvent level type</th>
</tr>
<tr align="left">
<td>Event</td>
<td>TYPE_LEVEL1</td>
</tr>
<tr align="left">
<td>EntryExit</td>
<td>TYPE_LEVEL2</td>
</tr>
<tr align="left">
<td>Debug</td>
<td>TYPE_LEVEL3</td>
</tr>
</table>
<p>Mapping WebSphere Application Server - Express trace types to JRas RASITraceEvent enumerated types is as follows:</p>
<table border="1" width="640">
<tr align="left">
<th>WebSphere Application Server native type</th>
<th>JRas RASITraceEvent enumerated types</th>
</tr>
<tr align="left">
<td>Event</td>
<td>TYPE_ERROR_EXC, TYPE_SVC, TYPE_OBJ_CREATE, TYPE_OBJ_DELETE</td>
</tr>
<tr align="left">
<td>EntryExit</td>
<td>TYPE_ENTRY_EXIT, TYPE_API, TYPE_CALLBACK, TYPE_PRIVATE, TYPE_PUBLIC, TYPE_STATIC</td>
</tr>
<tr align="left">
<td>Debug</td>
<td>TYPE_MISC_DATA</td>
</tr>
</table>
<p>
For simplicity, it is recommended that one or the other of the tracing type methodologies is used consistently throughout the application. For users who decide to use the non-level types, it is further recommended that you choose one type from each category and use those consistently throughout the application to avoid confusion.</p>
<p><strong>Message and Trace parameters</strong></p>
<p>The various message logging and trace method signatures accept parameter types of Object, Object[] and Throwable. WebSphere Application Server - Express processes and formats the various parameter types as follows.</p>
<ul>
<li><strong>Primitives</strong>
<p>Primitives, such as int and long are not recognized as subclasses of Object and cannot be directly passed to one of these methods. A primitive value must be transformed to a proper Object type (Integer, Long) before being passed as a parameter. </p>
</li>
<li><strong>Object</strong>
<p>toString() is called on the object and the resulting String is displayed. The toString() method should be implemented appropriately for any object passed to a message logging or trace method. It is the responsibility of the caller to guarantee that the toString() method does not display confidential data such as passwords in clear text, and does not cause infinite recursion. </p>
</li>
<li><strong>Object[]</strong>
<p>The Object[] is provided for the case when more than one parameter is passed to a message logging or trace method. toString() is called on each Object in the array. Nested arrays are not handled. (i.e. none of the elements in the Object array should be an array).</p>
</li>
<li><strong>Throwable</strong>
<p>The stack trace of the Throwable is retrieved and displayed.</p>
</li>
<li><strong>Array of Primitives</strong>
<p>An array of primitive (e.g. byte[], int[] is recognized as an Object, but is treated somewhat as a second cousin of Object by Java. In general, arrays of primitives should be avoided, if possible. If arrays of primitives are passed, the results are indeterminate and may change depending on the type of array passed, the API used to pass the array and the release of the product. For consistent results, user code should preprocess and format the primitive array into some type of String form before passing it to the method. If such preprocessing is not performed, the following may result.</p>
<ul>
<li>[B@924586a0b - This is deciphered as &quot;a byte array at location X&quot;. This is typically returned when an array is passed as a member of an Object[]. It is the result of calling toString() on the byte[].
Illegal trace argument : array of long. This is typically returned when an array of primitives is passed to a method taking an Object.</li>
<li>01040703... : the hex representation of an array of bytes. Typically this may be seen when a byte array is passed to a method taking a single Object. This behavior is subject to change and should not be relied on.
&quot;1&quot; &quot;2&quot; ... : The String representation of the members of an int[] formed by converting each element to an Integer and calling toString on the Integers. This behavior is subject to change and should not be relied on.</li>
<li>[Ljava.lang.Object;@9136fa0b : An array of objects. Typically this is seen when an array containing nested arrays is passed.</li>
</ul>
</li>
<li><strong>Controlling message logging</strong>
<p>Writing a message to a WebSphere Application Server - Express log requires that the message type passes three levels of filtering or screening.</p>
<ol>
<li>The message event type must be one of the message event types defined in the RASIMessageEvent interface.</li>
<li>Logging of that message event type must be enabled by the state of the message logger's mask.</li>
<li>The message event type must pass any filtering criteria established by the WebSphere Application Server - Express runtime itself.</li>
</ol>
<p>When a WebSphere Application Server - Express logger is obtained from the Manager, the initial setting of the mask is to forward all native message event types to the WebSphere Application Server - Express handler. It is possible to control what messages get logged by programmatically setting the state of the message logger's mask.</p>
<p>Some editions of the product allow the user to specify a message filter level for a server process. When such a filter level is set, only messages at the specified severity levels are written to WebSphere Application Server - Express logs. This means that messages types that pass the message logger's mask check may be filtered out by the WebSphere Application Server - Express itself.</p></li>
<li><strong>Controlling Tracing</strong>
<p>
Each edition of the product provides a mechanism for enabling or disabling trace. The various editions may support static trace enablement (trace settings are specified before the server is started), dynamic trace enablement (trace settings for a running server process can be dynamically modified) or both.</p>
<p>Writing a trace record to a WebSphere Application Server - Express requires that the trace type passes three levels of filtering or screening.</p>
<ol>
<li>The trace event type must be one of the trace event types defined in the RASITraceEvent interface.</li>
<li>Logging of that trace event type must be enabled by the state of the trace logger's mask.</li>
<li>The trace event type must pass any filtering criteria established by the WebSphere Application Server runtime itself.</li>
</ol>
<p>When a logger is obtained from the Manager, the initial setting of the mask is to suppress all trace types. The exception to this rule is the case where the WebSphere Application Server - Express runtime supports static trace enablement and a non-default startup trace state for that trace logger has been specified. Unlike message loggers, the WebSphere Application Server - Express may dynamically modify the state of a trace loggers trace mask. WebSphere Application Server - Express only modifies the portion of the trace logger's mask corresponding to the values defined in the RASITraceEvent interface. WebSphere Application Server - Express does not modify undefined bits of the mask that may be in use for user defined types.</p>
<p>
When the dynamic trace enablement feature available on some platforms is used, the trace state change is reflected both in the Application Server runtime and the trace loggers trace mask. If user code programmatically changes the bits in the trace mask corresponding to the values defined by in the RASITraceEvent interface, the trace logger's mask state and the runtime state becomes unsynchronized and unexpected results occur. Therefore, programmatically changing the bits of the mask corresponding to the values defined in the RASITraceEvent interface is not allowed.</p>
</li>
</ul>
</body>
</html>