1
0
Fork 0
peertube/shared/models/server/server-stats.model.ts

24 lines
520 B
TypeScript
Raw Normal View History

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