System Administration >
Configuration
>
Fabric
>
Nodes
>
Settings
Read node process
Returns information for a specified process ID (pid).
Request:
Method:
GET
URI Path(s):
/api/v1/cluster/<cluster-node-id>/node/processes/<process-id>
/api/v1/transport-nodes/<transport-node-id>/node/processes/<process-id>
/api/v1/node/processes/<process-id>
Request Headers:
n/a
Query Parameters:
n/a
Request Body:
n/a
Example Request:
GET https://<nsx-mgr>/api/v1/node/processes/1
Successful Response:
Response Code:
200 OK
Response Headers:
Content-type: application/json
Response Body:
NodeProcessProperties
+
NodeProcessProperties
(
schema
)
Name
Description
Type
Notes
_links
References related to this resource
The server will populate this field when returing the resource. Ignored on PUT and POST.
array of
ResourceLink
Readonly
_schema
Schema for this resource
string
Readonly
_self
Link to this resource
SelfResourceLink
Readonly
cpu_time
CPU time (user and system) consumed by process in milliseconds
integer
Readonly
mem_resident
Resident set size of process in bytes
integer
Readonly
mem_used
Virtual memory used by process in bytes
integer
Readonly
pid
Process id
integer
Readonly
ppid
Parent process id
integer
Readonly
process_name
Process name
string
Readonly
start_time
Process start time expressed in milliseconds since epoch
EpochMsTimestamp
Readonly
uptime
Milliseconds since process started
integer
Readonly
Example Response:
{ "cpu_time": 800, "mem_resident": 593920, "mem_used": 1871872, "pid": 1, "ppid": 0, "process_name": "init", "start_time": 1412624269865, "uptime": 279760 }
Required Permissions:
read
Feature:
system_administration
Additional Errors:
404 Not Found
301 Moved Permanently
307 Temporary Redirect
400 Bad Request
403 Forbidden
409 Conflict
412 Precondition Failed
500 Internal Server Error
503 Service Unavailable