GET – Trigger Collection
Request
GET https://{{ip}}/redfish/v1/TelemetryService/Triggers
Content-Type: application/json
Triggers is an entity which senses or measures any sort of change/deviation in properties of various redfish resources.
There are two types of triggers-numeric and discrete triggers.
Triggers is not just limited to Voltage, Temp, and Fan sensors. Any property can be monitored through triggers.
Response example
Please refer to Collection Properties for the JSON response property.
{ "@odata.context": "/redfish/v1/$metadata#TelemetryService/Triggers(Members,Name,Members@odata.count)",
"@odata.etag": "\"1527512499\"",
"@odata.id": "/redfish/v1/TelemetryService/Triggers",
"@odata.type": "#TriggersCollection.TriggersCollection",
"Members": [
{
"@odata.id": "/redfish/v1/TelemetryService/Triggers/TemperatureTrigger"
},
{
"@odata.id": "/redfish/v1/TelemetryService/Triggers/ChassisLED"
}
],
"Members@odata.count": 2,
"Name": "Triggers Collection"
}
Give documentation feedback