dc.properties 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # Licensed Materials - Property of IBM
  2. #
  3. # IBM Monitoring and Diagnostic Tools for Java (TM) - Diagnostics Collector v01.0
  4. #
  5. # Copyright IBM Corp. 2008, 2011
  6. #
  7. # Java Diagnostics Collector settings file
  8. #
  9. # This file can be extended by the user to collect any readable file when there
  10. # is a Java problem. This file uses the java.util.Properties file format.
  11. #
  12. # For any property that begins with "file." the Diagnostics Collector will
  13. # try to collect the file specified in the property value. You can specify an
  14. # absolute path or a path relative to the current working directory. The part of
  15. # the property name after "file." is arbitrary. It is reported in the log file
  16. # to show whether the file was found and collected.
  17. #
  18. # For example:
  19. #
  20. # file.unixdebugoutput=/tmp/debug.out
  21. # or
  22. # file.windowsdebugoutput=c:\\temp\\debug.out
  23. #
  24. # The java.util.Properties format uses the backslash as an escape character so
  25. # Windows pathnames in the property values must either use double backslashes
  26. # or double backslashes.
  27. # The settings.id property can be set to any string. It is reported in the log
  28. # file, to help to verify that the correct settings file is in use.
  29. settings.id=default
  30. # The loglevel.file property controls the amount of information reported in the
  31. # log file. Valid values for this property are:
  32. # off - No information reported
  33. # severe - Errors are reported
  34. # warning - Report warnings in addition to information reported by "severe"
  35. # info - More detailed information in addition to information reported by "warning"
  36. # config - Configuration information reported in addition to information reported by "info"
  37. # fine - Tracing information reported in addition to information reported by "config"
  38. # finer - Detailed tracing information reported in addition to information reported by "fine"
  39. # finest - Report even more tracing information in addition to information reported by "finer"
  40. # all - Report everything
  41. # The default setting for this property is "config"
  42. loglevel.file=config
  43. # The loglevel.console property controls the amount of information reported in
  44. # stderr. Valid values for this property are as described above for loglevel.file.
  45. # The default setting for this property is "warning"
  46. loglevel.console=warning
  47. # Perform a diagnostics configuration check at VM startup.
  48. # config.check=true
  49. # Set config.check.javacore=true to enable a javacore at VM start up. This
  50. # slows down VM start up but enables the most thorough level of diagnostics
  51. # configuration checking.
  52. # config.check.javacore=true
  53. # Set run.jextract=false to prevent the Diagnostics Collector from automatically
  54. # running jextract on detected System dumps.
  55. # run.jextract=false