mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-23 18:36:16 +00:00
24 lines
381 B
Go
24 lines
381 B
Go
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"`
|
|
}
|