server-stats.model.ts 485 B

12345678910111213141516171819202122
  1. import { VideoRedundancyStrategy } from '../redundancy'
  2. export interface ServerStats {
  3. totalUsers: number
  4. totalLocalVideos: number
  5. totalLocalVideoViews: number
  6. totalLocalVideoComments: number
  7. totalVideos: number
  8. totalVideoComments: number
  9. totalInstanceFollowers: number
  10. totalInstanceFollowing: number
  11. videosRedundancy: {
  12. strategy: VideoRedundancyStrategy
  13. totalSize: number
  14. totalUsed: number
  15. totalVideoFiles: number
  16. totalVideos: number
  17. }[]
  18. }