PeerTube/shared/models/server/server-stats.model.ts

30 lines
690 B
TypeScript
Raw Normal View History

2020-01-10 10:11:28 +01:00
import { VideoRedundancyStrategyWithManual } from '../redundancy'
2018-09-14 14:57:59 +02:00
2018-02-28 18:04:46 +01:00
export interface ServerStats {
totalUsers: number
2020-05-07 10:39:09 +02:00
totalDailyActiveUsers: number
totalWeeklyActiveUsers: number
totalMonthlyActiveUsers: number
2018-02-28 18:04:46 +01:00
totalLocalVideos: number
totalLocalVideoViews: number
totalLocalVideoComments: number
2019-01-15 09:45:54 +01:00
totalLocalVideoFilesSize: number
2018-02-28 18:04:46 +01:00
totalVideos: number
totalVideoComments: number
totalInstanceFollowers: number
totalInstanceFollowing: number
2018-09-14 14:57:59 +02:00
2020-01-10 10:11:28 +01:00
videosRedundancy: VideosRedundancyStats[]
}
export interface VideosRedundancyStats {
strategy: VideoRedundancyStrategyWithManual
totalSize: number
totalUsed: number
totalVideoFiles: number
totalVideos: number
2018-02-28 18:04:46 +01:00
}