[runtimeDebug] debug_gcStats
Returns GC statistics.
JSONRPC: debug_gcStats
Request
- application/json
Body
Default value: debug_gcStats
Method name
Default value: 1
Request ID, Random or Auto incrementation
Default value: 2.0
JSON-RPC Version (2.0)
Responses
- 200
Returns GC statistics
- application/json
- Schema
- Example (from schema)
Schema
Default value: 2.0
error
object
A Number that indicates the error type that occurred. This MUST be an integer.
| code | message | description | |-----|-----|-------| | -32700 | Parse error | invalid JSON was received by the server. An error occurred on the server while parsing the JSON text. | |-32602 | Invalid params | Invalid method parameter(s). |
A String providing a short description of the error. The message SHOULD be limited to a concise single sentence.
A Primitive or Structured value that contains additional information about the error. This may be omitted. The value of this member is defined by the Server (e.g. detailed error information, nested errors etc.).
result
object
GC statistics
time of last collection
number of garbage collections
pause history, most recent first
pause end times history, most recent first
total pause for all collections
{
"jsonrpc": "2.0",
"id": 0,
"error": {
"code": -32700,
"message": "Parse error",
"data": "string"
},
"result": {
"LastGC": "2018-10-08T14:27:34.030659164Z",
"NumGC": 40,
"Pause": [
4582691,
2863122,
1578188,
459447,
197699,
1688008,
678298,
117924,
6871625,
298523,
1281135,
616022,
2513029,
265029,
704801,
685752,
383625,
677657,
1135878,
1730593,
603201,
2667691,
1901266,
1035406,
1624233,
1112526,
397637,
158158,
596931,
2675197,
4421722,
745039,
847417,
4423680,
653433,
281915,
605418,
8127664,
138283,
1810200
],
"PauseEnd": [
"2018-10-08T14:27:34.030659164Z",
"2018-10-08T14:25:34.032422737Z",
"2018-10-08T14:23:34.015065773Z",
"2018-10-08T14:21:34.031893519Z",
"2018-10-08T14:19:33.791324489Z",
"2018-10-08T14:19:01.028883257Z",
"2018-10-08T14:17:01.054270356Z",
"2018-10-08T14:15:01.032846304Z",
"2018-10-08T14:13:01.07313761Z",
"2018-10-08T14:11:01.042653342Z",
"2018-10-08T14:09:01.034458873Z",
"2018-10-08T14:07:01.022701083Z",
"2018-10-08T14:05:01.046456415Z",
"2018-10-08T14:03:01.030075376Z",
"2018-10-08T14:01:01.027838941Z",
"2018-10-08T13:59:01.033363592Z",
"2018-10-08T13:57:01.032853252Z",
"2018-10-08T13:55:01.06825876Z",
"2018-10-08T13:53:01.071426346Z",
"2018-10-08T13:51:01.099618831Z",
"2018-10-08T13:49:01.016314071Z",
"2018-10-08T13:47:01.031721975Z",
"2018-10-08T13:45:01.029069094Z",
"2018-10-08T13:43:01.026156953Z",
"2018-10-08T13:41:01.019240344Z",
"2018-10-08T13:39:01.026699743Z",
"2018-10-08T13:37:01.02642045Z",
"2018-10-08T13:35:00.997556262Z",
"2018-10-08T13:33:01.023605742Z",
"2018-10-08T13:31:01.025436347Z",
"2018-10-08T13:29:01.024808072Z",
"2018-10-08T13:27:01.01508169Z",
"2018-10-08T13:25:01.023461518Z",
"2018-10-08T13:23:01.0144789Z",
"2018-10-08T13:21:01.022121597Z",
"2018-10-08T13:19:30.748905748Z",
"2018-10-08T13:19:29.588457028Z",
"2018-10-08T13:19:29.461820065Z",
"2018-10-08T13:19:29.436792038Z",
"2018-10-08T13:19:29.408990947Z"
],
"PauseQuantiles": null,
"PauseTotal": 64156063
}
}