Procházet zdrojové kódy

Add timestamp back to log entry type

David Kaltschmidt před 7 roky
rodič
revize
d1dec8bd44
1 změnil soubory, kde provedl 2 přidání a 0 odebrání
  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 {