Concept Guide

Document 365/385
-H 'Content-Type: application/json' -d '{"ServiceEnabled": true }’
To disable Telemetry Service:
curl -s -k -u <user>:<password> -X PATCH https://<IDRAC-IP>//redfish/v1/TelemetryService
-H 'Content-Type: application/json' -d '{"ServiceEnabled": false }’
Configuring Telemetry Streaming Content
The system is shipped with pre-canned report definitions with default configuration for periodic reporting. At the
minimum, the desired reports should be enabled to stream the reports at preconfigured recurrence interval. For
customizing the pre-canned reports or adding new custom reports please refer to the section below.
To view currently available pre-canned report definition collection:
curl -s -k -u <user>:<password> -X GET https://<IDRAC-
IP>//redfish/v1/TelemetryService/MetricReportDefinitions
-H 'Content-Type: application/json'
To view the details of a report definition:
curl -s -k -u <user>:<password> -X GET https://<IDRAC-
IP>//redfish/v1/TelemetryService/MetricReportDefinitions/<report>
-H 'Content-Type: application/json'
To enable a report:
curl -s -k -u <user>:<password> -X PATCH https://<IDRAC-
IP>//redfish/v1/TelemetryService/MetricReportDefinitions/<report>
-H 'Content-Type: application/json' -d '{" MetricReportDefinitionEnabled": true}’
To configure report recurrence interval if different from default (e.g. 2 minutes):
curl -s -k -u <user>:<password> -X PATCH https://<IDRAC-
IP>//redfish/v1/TelemetryService/MetricReportDefinitions/<report>
-H 'Content-Type: application/json' -d ' { "Schedule":{"RecurrenceInterval":
"PT0H2M0S"}}
To disable a report:
curl -s -k -u <user>:<password> -X PATCH https://<IDRAC-IP>//redfish/v1/TelemetryService/
MetricReportDefinitions/<report>
-H 'Content-Type: application/json' -d '{" MetricReportDefinitionEnabled": false}’
e.g. <report> = PowerMetrics