mirror of
https://github.com/element-hq/dendrite.git
synced 2025-03-14 14:15:35 +00:00
29 lines
705 B
Go
29 lines
705 B
Go
// Copyright 2024 New Vector Ltd.
|
|
// Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
// Please see LICENSE files in the repository root for full details.
|
|
|
|
package types
|
|
|
|
type UserStatistics struct {
|
|
RegisteredUsersByType map[string]int64
|
|
R30Users map[string]int64
|
|
R30UsersV2 map[string]int64
|
|
AllUsers int64
|
|
NonBridgedUsers int64
|
|
DailyUsers int64
|
|
MonthlyUsers int64
|
|
}
|
|
|
|
type DatabaseEngine struct {
|
|
Engine string
|
|
Version string
|
|
}
|
|
|
|
type MessageStats struct {
|
|
Messages int64
|
|
SentMessages int64
|
|
MessagesE2EE int64
|
|
SentMessagesE2EE int64
|
|
}
|