mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-09 23:24:09 -08:00
Log response body if test fails.
This commit is contained in:
parent
190d1347ba
commit
4d294889da
|
@ -93,11 +93,15 @@ func queryExporter(address string) error {
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
b, err := ioutil.ReadAll(resp.Body)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if err := resp.Body.Close(); err != nil {
|
||||
return err
|
||||
}
|
||||
if want, have := http.StatusOK, resp.StatusCode; want != have {
|
||||
return fmt.Errorf("want /metrics status code %d, have %d", want, have)
|
||||
return fmt.Errorf("want /metrics status code %d, have %d. Body:\n%s", want, have, b)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue