blob: 8debcec0bcdc1644f5f8ece19423097b4a080c3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package mq
const LAST_MINUTES = 10
type TopicStat struct {
MessageCounts [LAST_MINUTES]int64
ByteCounts [LAST_MINUTES]int64
}
func NewTopicStat() *TopicStat {
return &TopicStat{}
}
|