How I can export Instance monitoring Stats with all graphs?

How I can export Instance monitoring Stats with all graphs and can filter by month?

1 Like

yes, i was also looking for these statistics, i accessed the database but there was no table containing it. I thought Elasticsearch stored these statistics in a location we weren’t aware of. Does anybody know?

There is the API endpoint which may contain enough aggregated data:

A more hacky approach, If you need all the data for a particular instance you can access the time series JSON payload which is used by the UI to display the stats information.

For example : https://{appliance}/provisioning/instances/181/stats?category=docker.memory,storage,docker.cpu,network.rate

(where 181 is the instance ID)

You’d obviously need to parse & process the data yourself and you’d need to build your own charts, but an automation could probably get the data for all instances and parse it.

You will need a valid session to access this endpoint

1 Like