You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
190 B
12 lines
190 B
package mq
|
|
|
|
const LAST_MINUTES = 10
|
|
|
|
type TopicStat struct {
|
|
MessageCounts [LAST_MINUTES]int64
|
|
ByteCounts [LAST_MINUTES]int64
|
|
}
|
|
|
|
func NewTopicStat() *TopicStat {
|
|
return &TopicStat{}
|
|
}
|