Concept Guide

Document 365/385
"Triggers": []
}
}
When the above POST command successful the new custom report will be added to the report definition
collection.
To get report definition collection (URI list only):
curl -s -k -u <user>:<password> -X GET https://<IDRAC-
IP>/redfish/v1/TelemetryService/MetricReportDefinitions
To get one report definition detail:
curl -s -k -u <user>:<password> -X GET https://<IDRAC-
IP>/redfish/v1/TelemetryService/MetricReports/<MRD>
e.g. <MRD> = TxRxBytesNicSlot1
2.5.2 Update and Remove Custom Reports
The custom report definitions can be updated or removed as needed.
To update any MRD property that is not read-only.
curl -s -k -u <user>:<password> -X PATCH https://<IDRAC-
IP>//redfish/v1/TelemetryService/MetricReportDefinitions/<MRD>
-H 'Content-Type: application/json'
-d ' { "Schedule":{"RecurrenceInterval": "PT0H5M0S"},
MetricReportDefinitionType": "OnRequest"}
The example here tries to change RecurrenceInterval and MetricReportDefinitionType MRD
properties.
To delete a report definition:
curl -s -k -u <user>:<password> -X DELETE https://<IDRAC-
IP>//redfish/v1/TelemetryService/MetricReportDefinitions/<MRD>
e.g. <MRD> = TxRxBytesNicSlot1
Note: If pre-canned reports are customized (properties changed from default) they can be restored to default
values by deleting the report definition (MRD), e.g PowerMetrics.
2.6 Report Generation Behavior and Limitations