mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-19 23:34:26 +08: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"`
|
|
}
|