Sfoglia il codice sorgente

Add timestamp back to log entry type

David Kaltschmidt 7 anni fa
parent
commit
d1dec8bd44
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  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 {