You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 23, 2023. It is now read-only.
globalFlags.StringVar(&from, "from", "30min", "for vegeta outputs, will generate requests for data starting from now minus... eg '30min', '5h', '14d', etc. or a unix timestamp")
39
41
globalFlags.StringVar(&maxAge, "max-age", "6h30min", "max age (last update diff with now) of metricdefs. use 0 to disable")
40
42
globalFlags.IntVar(&limit, "limit", 0, "only show this many metrics. use 0 to disable")
@@ -55,6 +57,13 @@ func main() {
55
57
fmt.Printf("global config flags:\n\n")
56
58
globalFlags.PrintDefaults()
57
59
fmt.Println()
60
+
fmt.Println("tags filter:")
61
+
fmt.Println(" '' no filtering based on tags")
62
+
fmt.Println(" 'none' only show metrics that have no tags")
63
+
fmt.Println(" 'some' only show metrics that have one or more tags")
64
+
fmt.Println(" 'valid' only show metrics whose tags (if any) are valid")
65
+
fmt.Println(" 'invalid' only show metrics that have one or more invalid tags")
66
+
fmt.Println()
58
67
fmt.Printf("idxtype: only 'cass' supported for now\n\n")
0 commit comments