/api/stats/jvm

    Note

    The information printed will change depending on the JVM you are running the TSD under. In particular, the pools and GC sections will differ quite a bit.

    • GET

    No parameters available.

    Query String

    The response is an object with multiple sub objects. Top level objects include

    Example Response

    1. "os": {
    2. "systemLoadAverage": 4.85
    3. },
    4. "gc": {
    5. "parNew": {
    6. "collectionTime": 26027510,
    7. "collectionCount": 361039
    8. },
    9. "concurrentMarkSweep": {
    10. "collectionTime": 333710,
    11. "collectionCount": 396
    12. }
    13. },
    14. "runtime": {
    15. "startTime": 1441069233346,
    16. "vmVersion": "24.60-b09",
    17. "uptime": 1033439220,
    18. "vmVendor": "Oracle Corporation",
    19. "vmName": "Java HotSpot(TM) 64-Bit Server VM"
    20. },
    21. "pools": {
    22. "cMSPermGen": {
    23. "collectionUsage": {
    24. "init": 21757952,
    25. "used": 30044544,
    26. "committed": 50077696,
    27. "max": 85983232
    28. },
    29. "usage": {
    30. "init": 21757952,
    31. "used": 30045408,
    32. "committed": 50077696,
    33. "max": 85983232
    34. },
    35. "type": "NON_HEAP",
    36. "peakUsage": {
    37. "init": 21757952,
    38. "used": 30045408,
    39. "committed": 50077696,
    40. "max": 85983232
    41. },
    42. "parSurvivorSpace": {
    43. "collectionUsage": {
    44. "init": 157024256,
    45. "committed": 157024256,
    46. "max": 157024256
    47. },
    48. "usage": {
    49. "init": 157024256,
    50. "used": 32838400,
    51. "committed": 157024256,
    52. "max": 157024256
    53. },
    54. "type": "HEAP",
    55. "peakUsage": {
    56. "init": 157024256,
    57. "used": 157024256,
    58. "committed": 157024256,
    59. "max": 157024256
    60. }
    61. },
    62. "codeCache": {
    63. "collectionUsage": null,
    64. "usage": {
    65. "init": 2555904,
    66. "used": 8754368,
    67. "committed": 8978432,
    68. "max": 50331648
    69. },
    70. "type": "NON_HEAP",
    71. "peakUsage": {
    72. "init": 2555904,
    73. "used": 8767040,
    74. "committed": 8978432,
    75. "max": 50331648
    76. }
    77. },
    78. "cMSOldGen": {
    79. "collectionUsage": {
    80. "init": 15609561088,
    81. "used": 1886862056,
    82. "committed": 15609561088,
    83. "max": 15609561088
    84. },
    85. "usage": {
    86. "init": 15609561088,
    87. "committed": 15609561088,
    88. "max": 15609561088
    89. "type": "HEAP",
    90. "peakUsage": {
    91. "init": 15609561088,
    92. "used": 11849865176,
    93. "committed": 15609561088,
    94. "max": 15609561088
    95. }
    96. },
    97. "parEdenSpace": {
    98. "collectionUsage": {
    99. "init": 1256259584,
    100. "used": 0,
    101. "committed": 1256259584,
    102. "max": 1256259584
    103. },
    104. "usage": {
    105. "init": 1256259584,
    106. "used": 825272064,
    107. "committed": 1256259584,
    108. "max": 1256259584
    109. },
    110. "type": "HEAP",
    111. "peakUsage": {
    112. "init": 1256259584,
    113. "used": 1256259584,
    114. "committed": 1256259584,
    115. "max": 1256259584
    116. }
    117. }
    118. },
    119. "memory": {
    120. "objectsPendingFinalization": 0,
    121. "nonHeapMemoryUsage": {
    122. "init": 24313856,
    123. "used": 38798912,
    124. "committed": 59056128,
    125. "max": 136314880
    126. },
    127. "heapMemoryUsage": {
    128. "init": 17179869184,
    129. "used": 6351794296,
    130. "committed": 17022844928,
    131. "max": 17022844928
    132. }