Class LogEntryMetadata
Identifying metadata for a long entry that identifies the event's origin.
Implements
Inherited Members
Namespace: Unity.Services.Multiplay.Authoring.Core.MultiplayApi
Assembly: Unity.Services.Multiplayer.Multiplay.Authoring.Core.dll
Syntax
public record LogEntryMetadata : IEquatable<LogEntryMetadata>
Constructors
LogEntryMetadata(Guid, string, string, string, DateTime)
Identifying metadata for a long entry that identifies the event's origin.
Declaration
public LogEntryMetadata(Guid FleetId, string MessageId, string ServerId, string Source, DateTime Timestamp)
Parameters
Type | Name | Description |
---|---|---|
Guid | FleetId | ID of the fleet where the log event originates from. |
string | MessageId | Unique ID of the message. |
string | ServerId | ID of the server where the log event originates from. |
string | Source | Source (most likely a path to a file) where the log event was originally written |
DateTime | Timestamp | Timestamp of log ingestion event, in ISO 8601 format. |
Properties
FleetId
ID of the fleet where the log event originates from.
Declaration
public Guid FleetId { get; init; }
Property Value
Type | Description |
---|---|
Guid |
MessageId
Unique ID of the message.
Declaration
public string MessageId { get; init; }
Property Value
Type | Description |
---|---|
string |
ServerId
ID of the server where the log event originates from.
Declaration
public string ServerId { get; init; }
Property Value
Type | Description |
---|---|
string |
Source
Source (most likely a path to a file) where the log event was originally written
Declaration
public string Source { get; init; }
Property Value
Type | Description |
---|---|
string |
Timestamp
Timestamp of log ingestion event, in ISO 8601 format.
Declaration
public DateTime Timestamp { get; init; }
Property Value
Type | Description |
---|---|
DateTime |