This gist contains a few exmaples of how to export your VSI data. In particular, 12 months of enterprise summary data. You can export to either a CSV file or a JSON file allowing you to then import the data into any analytics tool you choose.
This is a RESTful API call, so you need to create a script that can make an HTTP POST request to https://vsi5.visualstorageintelligence.com/api/export/v1/enterprise_summary_12_months
. The payload you post should be in JSON format and should contain the following key value pairs:
output_format: "csv" or "json" request_user: the email address you use to login to VSI request_password: the password you use to login to VSI
This gist provides 3 examples: one in curl, one in PowerShell, and one in Python 3.