Array of filters for one or more of the following:
-
hostName
-
vmId
-
tags
-
state
The JVM Inventory API allows you to create and download reports to get insights into your connected JVM runtimes.
Reports are generated asynchronously. By using the endpoint, a task to generate a report is created. In response, you get a unique report identifier. With this identifier, you can retrieve the report.
You can request the generation of a report with a POST
call to https://YOUR_ENDPOINT.azul.com/public/report/jvmInventory
and a set of parameters.
Argument | Default | Description | ||||
---|---|---|---|---|---|---|
filter |
array[string] |
Array of filters for one or more of the following:
|
||||
from |
string |
Relative or absolute time for the start of the report. See API Date Filter Format. |
||||
to |
string |
Relative or absolute time for the end of the report. See API Date Filter Format. |
||||
groupBy |
array[string] |
List of fields by which the components (name + version) are grouped. The order of the fields directly affects the result of the grouping. The values of the Format:
|
||||
sortBy |
array[string] |
A set of fields and the desired sort order for their values. Format: Sort order values:
|
curl -X 'POST' \
'https://YOUR_ENDPOINT.azul.com/report/jvmInventory' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-H 'x-api-key: l91uNwWPDt5z2oa13wmQAPDfGv5Ti4T7bEQZKoXg' \
-d '{
"filter": [
"hostName = '\''localhost'\''",
"vmId != '\''a79b38cd-787b-4203-ba6d-9197c0e3fe19'\''",
"tags.owner CONTAINS '\''elena'\''",
"state = '\''SUCCEEDED'\''"
],
"groupBy": [
"state",
"agentVersion"
],
"sortBy": [
"lastHeardTime=DESC",
"tags.owner=DESC"
],
"from": "3d",
"to": "3d",
"reportName": "My report #1"
}'
In response, you get a reportId that can be used with the GET
endpoint to retrieve the report.
{
"reportId": "1cc40ee6-87a7-4147-b02d-7d26ce0387d0",
"state": "PROCESSING",
"userId": "[email protected]",
"params": {
...
},
"requestTime": "2023-02-15T00:00:00.000Z"
}
You can retrieve a report with a GET
call to /public/report/jvmInventory/YOUR_REPORT_ID
.
The response must be checked to define if the data is available, based on the following possible return data:
state
: State of the request, one of the following options:
PROCESSING
SUCCEEDED
FAILED
PARTIALLY_FAILED
TIMED_OUT
stateMessages
: More info related to the state
.
errors
: Errors while creating the report (if applicable).
Large reports are split into pages (up to 5.5MB per page). You can find the total number of pages in the response and use this value to retrieve all the report pages.
Note
|
Regardless of whether a report is generated successfully or not, when the generation is finished, at least one page of the report is available for retrieval. |
curl -X 'GET' \
'https://YOUR_ENDPOINT.azul.com/public/report/jvmInventory/YOUR_REPORT_ID' \
-H 'accept: application/json' \
-H 'x-api-key: YOUR_API_KEY' \
-H 'Content-Type: application/json'
{
"reportId": "1cc40ee6-87a7-4147-b02d-7d26ce0387d0",
"userId": "[email protected]",
"params": {
...
},
"from": "2023-07-13T16:42:37.268",
"to": "2023-07-13T16:42:37.268",
"state": "PROCESSING",
"requestTime": "2023-07-13T16:42:37.268",
"startTime": "2023-07-13T16:42:37.268",
"finishTime": "2023-07-13T16:42:47.231",
"data": [
{}
],
"afterToken": "2",
"totalCount": 35352,
"stateMessages": [
"1st message",
"2nd message"
]
}
You can delete a report with a DELETE
call to https://YOUR_ENDPOINT.azul.com/public/report/jvmInventory/YOUR_REPORT_ID
.