This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 653
Process list and minidump
Suwat Ch edited this page Jun 16, 2013
·
13 revisions
To diagnose the issues, one may need to get the list of running processes, their cpu and memory usages or, even, take a minidump. Kudu service exposes processes endpoint (/diagnostics/processes
) enabling users to achieve exactly that.
<kudu-service-url>/diagnostics/processes
endpoint returns the list of running processes in json format. Each process info contains process name, id and a link /diagnostics/processes/{id}
to its detail information (such as memory, cpu usages, etc.). Note: the id 0
is reserved for current w3wp.exe
process allowing a shortcut to this via /diagnostics/processes/0
. One can take the minidump of any given process by simply connect to /diagnostics/processes/{id}/dump
.
-
HTTP GET /diagnostics/processes
=> list of processes. -
HTTP GET /diagnostics/processes/{id}
=> detail information of process withid
. -
HTTP DELETE /diagnostics/processes/{id}
=> terminate process withid
and its children. -
HTTP GET /diagnostics/processes/0
=> detail process information of currentw3wp.exe
. -
HTTP DELETE /diagnostics/processes/0
=> terminatew3wp.exe
process and its children. -
HTTP GET /diagnostics/processes/{id}/dump
=> minidump of process withid
. By default, this is minimum dump without memory (dumptType=0). -
HTTP GET /diagnostics/processes/{id}/dump?dumpType=2
=> minidump with full memory of process withid
. The dumpType available value are MINIDUMP_TYPE.