You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

report_storage_stats.go 584 B

12345678910111213141516171819202122232425
  1. package tickevent
  2. /*
  3. import (
  4. stgmod "gitlink.org.cn/cloudream/storage2/common/models"
  5. "gitlink.org.cn/cloudream/storage2/common/pkgs/storage/agtpool"
  6. "gitlink.org.cn/cloudream/storage2/common/pkgs/sysevent"
  7. )
  8. func ReportStorageStats(agtPool *agtpool.AgentPool, evtPub *sysevent.Publisher) {
  9. stgs := agtPool.GetAllAgents()
  10. for _, stg := range stgs {
  11. shard, err := stg.GetShardStore()
  12. if err != nil {
  13. continue
  14. }
  15. stats := shard.Stats()
  16. evtPub.Publish(&stgmod.BodyStorageStats{
  17. StorageID: stg.Info().Storage.StorageID,
  18. DataCount: stats.FileCount,
  19. })
  20. }
  21. }
  22. */

本项目旨在将云际存储公共基础设施化,使个人及企业可低门槛使用高效的云际存储服务(安装开箱即用云际存储客户端即可,无需关注其他组件的部署),同时支持用户灵活便捷定制云际存储的功能细节。