diff options
Diffstat (limited to 'internal')
-rw-r--r-- | internal/options/options.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/internal/options/options.go b/internal/options/options.go index 3d03e19..9a9a38c 100644 --- a/internal/options/options.go +++ b/internal/options/options.go @@ -18,8 +18,6 @@ type Options struct { MaxResponse int64 // Health and metrics - CheckerDomain string - CheckerInterval time.Duration MetricsInterval time.Duration Limit int } @@ -34,8 +32,6 @@ func Parse() (opts Options) { flag.DurationVar(&opts.Timeout, "t", 10*time.Second, "timeout for each website visit") flag.Int64Var(&opts.MaxResponse, "r", 128, "max response body size to accept in MiB") - flag.StringVar(&opts.CheckerDomain, "c", "", "domain with onion location for setup santity-checks") - flag.DurationVar(&opts.CheckerInterval, "C", 10*time.Second, "how often to to run checker") flag.DurationVar(&opts.MetricsInterval, "m", 5*time.Second, "how often to emit metrics") flag.IntVar(&opts.Limit, "l", 16, "rate-limit that kicks in before handing out work in requests/s") |