Add timestamp back to log entry type

This commit is contained in:
David Kaltschmidt 2018-12-22 17:36:35 +01:00
parent b8fdacd81f
commit d1dec8bd44

View File

@ -82,6 +82,8 @@ export interface LogsStream {
export interface LogsStreamEntry {
line: string;
ts: string;
// Legacy, was renamed to ts
timestamp?: string;
}
export interface LogsStreamLabels {