package model type LogsLiveTailClientV2 struct { Name string Logs chan *SignozLogV2 Done chan *bool Error chan error } type LogsLiveTailClient struct { Name string Logs chan *SignozLog Done chan *bool Error chan error } type QueryProgress struct { ReadRows uint64 `json:"read_rows"` ReadBytes uint64 `json:"read_bytes"` ElapsedMs uint64 `json:"elapsed_ms"` }