Disk Stats
            
                
                
                    | Path | Disk | Total | Free | Usage | 
                
                
                {{ range .DiskStatuses }}
                
                    | {{ .Dir }} | {{ .DiskType }} | {{ bytesToHumanReadable .All }} | {{ bytesToHumanReadable .Free }} | {{ percentFrom .All .Used}}% | 
                {{ end }}
                
            
         
        
            System Stats
            
                
                    | Masters | {{.Masters}} | 
                
                    | Weekly # ReadRequests | {{ .Counters.ReadRequests.WeekCounter.ToList | join }} | 
                
                    | Daily # ReadRequests | {{ .Counters.ReadRequests.DayCounter.ToList | join }} | 
                
                    | Hourly # ReadRequests | {{ .Counters.ReadRequests.HourCounter.ToList | join }} | 
                
                    | Last Minute # ReadRequests | {{ .Counters.ReadRequests.MinuteCounter.ToList | join }} | 
                {{ range $key, $val := .Stats }}
                
                    | {{ $key }} | {{ $val }} | 
                {{ end }}
            
         
     
    
        Volumes
        
            
            
                | Id | Collection | Disk | Data Size | Files | Trash | TTL | ReadOnly | Version | 
            
            
            {{ range .Volumes }}
            
                | {{ .Id }} | {{ .Collection }} | {{ .DiskType }} | {{ bytesToHumanReadable .Size }} | {{ .FileCount }} | {{ .DeleteCount }} / {{bytesToHumanReadable .DeletedByteCount}} | {{ .Ttl }} | {{ .ReadOnly }} | {{ .Version }} | 
            {{ end }}
            
        
     
    {{ if isNotEmpty .RemoteVolumes }}
    
        Remote Volumes
        
            
            
                | Id | Collection | Size | Files | Trash | Remote | Key | 
            
            
            {{ range .RemoteVolumes }}
            
                | {{ .Id }} | {{ .Collection }} | {{ bytesToHumanReadable .Size }} | {{ .FileCount }} | {{ .DeleteCount }} / {{bytesToHumanReadable .DeletedByteCount}} | {{ .RemoteStorageName }} | {{ .RemoteStorageKey }} | 
            {{ end }}
            
        
     
    {{ end }}
    {{ if isNotEmpty .EcVolumes }}
    
        Erasure Coding Shards
        
            
            
                | Id | Collection | Shard Size | Shards | CreatedAt | 
            
            
            {{ range .EcVolumes }}
            
                | {{ .VolumeId }} | {{ .Collection }} | {{ bytesToHumanReadable .ShardSize }} | {{ .ShardIdList }} | {{ .CreatedAt.Format "2006-01-02 15:04" }} | 
            {{ end }}
            
        
     
    {{ end }}