Cloud Enterprise Object Storage REST API

Search (SHIFT+S)




Get Process

GET /dashboard/processes/{id}

Gets the process instance details.

idProcess identifier

Required Roles

Requires one of the following roles:

  • SYSTEM_MONITOR

  • SYSTEM_ADMIN


Response Body

Process instance details.


JSON Example

Request
GET https://192.168.0.0:4443//dashboard/rglinks/rglink-id HTTP/1.1

Content-Type: application/json
X-SDS-AUTH-TOKEN: <AUTH_TOKEN>
Response
HTTP/1.1 200 OK
Content-Type: application/json

 {

    "_links": {

        "self": { "href": "/dashboard/processes/{process-id}"}

    },
    "apiChange" : "1",
    "processName": "process-name",
    "id": "<node-id-process",

    "cpuUtilization": [ {"t":"12345678" , " Percent ":10}, {"t":"23435455" , " Percent ":43}, {"t":"55433455" , " Percent ":39}],
    "javaHeapUtilization" : [ { "t" : "1503340396", "Percent" : "26" } ],
    "maxJavaHeapSize" : [ { "t" : "1503340400", "Bytes" : "1037959168" } ],
    "memoryUtilizationBytes": [ {"t":"12345678" , "Bytes":10000}, {"t":"23435455" , " Bytes ":10000}, {"t":"55433455" , " Bytes ":10000}],
    "memoryUtilization": [ {"t":"12345678" , "Percent":10}, {"t":"23435455" , " Percent ":43}, {"t":"55433455" , " Percent ":39}],
    "threadCount": [ {"t":"12345678" , "count":10}, {"t":"23435455" , "count":13}, {"t":"55433455" , "count":9}],
    "restartTime": [ {"t":"12345678" , "dummy":0}, {"t":"23435455" , "dummy":0}, {"t":"55433455" , "dummy":0}]

 }
 
 
ATTRIBUTES DESCRIPTION
======================
a. All Time Stamps are GMT Epoch time in seconds.

b. Numbers can be reported in different formats, including without decimal point (e.g. 23000000), with decimal point
   (23000000.0) or exponential (2.3e7)

c. <Attribute>Current: The most recent value of an attribute. The attribute is returned in the form of a single snapshot
   {"t":12345678, " 'value tag' ":10} where 'value tag' reports the most recently known value of the attribute
   and timestamp 't' reports time for which this value is available. The value tag is the same as used for the original
   historical attribute. Units of the reported current value are the same as units of the corresponding historical attribute.

d. <Attribute>Summary: (Historical attributes only) The summary values for a historical attribute which includes
   Min (lowest), Max (highest) and Avg (average) values across all snapshots. The attribute is returned in the form of
   {"Min": {"t":"12345678", "Percent":10}, "Max": {"t":"23435455", "Percent": "43"}, "Avg": "30.67" }.
   The value tag is the same as used for the original historical attribute. Units of the reported current value are the
   same as units of the corresponding historical attribute.

e. 'dataType' filter: The client can use this filter to indicate which data needs to be returned in the feed. If not supplied,
    both current and historical data will be returned.
    dataType=current: return only the Current values, as detailed in Point C.
    dataType=historical&startTime=<Time>&endTime=<Time>&interval=<Interval in seconds>: return historical series data
    and summary for the period specified. Start and End Times are in Epoch Time in Seconds.

f. 'category' filter: Every API can be called with an optional 'category' filter. This filter specifies the category of
    data to be included in the API. It is recommended to use filters only when a subset of the attributes is necessary.

g. Starting from ECS 2.2 a new attribute named "apiChange' is returned.  This variable may be removed in future versions
   of the API, and currently always has the value "1".

------------------------------------+-----------+-----------------------------------------------------------------------+--------
Attribute                           |Historical?|Category|                Description                                   |Units
------------------------------------+-----------+-----------------------------------------------------------------------+--------
url.self                            |           |        |URL to this resource                                          |
------------------------------------+-----------+-----------------------------------------------------------------------+--------    
processName                         |           |        |Name of the process                                           |
------------------------------------+-----------+-----------------------------------------------------------------------+--------
id                                  |           |        |ID of the resource                                            |
------------------------------------+-----------+-----------------------------------------------------------------------+--------
cpuUtilization                      |Historical |health  |Percentage of the process CPU time relative to total of CPU   |
                                    |           |        |capacity of all cores and processors installed on the node.   |Percent
                                    |           |        |This number should never get above 100%.                      |
------------------------------------+-----------+-----------------------------------------------------------------------+--------
javaHeapUtilization                 |historical |health  |Percentage of available java heap being used.                 |Percent
------------------------------------+-----------+-----------------------------------------------------------------------+--------
maxJavaHeapSize                     |historical |health  |Maximum java heap size                                        |Bytes
------------------------------------+-----------+-----------------------------------------------------------------------+--------
memoryUtilizationBytes              |Historical |health  |Amount of RAM used by the process.                            |Bytes
------------------------------------+-----------+-----------------------------------------------------------------------+--------
memoryUtilization                   |Historical |health  |Amount of RAM used by the process relativeley to the total    |
                                    |           |        |RAM size.                                                     |Percent
------------------------------------+-----------+-----------------------------------------------------------------------+--------
threadCount                         |Historical |health  |Number of threads in the process                              |
------------------------------------+-----------+-----------------------------------------------------------------------+--------
restartTime                         |historical |health  |Recent restarts of the process. Attribute 't' reports         |
                                    |           |        |timestamp of restart. Attribute 'dummy' is reserved for       |Seconds
                                    |           |        |future.                                                       |
------------------------------------+-----------+-----------------------------------------------------------------------+--------