chore(inputs.rabbitmq): Remove useless comment (#14389)

This commit is contained in:
RWDai 2023-12-06 06:16:11 -06:00 committed by GitHub
parent 627aa04845
commit 8dda436e7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 14 deletions

View File

@ -70,7 +70,6 @@ type RabbitMQ struct {
upstreamFilter filter.Filter
}
// OverviewResponse ...
type OverviewResponse struct {
MessageStats *MessageStats `json:"message_stats"`
ObjectTotals *ObjectTotals `json:"object_totals"`
@ -78,17 +77,14 @@ type OverviewResponse struct {
Listeners []Listeners `json:"listeners"`
}
// Listeners ...
type Listeners struct {
Protocol string `json:"protocol"`
}
// Details ...
type Details struct {
Rate float64 `json:"rate"`
}
// MessageStats ...
type MessageStats struct {
Ack int64
AckDetails Details `json:"ack_details"`
@ -108,7 +104,6 @@ type MessageStats struct {
ReturnUnroutableDetails Details `json:"return_unroutable_details"`
}
// ObjectTotals ...
type ObjectTotals struct {
Channels int64
Connections int64
@ -117,7 +112,6 @@ type ObjectTotals struct {
Queues int64
}
// QueueTotals ...
type QueueTotals struct {
Messages int64
MessagesReady int64 `json:"messages_ready"`
@ -129,7 +123,6 @@ type QueueTotals struct {
MessagePersistent int64 `json:"message_bytes_persistent"`
}
// Queue ...
type Queue struct {
QueueTotals // just to not repeat the same code
MessageStats `json:"message_stats"`
@ -147,7 +140,6 @@ type Queue struct {
HeadMessageTimestamp *int64 `json:"head_message_timestamp"`
}
// Node ...
type Node struct {
Name string
@ -194,7 +186,6 @@ type Exchange struct {
AutoDelete bool `json:"auto_delete"`
}
// FederationLinkChannelMessageStats ...
type FederationLinkChannelMessageStats struct {
Confirm int64 `json:"confirm"`
ConfirmDetails Details `json:"confirm_details"`
@ -204,7 +195,6 @@ type FederationLinkChannelMessageStats struct {
ReturnUnroutableDetails Details `json:"return_unroutable_details"`
}
// FederationLinkChannel ...
type FederationLinkChannel struct {
AcksUncommitted int64 `json:"acks_uncommitted"`
ConsumerCount int64 `json:"consumer_count"`
@ -214,7 +204,6 @@ type FederationLinkChannel struct {
MessageStats FederationLinkChannelMessageStats `json:"message_stats"`
}
// FederationLink ...
type FederationLink struct {
Type string `json:"type"`
Queue string `json:"queue"`
@ -230,7 +219,6 @@ type HealthCheck struct {
Status string `json:"status"`
}
// MemoryResponse ...
type MemoryResponse struct {
Memory *Memory `json:"memory"`
}
@ -265,7 +253,6 @@ type ErrorResponse struct {
Reason string `json:"reason"`
}
// gatherFunc ...
type gatherFunc func(r *RabbitMQ, acc telegraf.Accumulator)
var gatherFunctions = map[string]gatherFunc{
@ -319,7 +306,6 @@ func (r *RabbitMQ) Init() error {
return nil
}
// Gather ...
func (r *RabbitMQ) Gather(acc telegraf.Accumulator) error {
var wg sync.WaitGroup
for name, f := range gatherFunctions {