FileDocCategorySizeDatePackage
DiagnosticServiceConfig.javaAPI DocGlassfish v2 API5189Fri May 04 22:30:32 BST 2007com.sun.appserv.management.config

DiagnosticServiceConfig

public interface DiagnosticServiceConfig implements ConfigElement, PropertiesAccess
Configuration for the <diagnostic-service> for a <config> in a domain. This element controls the output of the diagnostic information collected when requested by the management clients. The actual information collected is documented in product documentation.
since
Appserver 9.0

Fields Summary
public static final String
J2EE_TYPE
The j2eeType as returned by {@link com.sun.appserv.management.base.AMX#getJ2EEType}.
Constructors Summary
Methods Summary
public booleangetCaptureAppDD()

return
true if app deployment descriptor data is being collected, false otherwise

public booleangetCaptureHADBInfo()

return
true if HA data-base information is being collected, false otherwise

public booleangetCaptureInstallLog()

return
true if installation log is collected for diagnosis, false otherwise

public booleangetCaptureSystemInfo()

return
true if operating system information is being collected, false otherwise

public booleangetComputeChecksum()

return
true if the diagnostic service is computing the checksum for the data

public java.lang.StringgetMaxLogEntries()

return
number of log entries to be read from the log file. Defaults to 500.

public java.lang.StringgetMinLogLevel()
The level at which the messages for diagnostic services will be retrieved. All the messages at a level equal to or more than this level will be captured.

return
the log level of the messages for diagnostic service
see
java.util.logging.Level

public booleangetVerifyConfig()
Indicates whether output of verify-config asadmin command is included in the diagnostic report.

public voidsetCaptureAppDD(boolean value)
See {@link #getCaptureAppDD}.

public voidsetCaptureHADBInfo(boolean value)
See {@link #getCaptureHADBInfo}.

public voidsetCaptureInstallLog(boolean value)
See {@link #getCaptureInstallLog}.

public voidsetCaptureSystemInfo(boolean value)
Set capturing system information to specified value.

public voidsetComputeChecksum(boolean value)
See {@link #getComputeChecksum}.

public voidsetMaxLogEntries(java.lang.String entries)
See {@link #getMaxLogEntries}.

public voidsetMinLogLevel(java.lang.String level)
See {@link #getMinLogLevel}. The specified value must be a valid {@link java.util.logging.Level}.

public voidsetVerifyConfig(boolean verify)
See {@link #getVerifyConfig}