interface LogEntry {
context?: string;
labels?: LogLabels;
message: string;
payload?: LogPayload;
severity: LogLevel;
timestamp: LogTimestamp;
}
Properties§
Source§payload?: LogPayload
payload?: LogPayload
A map of key-value pairs that provides additional data to be logged.
Source§timestamp: LogTimestamp
timestamp: LogTimestamp
The timestamp of the log entry.
The context of the log entry.