Advertisement
Guest User

Untitled

a guest
Sep 6th, 2016
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.93 KB | None | 0 0
  1. ---
  2. init_config:
  3. custom_jar_paths:
  4. - /usr/share/jboss-as/bin/client/jboss-cli-client.jar
  5. instances:
  6. -
  7. jmx_url: "service:jmx:remoting-jmx://localhost:4547"
  8. user: monitor
  9. password: PASSWORD
  10. name: jmx_jboss_rsd_test
  11. conf:
  12. - include:
  13. domain: java.lang
  14. type: MemoryPool
  15. name: CMS Old Gen
  16. attribute:
  17. Usage.committed:
  18. alias: cms.old.gen.usage.committed
  19. metric_type: gauge
  20. Usage.used:
  21. alias: cms.old.gen.usage.used
  22. metric_type: gauge
  23. Usage.max:
  24. alias: cms.old.gen.usage.max
  25. metric_type: gauge
  26. - include:
  27. domain: java.lang
  28. type: MemoryPool
  29. name: Par Eden Space
  30. attribute:
  31. Usage.committed:
  32. alias: par.eden.space.usage.committed
  33. metric_type: gauge
  34. Usage.used:
  35. alias: par.eden.space.usage.used
  36. metric_type: gauge
  37. Usage.max:
  38. alias: par.eden.space.usage.max
  39. metric_type: gauge
  40. - include:
  41. domain: java.lang
  42. type: MemoryPool
  43. name: Par Survivor Space
  44. attribute:
  45. Usage.committed:
  46. alias: par.survivor.space.usage.committed
  47. metric_type: gauge
  48. Usage.used:
  49. alias: par.survivor.space.usage.used
  50. metric_type: gauge
  51. Usage.max:
  52. alias: par.survivor.space.usage.max
  53. metric_type: gauge
  54. - include:
  55. domain: java.lang
  56. type: GarbageCollector
  57. name: ParNew
  58. attribute:
  59. LastGcInfo.duration:
  60. alias: parnew.lastgcinfo.duration
  61. metric_type: gauge
  62. - include:
  63. domain: java.lang
  64. type: GarbageCollector
  65. name: ConcurrentMarkSweep
  66. attribute:
  67. LastGcInfo.duration:
  68. alias: cms.lastgcinfo.duration
  69. metric_type: gauge
  70. - include:
  71. domain: java.lang
  72. type: OperatingSystem
  73. attribute:
  74. MaxFileDescriptorCount:
  75. alias: java.lang.os.maxfiledescriptor.count
  76. metric_type: gauge
  77. - include:
  78. domain: java.lang
  79. type: OperatingSystem
  80. attribute:
  81. OpenFileDescriptorCount:
  82. alias: java.lang.os.openfiledescriptor.count
  83. metric_type: gauge
  84. - include:
  85. domain: jboss.as
  86. subsystem: threads
  87. unbounded-queue-thread-pool: bookplan-clients-thread-pool
  88. attribute:
  89. activeCount:
  90. alias: jboss.as.threads.bookplanclientsthreadpool.active.count
  91. metric_type: gauge
  92. - include:
  93. domain: jboss.as
  94. subsystem: datasources
  95. xa-data-source: bookline-logs
  96. statistics: pool
  97. attribute:
  98. ActiveCount:
  99. alias: jboss.as.datasource.booklinelogs.active.count
  100. metric_type: gauge
  101. InUseCount:
  102. alias: jboss.as.datasource.booklinelogs.inuse.count
  103. metric_type: gauge
  104. AvailableCount:
  105. alias: jboss.as.datasource.booklinelogs.available.count
  106. metric_type: gauge
  107. - include:
  108. domain: jboss.as
  109. subsystem: datasources
  110. xa-data-source: bookline
  111. statistics: pool
  112. attribute:
  113. ActiveCount:
  114. alias: jboss.as.datasource.bookline.active.count
  115. metric_type: gauge
  116. InUseCount:
  117. alias: jboss.as.datasource.bookline.inuse.count
  118. metric_type: gauge
  119. AvailableCount:
  120. alias: jboss.as.datasource.bookline.available.count
  121. metric_type: gauge
  122. - include:
  123. domain: jboss.as
  124. subsystem: datasources
  125. xa-data-source: bookline-ifdb
  126. statistics: pool
  127. attribute:
  128. ActiveCount:
  129. alias: jboss.as.datasource.booklineifdb.active.count
  130. metric_type: gauge
  131. InUseCount:
  132. alias: jboss.as.datasource.booklineifdb.inuse.count
  133. metric_type: gauge
  134. AvailableCount:
  135. alias: jboss.as.datasource.booklineifdb.available.count
  136. metric_type: gauge
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement