Reporting requests
To enable the SaaS reporting feature in an on-prem environment, you must first open a case with IBM support and work with your Turbonomic representative. After your representative processes your request, you receive an encoded configuration string.
You can also complete this task by using the swagger UI for your instance. For more information, see Enabling SaaS reporting for on-prem Turbonomic instances.
Enable the SaaS reporting feature (on-prem)
You can use the reporting/configuration endpoint to enable on-prem SaaS
reporting by providing the encoded configuration string from your Turbonomic
representative.
Example: POST https://10.10.10.10/api/v3/reporting/configuration
{
"configuration":
"<your-configuration-string>",
"enabled": true
}Verify your on-prem SaaS reporting configuration
To verify your encoded configuration string and confirm whether SaaS reporting is enabled, make a
GET request to the reporting/configuration endpoint.
Example: GET https://10.10.10.10/api/v3/reporting/configuration
{
"configuration":
"<your-configuration-string>",
"enabled": true
}Delete your on-prem SaaS reporting configuration
To delete your configuration and remove the SaaS reporting feature from your instance, make a
DELETE request to the reporting/configuration endpoint.
Example: DELETE https://10.10.10.10/api/v3/reporting/configuration
true