mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-17 15:36:48 +00:00
25 lines
590 B
Go
25 lines
590 B
Go
package kafka
|
|
|
|
const KafkaQueue = "kafka"
|
|
|
|
type MessagingQueue struct {
|
|
Start int64 `json:"start"`
|
|
End int64 `json:"end"`
|
|
EvalTime int64 `json:"eval_time"`
|
|
Variables map[string]string `json:"variables,omitempty"`
|
|
}
|
|
|
|
type Clients struct {
|
|
Hash map[string]struct{}
|
|
ClientID []string
|
|
ServiceInstanceID []string
|
|
ServiceName []string
|
|
TopicName []string
|
|
}
|
|
|
|
type OnboardingResponse struct {
|
|
Attribute string `json:"attribute"`
|
|
Message string `json:"error_message"`
|
|
Status string `json:"status"`
|
|
}
|