Analysis: Containers
Analysis: Containers
#340560
Description
See
Resource
Supported Operations
Table: Container Analysis Supported Operations
Operation |
HTTP Method |
Input |
Output |
Description |
GET /analysis/containers |
Collection of: |
Use this resource to return a list of existing container analyses. |
Table: Container Analysis Response Schema
Element |
Type |
Filter/Sort |
Description |
string |
|
The unique identifier for the container analysis entity in Densify. |
|
string |
Filter by:
|
The name given to the container analysis entity. The analysis name typically corresponds to the cluster name from the container data collected. |
|
string |
|
The date and time (in milliseconds) when the last analysis completed. If an analysis has never been completed, "0" is returned. |
|
string |
|
The referenced resource to the analysis entity. See Analysis: Entity for details of the analysis entity resource. |
|
string |
|
The referenced resource to the recommendations of the analysis. See Analysis: Kubernetes Container Recommendations for details on container recommendations. |
|
string |
|
The referenced resource to the status of the analysis. See Analysis: Status for details. |
|
string |
|
For errors, the message for the status response is returned. |
|
number |
|
The HTTP response code of the request error. Possible status values include:
|
Examples
Example: Listing All Container Analyses
The following example shows you how to list all container analyses in Densify.

Request:
GET /analysis/containers
Response:
[
{
"analysisId": "3d4ba999-cbd8-40b8-9998-574be6824a97",
"analysisName": "DEN-east-321-45b",
"analysisCompletedOn": 1510180908845,
"href": "/analysis/containers/kubernetes/3d4ba999-cbd8-40b8-9998-574be6824a97",
"analysisResults": "/analysis/containers/kubernetes/3d4ba999-cbd8-40b8-9998-574be6824a97/results",
"analysisStatus": "/analysis/containers/kubernetes/3d4ba999-cbd8-40b8-9998-574be6824a97/status"
},
{
"analysisId": "97cfcb18-37a4-4f49-885b-8974eb2ceb31",
"analysisName": "DEN-east-432-2",
"analysisCompletedOn": 1543346324266,
"href": "/analysis/containers/kubernetes/97cfcb18-37a4-4f49-885b-8974eb2ceb31",
"analysisResults": "/analysis/containers/kubernetes/97cfcb18-37a4-4f49-885b-8974eb2ceb31/results",
"analysisStatus": "/analysis/containers/kubernetes/97cfcb18-37a4-4f49-885b-8974eb2ceb31/status"
}
]