rename "weed watch" to "weed filer.meta.tail"

This commit is contained in:
Chris Lu 2021-01-12 18:48:01 -08:00
parent 5cd9c9e642
commit 90c5077610
2 changed files with 9 additions and 9 deletions

View file

@ -16,6 +16,7 @@ var Commands = []*Command{
cmdExport, cmdExport,
cmdFiler, cmdFiler,
cmdFilerCat, cmdFilerCat,
cmdFilerMetaTail,
cmdFilerReplicate, cmdFilerReplicate,
cmdFilerSynchronize, cmdFilerSynchronize,
cmdFix, cmdFix,
@ -26,7 +27,6 @@ var Commands = []*Command{
cmdScaffold, cmdScaffold,
cmdServer, cmdServer,
cmdShell, cmdShell,
cmdWatch,
cmdUpload, cmdUpload,
cmdVersion, cmdVersion,
cmdVolume, cmdVolume,

View file

@ -15,11 +15,11 @@ import (
) )
func init() { func init() {
cmdWatch.Run = runWatch // break init cycle cmdFilerMetaTail.Run = runFilerMetaTail // break init cycle
} }
var cmdWatch = &Command{ var cmdFilerMetaTail = &Command{
UsageLine: "watch [-filer=localhost:8888] [-target=/]", UsageLine: "filer.meta.tail [-filer=localhost:8888] [-target=/]",
Short: "see recent changes on a filer", Short: "see recent changes on a filer",
Long: `See recent changes on a filer. Long: `See recent changes on a filer.
@ -27,13 +27,13 @@ var cmdWatch = &Command{
} }
var ( var (
watchFiler = cmdWatch.Flag.String("filer", "localhost:8888", "filer hostname:port") watchFiler = cmdFilerMetaTail.Flag.String("filer", "localhost:8888", "filer hostname:port")
watchTarget = cmdWatch.Flag.String("pathPrefix", "/", "path to a folder or file, or common prefix for the folders or files on filer") watchTarget = cmdFilerMetaTail.Flag.String("pathPrefix", "/", "path to a folder or file, or common prefix for the folders or files on filer")
watchStart = cmdWatch.Flag.Duration("timeAgo", 0, "start time before now. \"300ms\", \"1.5h\" or \"2h45m\". Valid time units are \"ns\", \"us\" (or \"µs\"), \"ms\", \"s\", \"m\", \"h\"") watchStart = cmdFilerMetaTail.Flag.Duration("timeAgo", 0, "start time before now. \"300ms\", \"1.5h\" or \"2h45m\". Valid time units are \"ns\", \"us\" (or \"µs\"), \"ms\", \"s\", \"m\", \"h\"")
watchPattern = cmdWatch.Flag.String("pattern", "", "full path or just filename pattern, ex: \"/home/?opher\", \"*.pdf\", see https://golang.org/pkg/path/filepath/#Match ") watchPattern = cmdFilerMetaTail.Flag.String("pattern", "", "full path or just filename pattern, ex: \"/home/?opher\", \"*.pdf\", see https://golang.org/pkg/path/filepath/#Match ")
) )
func runWatch(cmd *Command, args []string) bool { func runFilerMetaTail(cmd *Command, args []string) bool {
grpcDialOption := security.LoadClientTLS(util.GetViper(), "grpc.client") grpcDialOption := security.LoadClientTLS(util.GetViper(), "grpc.client")