Table of Contents

Class AlertMessage

Namespace
Scaleout.Streaming.DigitalTwin.Core
Assembly
ScaleOut.Streaming.DigitalTwin.Core.dll

The AlertMessage objects contain all the data to send alerts to external services. This includes properties such as title, message and severity. Finally, alerts can include snapshots of instance properties along with the message.

public class AlertMessage
Inheritance
AlertMessage
Inherited Members

Properties

Message

A more descriptive message about the alert.

public string Message { get; set; }

Property Value

string

OptionalTwinInstanceProperties

Just like events, alerts can include snapshots of instance properties.

public Dictionary<string, string> OptionalTwinInstanceProperties { get; set; }

Property Value

Dictionary<string, string>

Severity

Severity of the alert. Stored as a string since different providers use different severity names.

public string Severity { get; set; }

Property Value

string

Title

Title of the alert.

public string Title { get; set; }

Property Value

string