2018-09-14 08:57:59 -04:00
|
|
|
import { VideoRedundancyStrategy } from '../redundancy'
|
|
|
|
|
2018-02-28 12:04:46 -05:00
|
|
|
export interface ServerStats {
|
|
|
|
totalUsers: number
|
|
|
|
totalLocalVideos: number
|
|
|
|
totalLocalVideoViews: number
|
|
|
|
totalLocalVideoComments: number
|
2019-01-15 03:45:54 -05:00
|
|
|
totalLocalVideoFilesSize: number
|
2018-02-28 12:04:46 -05:00
|
|
|
|
|
|
|
totalVideos: number
|
|
|
|
totalVideoComments: number
|
|
|
|
|
|
|
|
totalInstanceFollowers: number
|
|
|
|
totalInstanceFollowing: number
|
2018-09-14 08:57:59 -04:00
|
|
|
|
|
|
|
videosRedundancy: {
|
|
|
|
strategy: VideoRedundancyStrategy
|
|
|
|
totalSize: number
|
|
|
|
totalUsed: number
|
|
|
|
totalVideoFiles: number
|
|
|
|
totalVideos: number
|
|
|
|
}[]
|
2018-02-28 12:04:46 -05:00
|
|
|
}
|