Package | Description |
---|---|
org.glassfish.jersey.message.internal |
Common Jersey internal messaging classes.
|
org.glassfish.jersey.server.internal |
Jersey server-side internal classes.
|
Modifier and Type | Class and Description |
---|---|
class |
MsgTraceEvent
Common tracing events.
|
Modifier and Type | Field and Description |
---|---|
private TracingLogger.Event |
TracingInfo.Message.event
Event type.
|
Modifier and Type | Method and Description |
---|---|
private TracingLogger.Event |
TracingInfo.Message.getEvent() |
Modifier and Type | Method and Description |
---|---|
abstract boolean |
TracingLogger.isLogEnabled(TracingLogger.Event event)
Test if a tracing support is enabled (according to
propertiesDelegate setting) and
if event can be logged (according to event.level and threshold level set). |
boolean |
TracingLogger.TracingLoggerImpl.isLogEnabled(TracingLogger.Event event) |
abstract void |
TracingLogger.log(TracingLogger.Event event,
java.lang.Object... args)
Try to log event according to event level and request context threshold level setting.
|
void |
TracingLogger.TracingLoggerImpl.log(TracingLogger.Event event,
java.lang.Object... args) |
abstract void |
TracingLogger.logDuration(TracingLogger.Event event,
long fromTimestamp,
java.lang.Object... args)
Try to log event according to event level and request context threshold level setting.
|
void |
TracingLogger.TracingLoggerImpl.logDuration(TracingLogger.Event event,
long fromTimestamp,
java.lang.Object... args) |
private void |
TracingLogger.TracingLoggerImpl.logImpl(TracingLogger.Event event,
long duration,
java.lang.Object... messageArgs)
Log message for specified event type.
|
abstract long |
TracingLogger.timestamp(TracingLogger.Event event)
If logging support is switched on for current request and event setting the method returns current timestamp in nanos.
|
long |
TracingLogger.TracingLoggerImpl.timestamp(TracingLogger.Event event) |
protected void |
InterceptorExecutor.traceAfter(T interceptor,
TracingLogger.Event event)
Tracing support - log invocation of interceptor AFTER context.proceed() call.
|
protected void |
InterceptorExecutor.traceBefore(T interceptor,
TracingLogger.Event event)
Tracing support - log invocation of interceptor BEFORE context.proceed() call.
|
Constructor and Description |
---|
Message(TracingLogger.Event event,
long duration,
java.lang.String[] args)
Create a new trace message.
|
Modifier and Type | Class and Description |
---|---|
class |
ServerTraceEvent
Server side tracing events.
|