Skip to content

Commit

Permalink
Add note on combining filters
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Eckert committed Aug 3, 2022
1 parent 4507cf7 commit 87c191f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cli/cmd/proxy/read/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,17 +111,17 @@ func (c *ReadCommand) init() {
f.StringVar(&flag.StringVar{
Name: "fqdn",
Target: &c.flagFQDN,
Usage: "Filter cluster output to only clusters with a fully qualified domain name which contains the given value.",
Usage: "Filter cluster output to clusters with a fully qualified domain name which contains the given value. May be combined with -address and -port.",
})
f.StringVar(&flag.StringVar{
Name: "address",
Target: &c.flagAddress,
Usage: "Filter clusters, endpoints, and listeners output to only those with addresses which contain the given value.",
Usage: "Filter clusters, endpoints, and listeners output to those with addresses which contain the given value. May be combined with -fqdn and -port",
})
f.IntVar(&flag.IntVar{
Name: "port",
Target: &c.flagPort,
Usage: "Filter endpoints and listeners output to only addresses with the given port number.",
Usage: "Filter endpoints and listeners output to addresses with the given port number. May be combined with -fqdn and -address.",
Default: -1,
})

Expand Down

0 comments on commit 87c191f

Please sign in to comment.