Advertisement
Guest User

Untitled

a guest
Dec 28th, 2016
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.53 KB | None | 0 0
  1. #Application ID
  2. app_id=045be94f-026c-422a-91f7-a2adb0ca90f0
  3.  
  4. #Network configuration. By default data is sent to ${server_url}
  5. #proxy_host=
  6. #proxy_port=
  7. #proxy_user=
  8. #proxy_password=
  9. #The proxy types are HTTP or SOCKS (defaults to HTTP)
  10. #proxy_type=HTTP
  11.  
  12. #Log level (defaults to SEVERE)
  13. #The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value)
  14. #In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.
  15. #log_level=SEVERE
  16. #Log directory without trailing slash (defaults to the same directory as nudge.jar)
  17. #log_directory=
  18. #Maximum count of nudge.log files, the default is 5
  19. #log_rotation_count=5
  20.  
  21. #A comma separated list of package that should never be instrumented (black list).
  22. #WARNING:this parameter will be overridden by included_classpath.
  23. #excluded_classpath=
  24. #A comma separated list of package that may be instrumented (white list).
  25. #included_classpath=
  26. #A comma separated list of package containing class loaders to exclude.
  27. #excluded_classloaders=
  28.  
  29. #A comma separated list of regex to indicate which class and method to instrument.
  30. #The syntax is very close to AOP pointcut with only a subset of features implemented.
  31. #Example 1 : public * * : all public methods are instrumented
  32. #Example 2 : * * set* : all methods that start with set are instrumented
  33. #Example 3 : * com.xyz.service.* * : all methods in the package com.xyz.service
  34. #Example 4 : * com.xyz.*.Dao* * : all methods in classes whith a name starting with Dao in com.xyz sub packages
  35. #trace_classpath_regex=
  36.  
  37. #Does the agent capture HTTP parameters (defaults to false)
  38. #capture_params=false
  39. #A comma separated list of HTTP parameters (case sensitive) that should never be captured (black list).
  40. #WARNING:this parameter will be overridden by allowed_params.
  41. #ignored_params=LOGIN,PWD,PASSWORD
  42. #A comma separated list of HTTP parameters (case sensitive) captured (white list).
  43. #allowed_params=
  44.  
  45. #SQL Statement anonymization (defaults to true)
  46. #query_anonymization=true
  47. #Activates SQL threshold (in seconds)
  48. #When activated, queries that take longer than long_query_threshold are not anonymised
  49. #long_query_threshold=10
  50.  
  51. #A comma separated list of handlers : http (default), file
  52. #the file handler writes data in files located in ${log_directory}
  53. #handlers=http
  54. #when activated (with 'handlers=file'), files are zipped
  55. #file_compression=false
  56. # URL of the collector (destination endpoint for probe's data if 'handlers=http')
  57. #server_url=https://collector.nudge-apm.com
  58. #packet_size=500
  59. #Data compression
  60. #compressed=true
  61.  
  62. #JMX monitoring (defaults to false)
  63. #activate_jmx=false
  64. #A semicolon separated list of MBeans objectName.
  65. #For example, this objectName refers to a mBean exposed by Tomcat : Catalina:type=RequestProcessor,worker="http-bio-8080",name=HttpRequest1
  66. #This mBean can also be retrieved with a wildcard, like : Catalina:type=RequestProcessor,*
  67. #Be aware of different uses of wildcard between of J2SE 5.0 and Java SE 6 : http://docs.oracle.com/javase/6/docs/technotes/guides/jmx/enhancements.html
  68. #mbeans_monitored=
  69.  
  70. #Real User Monitoring (defaults to false)
  71. #Injects javascript in JSP to access timing information related to navigation
  72. #activate_rum=false
  73.  
  74. #Threads depth analysis
  75. #thread_depth=1000
  76.  
  77. #Writes instrumented classes in log directory. This parameter is useful for debugging only.
  78. #dump_instrumented_classes=true
  79.  
  80. #By default, the probe collects the activity of runnables
  81. #log_runnable=true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement