weed/server/volume_server_ui/volume.html
| Path | Disk | Total | Free | Usage |
|---|---|---|---|---|
| {{ range .DiskStatuses }} | {{ .Dir }} | {{ .DiskType }} | {{ bytesToHumanReadable .All }} | {{ bytesToHumanReadable .Free }} |
| {{ end }} |
| 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 }}
| Id | Collection | Disk | Data Size | Files | Trash | TTL | ReadOnly | Version |
|---|---|---|---|---|---|---|---|---|
| {{ range .Volumes }} | {{ .Id }} | {{ .Collection }} | {{ .DiskType }} | {{ bytesToHumanReadable .Size }} | {{ .FileCount }} | {{ .DeleteCount }} / {{bytesToHumanReadable .DeletedByteCount}} | {{ .Ttl }} | {{ .ReadOnly }} |
| {{ end }} |
{{ if isNotEmpty .RemoteVolumes }}
| Id | Collection | Size | Files | Trash | Remote | Key |
|---|---|---|---|---|---|---|
| {{ range .RemoteVolumes }} | {{ .Id }} | {{ .Collection }} | {{ bytesToHumanReadable .Size }} | {{ .FileCount }} | {{ .DeleteCount }} / {{bytesToHumanReadable .DeletedByteCount}} | {{ .RemoteStorageName }} |
| {{ end }} |
{{ end }} {{ if isNotEmpty .EcVolumes }}
| Id | Collection | Total Size | Shard Details | CreatedAt |
|---|---|---|---|---|
| {{ range .EcVolumes }} | {{ .VolumeId }} | {{ .Collection }} | {{ bytesToHumanReadable .Size }} | {{ range .Shards }} {{ .ShardId }}: {{ bytesToHumanReadable .Size }} {{ end }} |
| {{ end }} |
{{ end }}