Browse Source

Add timestamp back to log entry type

David Kaltschmidt 7 years ago
parent
commit
d1dec8bd44
1 changed files with 2 additions and 0 deletions
  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 {
 export interface LogsStreamEntry {
   line: string;
   line: string;
   ts: string;
   ts: string;
+  // Legacy, was renamed to ts
+  timestamp?: string;
 }
 }
 
 
 export interface LogsStreamLabels {
 export interface LogsStreamLabels {