ILiveTelemetryProperties interface
Properties included on all events sent by LiveTelemetryLogger.
- Extends
-
ITelemetryProperties
Properties
| client |
Optional. ID of the client if it's been assigned by the runtime. |
| correlation |
ID used to correlate multiple events for an operation. Typically of the form of
|
| event |
Name of the event being logged. |
| timestamp | Time that the event occurred. The timestamp is generated by |
Property Details
clientId
Optional. ID of the client if it's been assigned by the runtime.
clientId?: string
Property Value
string
correlationId
ID used to correlate multiple events for an operation. Typically of the form of
${clientId}:${timestamp} but may include the clientId of the sender when logging
that an event was received.
correlationId: string
Property Value
string
eventName
Name of the event being logged.
eventName: string
Property Value
string
timestamp
Time that the event occurred. The timestamp is generated by _liveRuntime.getTimestamp.
timestamp: string
Property Value
string