Merge pull request #1 from yuki-tsuchiya/feature/handling_http_client_error

Fix handling http client error
This commit is contained in:
yuki-tsuchiya 2022-11-21 09:23:12 +09:00 committed by GitHub
commit bcc930b731
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -7,7 +7,6 @@ import (
"sort"
"sync"
"github.com/pkg/errors"
prom "github.com/prometheus/client_model/go"
"github.com/prometheus/common/expfmt"
"golang.org/x/sync/errgroup"
@ -24,13 +23,15 @@ func (m *merger) merge(ctx context.Context, w io.Writer) error {
g.Go(func() error {
resp, err := m.client.Get(source.url)
if err != nil {
return errors.Wrap(err, fmt.Sprintf("get url: %s", source.url))
fmt.Printf("get url: %s", source.url)
return nil
}
defer resp.Body.Close()
tp := new(expfmt.TextParser)
out, err := tp.TextToMetricFamilies(resp.Body)
if err != nil {
return errors.Wrap(err, fmt.Sprintf("parse url: %s", source.url))
fmt.Printf("parse url: %s", source.url)
return nil
}
mu.Lock()
defer mu.Unlock()