// GetTabletPath is part of the Explorer interface func (ex ZkExplorer) GetTabletPath(alias topo.TabletAlias) string { return path.Join("/zk", alias.Cell, "vt/tablets", alias.TabletUIDStr()) }
// TabletPathForAlias converts a tablet alias to the zk path func TabletPathForAlias(alias topo.TabletAlias) string { return fmt.Sprintf("/zk/%v/vt/tablets/%v", alias.Cell, alias.TabletUIDStr()) }