2021-12-03 22:50:58 -05:00
|
|
|
//go:build minimal
|
2021-10-15 10:05:00 -05:00
|
|
|
// +build minimal
|
|
|
|
|
|
|
|
package monitoring
|
|
|
|
|
|
|
|
import (
|
2021-12-13 14:23:31 -05:00
|
|
|
"context"
|
2021-10-15 10:05:00 -05:00
|
|
|
"crypto/tls"
|
|
|
|
"encoding/json"
|
2021-12-13 14:23:31 -05:00
|
|
|
"fmt"
|
2021-10-15 10:05:00 -05:00
|
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
|
2021-12-03 22:50:58 -05:00
|
|
|
"zotregistry.io/zot/pkg/log"
|
2021-10-15 10:05:00 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
httpTimeout = 1 * time.Minute
|
|
|
|
)
|
|
|
|
|
|
|
|
// MetricsConfig is used to configure the creation of a Node Exporter http client
|
|
|
|
// that will connect to a particular zot instance.
|
|
|
|
type MetricsConfig struct {
|
|
|
|
// Address of the zot http server
|
|
|
|
Address string
|
|
|
|
|
|
|
|
// Transport to use for the http client.
|
|
|
|
Transport *http.Transport
|
|
|
|
|
|
|
|
// HTTPClient is the client to use.
|
|
|
|
HTTPClient *http.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
type MetricsClient struct {
|
|
|
|
headers http.Header
|
|
|
|
config MetricsConfig
|
|
|
|
log log.Logger
|
|
|
|
}
|
|
|
|
|
|
|
|
func newHTTPMetricsClient() *http.Client {
|
2022-03-21 12:37:23 -05:00
|
|
|
defaultTransport := http.DefaultTransport.(*http.Transport).Clone() //nolint: forcetypeassert
|
2021-10-15 10:05:00 -05:00
|
|
|
defaultTransport.TLSClientConfig = &tls.Config{InsecureSkipVerify: true} //nolint: gosec
|
|
|
|
|
|
|
|
return &http.Client{
|
|
|
|
Timeout: httpTimeout,
|
|
|
|
Transport: defaultTransport,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Creates a MetricsClient that can be used to retrieve in memory metrics
|
|
|
|
// The new MetricsClient retrieved must be cached and reused by the Node Exporter
|
|
|
|
// in order to prevent concurrent memory leaks.
|
|
|
|
func NewMetricsClient(config *MetricsConfig, logger log.Logger) *MetricsClient {
|
|
|
|
if config.HTTPClient == nil {
|
|
|
|
config.HTTPClient = newHTTPMetricsClient()
|
|
|
|
}
|
|
|
|
|
|
|
|
return &MetricsClient{config: *config, headers: make(http.Header), log: logger}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (mc *MetricsClient) GetMetrics() (*MetricsInfo, error) {
|
|
|
|
metrics := &MetricsInfo{}
|
|
|
|
if _, err := mc.makeGETRequest(mc.config.Address+"/v2/metrics", metrics); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return metrics, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (mc *MetricsClient) makeGETRequest(url string, resultsPtr interface{}) (http.Header, error) {
|
2021-12-13 14:23:31 -05:00
|
|
|
req, err := http.NewRequestWithContext(context.Background(), "GET", url, nil)
|
2021-10-15 10:05:00 -05:00
|
|
|
if err != nil {
|
2021-12-13 14:23:31 -05:00
|
|
|
return nil, fmt.Errorf("metric scraping: %w", err)
|
2021-10-15 10:05:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
resp, err := mc.config.HTTPClient.Do(req)
|
|
|
|
if err != nil {
|
2021-12-13 14:23:31 -05:00
|
|
|
return nil, fmt.Errorf("metric scraping error: %w", err)
|
2021-10-15 10:05:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
if err := json.NewDecoder(resp.Body).Decode(resultsPtr); err != nil {
|
2021-12-13 14:23:31 -05:00
|
|
|
return nil, fmt.Errorf("metric scraping failed: %w", err)
|
2021-10-15 10:05:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return resp.Header, nil
|
|
|
|
}
|