mirror of
https://github.com/chrislusf/seaweedfs
synced 2025-07-03 10:12:47 +02:00
12 lines
190 B
Go
12 lines
190 B
Go
package mq
|
|
|
|
const LAST_MINUTES = 10
|
|
|
|
type TopicStat struct {
|
|
MessageCounts [LAST_MINUTES]int64
|
|
ByteCounts [LAST_MINUTES]int64
|
|
}
|
|
|
|
func NewTopicStat() *TopicStat {
|
|
return &TopicStat{}
|
|
}
|