mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-10 16:51:49 +08:00
16 lines
321 B
Go
16 lines
321 B
Go
package kafka
|
|
|
|
const kafkaQueue = "kafka"
|
|
|
|
type MessagingQueue struct {
|
|
Start int64 `json:"start"`
|
|
End int64 `json:"end"`
|
|
Variables map[string]string `json:"variables,omitempty"`
|
|
}
|
|
|
|
type Clients struct {
|
|
ClientID string
|
|
ServiceInstanceID string
|
|
ServiceName string
|
|
}
|