ConfigurationMBean
, DescriptorBean
, javax.management.DynamicMBean
, javax.management.MBeanRegistration
, javax.management.NotificationBroadcaster
, SettableBean
, WebLogicMBean
public interface ServerFailureTriggerMBean extends ConfigurationMBean
DEFAULT_EMPTY_BYTE_ARRAY
Modifier and Type | Method | Description |
---|---|---|
boolean |
getHeapDumpingOnDeadlock() |
Get the attribute of HeapDumpingOnDeadlock
|
boolean |
getHeapDumpingOnMaxStuckThread() |
Get the attribute of HeapDumpingOnMaxStuckThread
|
int |
getMaxStuckThreadTime() |
The number of seconds that a thread must be continually working
before this server diagnoses the thread as being stuck.
|
int |
getStuckThreadCount() |
The number of stuck threads after which the server is transitioned into
FAILED state.
|
void |
setHeapDumpingOnDeadlock(boolean enabled) |
Sets the attribute of the HeapDumpingOnDeadlock.
|
void |
setHeapDumpingOnMaxStuckThread(boolean enabled) |
Sets the value of the HeapDumpingOnMaxStuckThread.
|
void |
setMaxStuckThreadTime(int time) |
Sets the value of the MaxStuckThreadTime attribute.
|
void |
setStuckThreadCount(int count) |
Sets the value of the StuckThreadCount attribute.
|
freezeCurrentValue, getId, getInheritedProperties, getName, getNotes, isDynamicallyCreated, isInherited, isSet, restoreDefaultValue, setComments, setDefaultedMBean, setName, setNotes, setPersistenceEnabled, unSet
addPropertyChangeListener, createChildCopyIncludingObsolete, getParentBean, isEditable, removePropertyChangeListener
getAttribute, getAttributes, invoke, setAttribute, setAttributes
postDeregister, postRegister, preDeregister, preRegister
addNotificationListener, getNotificationInfo, removeNotificationListener
getMBeanInfo, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setParent
int getMaxStuckThreadTime()
The number of seconds that a thread must be continually working before this server diagnoses the thread as being stuck.
For example, if you set this to 600 seconds, WebLogic Server considers a thread to be "stuck" after 600 seconds of continuous use.
void setMaxStuckThreadTime(int time)
Sets the value of the MaxStuckThreadTime attribute.
time
- The new stuckThreadMaxTime value in secondsgetMaxStuckThreadTime()
int getStuckThreadCount()
The number of stuck threads after which the server is transitioned into FAILED state. There are options in OverloadProtectionMBean to suspend and shutdown a FAILED server. By default, the server continues to run in FAILED state.
If the StuckThreadCount value is set to zero then the server never transitions into FAILED server irrespective of the number of stuck threads.
void setStuckThreadCount(int count)
Sets the value of the StuckThreadCount attribute.
count
- The new StuckThreadCount valuegetStuckThreadCount()
boolean getHeapDumpingOnDeadlock()
Get the attribute of HeapDumpingOnDeadlock
void setHeapDumpingOnDeadlock(boolean enabled)
Sets the attribute of the HeapDumpingOnDeadlock. True: enabled. False: disabled If enabled and deadlock occurrs, it will generate heap dump to the directory of the value from WLDFServerDiagnosticMBean.getDiagnosticDumpsDir().
enabled
- boolean getHeapDumpingOnMaxStuckThread()
Get the attribute of HeapDumpingOnMaxStuckThread
getStuckThreadCount()
void setHeapDumpingOnMaxStuckThread(boolean enabled)
Sets the value of the HeapDumpingOnMaxStuckThread. True: enabled. False: disabled
If enabled and max stuck thread limit is reached, it will generate heap dump to the directory of the value from WLDFServerDiagnosticMBean.getDiagnosticDumpsDir().enabled
- getStuckThreadCount()