mirror of
https://github.com/Luzifer/webcheck.git
synced 2025-01-08 19:41:39 +00:00
Rename default values for log directory
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
0ccbc80797
commit
8d93d29e48
1 changed files with 2 additions and 2 deletions
4
main.go
4
main.go
|
@ -25,7 +25,7 @@ var (
|
||||||
cfg = struct {
|
cfg = struct {
|
||||||
DisableLog bool `flag:"no-log" default:"false" description:"Disable response body logging"`
|
DisableLog bool `flag:"no-log" default:"false" description:"Disable response body logging"`
|
||||||
Interval time.Duration `flag:"interval,i" default:"1s" description:"Check interval"`
|
Interval time.Duration `flag:"interval,i" default:"1s" description:"Check interval"`
|
||||||
LogDir string `flag:"log-dir,l" default:"./request-log/" description:"Directory to log non-matched requests to"`
|
LogDir string `flag:"log-dir,l" default:"/tmp/resp-log/" description:"Directory to log non-matched requests to"`
|
||||||
LogRetention time.Duration `flag:"log-retention" default:"24h" description:"When to clean up file from log-dir"`
|
LogRetention time.Duration `flag:"log-retention" default:"24h" description:"When to clean up file from log-dir"`
|
||||||
Match string `flag:"match,m" default:".*" description:"RegExp to match the response body against to validate it"`
|
Match string `flag:"match,m" default:".*" description:"RegExp to match the response body against to validate it"`
|
||||||
Timeout time.Duration `flag:"timeout,t" default:"30s" description:"Timeout for the request"`
|
Timeout time.Duration `flag:"timeout,t" default:"30s" description:"Timeout for the request"`
|
||||||
|
@ -276,7 +276,7 @@ func dumpRequest(body io.Reader) (string, error) {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
|
|
||||||
f, err := ioutil.TempFile(cfg.LogDir, "request")
|
f, err := ioutil.TempFile(cfg.LogDir, "resp")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue