You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@atlas.apache.org by "Nikhil Bonte (Jira)" <ji...@apache.org> on 2019/10/15 06:39:00 UTC

[jira] [Updated] (ATLAS-3463) UI : Show JVM resources stats on statistics modal

     [ https://issues.apache.org/jira/browse/ATLAS-3463?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Nikhil Bonte updated ATLAS-3463:
--------------------------------
    Description: 
Add system details returned in metric API to the statistics modal.
{code:java}
JSON structure:
{
  "data": {
    "general": {
    ...
    },
    "system": {
      "memory": {
        "heapCommitted": "687865856",
        "heapInit": "262144000",
        "heapMax": "954728448",
        "heapUsed": "398610416",
        "memory_pool_usages": {
          "PS Eden Space": {
            "committed": 217579520,
            "init": 66060288,
            "max": 302514176,
            "used": 171862912
          },
          "PS Old Gen": {
            "committed": 449314816,
            "init": 175112192,
            "max": 716177408,
            "used": 205808048
          },
          "PS Survivor Space": {
            "committed": 20971520,
            "init": 10485760,
            "max": 20971520,
            "used": 20939456
          }
        },
        "nonHeapCommitted": "172163072",
        "nonHeapInit": "2555904",
        "nonHeapMax": "-1",
        "nonHeapUsed": "168581552"
      },
      "os": {
        "os.spec": "Linux, amd64, 4.15.0-51-generic",
        "os.vcpus": "4"
      },
      "runtime": {
        "name": "OpenJDK 64-Bit Server VM",
        "version": "1.8.0_212"
      }
    }
  }
}
{code}

> UI : Show JVM resources stats on statistics modal
> -------------------------------------------------
>
>                 Key: ATLAS-3463
>                 URL: https://issues.apache.org/jira/browse/ATLAS-3463
>             Project: Atlas
>          Issue Type: Sub-task
>            Reporter: Nikhil Bonte
>            Priority: Major
>
> Add system details returned in metric API to the statistics modal.
> {code:java}
> JSON structure:
> {
>   "data": {
>     "general": {
>     ...
>     },
>     "system": {
>       "memory": {
>         "heapCommitted": "687865856",
>         "heapInit": "262144000",
>         "heapMax": "954728448",
>         "heapUsed": "398610416",
>         "memory_pool_usages": {
>           "PS Eden Space": {
>             "committed": 217579520,
>             "init": 66060288,
>             "max": 302514176,
>             "used": 171862912
>           },
>           "PS Old Gen": {
>             "committed": 449314816,
>             "init": 175112192,
>             "max": 716177408,
>             "used": 205808048
>           },
>           "PS Survivor Space": {
>             "committed": 20971520,
>             "init": 10485760,
>             "max": 20971520,
>             "used": 20939456
>           }
>         },
>         "nonHeapCommitted": "172163072",
>         "nonHeapInit": "2555904",
>         "nonHeapMax": "-1",
>         "nonHeapUsed": "168581552"
>       },
>       "os": {
>         "os.spec": "Linux, amd64, 4.15.0-51-generic",
>         "os.vcpus": "4"
>       },
>       "runtime": {
>         "name": "OpenJDK 64-Bit Server VM",
>         "version": "1.8.0_212"
>       }
>     }
>   }
> }
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)