本頁面使用機器翻譯自英語,可能包含錯誤或不清楚的語言。如需最準確的信息,請參閱英文原文。由於更新頻繁,部分內容可能與英文原文有出入。請加入我們在 Crowdin 上的努力,幫助我們改進本頁面的翻譯。 (Crowdin translation page, Contributing guide)
[RuntimeTrace] debug_goTrace
Turns on Go runtime tracing for the given duration and writes trace data to disk.
JSONRPC: debug_goTrace
Request
- application/json
Body
Array [
]
params
undefined[]
File File (string)
The filename for the trace output.
Seconds Seconds (integer)
The tracing duration in seconds.
Responses
- 200
Turns on Go runtime tracing for the given duration and writes trace data to disk.
- application/json
- Schema
- Example (from schema)
Schema
error
object
result stringnullable
{
"jsonrpc": "2.0",
"id": 0,
"error": {
"code": -32700,
"message": "Parse error",
"data": "string"
},
"result": "string"
}
- curl
- python
- nodejs
- java
- Curl
curl -X 'POST' \
'https://public-en-kairos.node.kaia.io' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"method": "debug_goTrace",
"id": 1,
"jsonrpc": "2.0",
"params": ["go.trace",5]
}'
- CURL
curl -L 'https://public-en-kairos.node.kaia.io/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"method": "debug_goTrace",
"id": 1,
"jsonrpc": "2.0",
"params": [
"go.trace",
5
]
}'
ResponseClear