package app import ( "fmt" "github.com/seaweedfs/seaweedfs/weed/admin/dash" ) templ MountClients(data dash.MountClientsData) {

Mount Clients

Connected Mount Clients
{ fmt.Sprintf("%d", data.TotalMountClients) }
Mount Clients
if len(data.MountClients) > 0 {
for _, c := range data.MountClients { }
Address Type Path Prefix Client ID Connected Since Filer
{ c.Address } { c.ClientType } { c.PathPrefix } { fmt.Sprintf("%d", c.ClientId) } if !c.ConnectedAt.IsZero() { { c.ConnectedAt.Format("2006-01-02 15:04:05") } } else { N/A } { c.FilerAddress }
} else {
No Mount Clients Found

No FUSE or VFS mounts are currently connected to the cluster's filers.

}
Last updated: { data.LastUpdated.Format("2006-01-02 15:04:05") }
}