Reputation: 6823
We are using PowerShell to query the process endpoint to get information that you can see if you use the KUDU Process Explorer
.
We now see these processes getting created when using Invoke-RestMethod
.
id : 00001
name : KuduHandles
href : https://{sitename}.scm.azurewebsites.net/api/processes/00001
user_name : IIS APPPOOL\{sitename}
Environment : xyz
WebJobName : abc
Upvotes: 2
Views: 487
Reputation: 43183
KuduHandles is a tool used by Kudu to list open file handles inside a process using only user mode calls. You can find sources on https://github.com/projectkudu/KuduHandles.
It should only be running briefly while Kudu gets the list of handles. If you're curious, you can run it manually from Kudu Console, e.g. (pass it the ID of some running process):
D:\home>kuduhandles 11916
D:\Windows
D:\home
D:\Windows\SysWOW64\en-US\cmd.exe.mui
D:\Windows\SysWOW64\en-US\KernelBase.dll.mui
Upvotes: 3