The EventService schema contains properties for managing event subscriptions and generates the events sent to subscribers. The resource has links to the actual collection of subscriptions, which are called event destinations.
Privilege: Login
Important Notes:
- You can use the IgnoreCertificateErrors attribute in OEMAttributes to ignore certificate errors.
- ServiceEnabled property is not supported for Telemetry report.
- Following ENUMs for EventType and EventTypesForSubscription are not supported and are removed from the code in iDRAC version 4.40.00.00 and later versions:
- StatusChange
- ResourceUpdated
- ResourceAdded
- ResourceRemoved
username:passwordAuthorization: Basic *****************X-Auth-Token: ********************curl --location '/redfish/v1/EventService' \
--header 'Authorization: Basic <encoded-value>'{
"@odata.context": "/redfish/v1/$metadata#EventService.EventService",
"@odata.id": "/redfish/v1/EventService",
"@odata.type": "#EventService.v1_10_2.EventService",
"Actions": {
"#EventService.SubmitTestEvent": {
"EventType@Redfish.AllowableValues": [
"Alert"
],
"target": "/redfish/v1/EventService/Actions/EventService.SubmitTestEvent"
}
},
"DeliveryRetryAttempts": 3,
"DeliveryRetryIntervalSeconds": 5,
"Description": "Event Service represents the properties for the service",
"EventFormatTypes": [
"Event",
"MetricReport"
],
"EventFormatTypes@odata.count": 2,
"EventTypesForSubscription": [
"Alert",
"MetricReport",
"Other"
],
"EventTypesForSubscription@odata.count": 3,
"Id": "EventService",
"Name": "Event Service",
"SMTP": {
"Authentication": "None",
"ConnectionProtocol": "StartTLS",
"FromAddress": "",
"Password": null,
"Port": 25,
"ServerAddress": "0.0.0.0",
"Username": ""
},
"SSEFilterPropertiesSupported": {
"EventFormatType": true,
"EventType": true,
"MessageId": true,
"MetricReportDefinition": true,
"OriginResource": true,
"RegistryPrefix": true,
"ResourceType": true,
"SubordinateResources": false
},
"ServerSentEventUri": "/redfish/v1/SSE",
"ServiceEnabled": true,
"Status": {
"Health": "OK",
"HealthRollup": "OK",
"State": "Enabled"
},
"Subscriptions": {
"@odata.id": "/redfish/v1/EventService/Subscriptions"
}
}