Skip to content

Commit

Permalink
Change perf to dnsperf #25
Browse files Browse the repository at this point in the history
  • Loading branch information
boki committed Sep 16, 2017
1 parent 5e6d365 commit 5736a7d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ Usage:
Available Commands:
curl Run a curl test on a domain name or IP address
dnsperf Find the time it takes to resolve a DNS record on a target
help Help about any command
latency Run a ICMP latency test on a domain name or IP address
mtr Run a MTR test on a domain name or IP address
perf Find the time it takes to resolve a DNS record on a target
ping Run a ping test on a domain name or IP address
resolve Resolve a DNS record on a domain name
traceroute Run a traceroute test on a domain name or IP address
Expand Down
4 changes: 2 additions & 2 deletions cmd/dnsperf.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ import (

var (
dnsPerfCmd = &cobra.Command{
Use: "perf [target]",
Use: "dnsperf [target]",
Short: "Find the time it takes to resolve a DNS record on a target",
Long: `Find the time it takes to resolve a DNS record on a target, e.g., google.com.`,
Example: `perfops perf --dns-server 8.8.8.8 bing.com`,
Example: `perfops dnsperf --dns-server 8.8.8.8 bing.com`,
Args: requireTarget(),
RunE: func(cmd *cobra.Command, args []string) error {
c, err := newPerfOpsClient()
Expand Down

0 comments on commit 5736a7d

Please sign in to comment.