浏览代码

Add timestamp back to log entry type

David Kaltschmidt 7 年之前
父节点
当前提交
d1dec8bd44
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      public/app/core/logs_model.ts

+ 2 - 0
public/app/core/logs_model.ts

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