forked from kubernetes/kube-state-metrics
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[e2e] Check errors in kube-state-metrics own metrics
- Loading branch information
1 parent
fdd2ef1
commit 47f507d
Showing
7 changed files
with
264 additions
and
151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
To run these tests, you need to provide two CLI flags: | ||
|
||
- `--ksm-http-metrics-url`: url to access the kube-state-metrics service | ||
- `--ksm-telemetry-url`: url to access the kube-state-metrics telemetry endpoint | ||
|
||
Example: | ||
|
||
``` | ||
go test -v ./tests/e2e \ | ||
--ksm-http-metrics-url=http://localhost:8080/ \ | ||
--ksm-telemetry-url=http://localhost:8081/ | ||
``` |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,174 @@ | ||
/* | ||
Copyright 2019 The Kubernetes Authors All rights reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package framework | ||
|
||
import ( | ||
"bytes" | ||
"fmt" | ||
"io" | ||
"io/ioutil" | ||
"net/http" | ||
"net/url" | ||
"path" | ||
"strings" | ||
|
||
"github.com/pkg/errors" | ||
dto "github.com/prometheus/client_model/go" | ||
"github.com/prometheus/common/expfmt" | ||
) | ||
|
||
const ( | ||
epHealthz = "/healthz" | ||
epMetrics = "/metrics" | ||
) | ||
|
||
// The Framework stores a pointer to the KSMClient | ||
type Framework struct { | ||
KsmClient *KSMClient | ||
} | ||
|
||
// New returns a new Framework given the kube-state-metrics service URLs. | ||
// It delegates the url validation errs to NewKSMClient func. | ||
func New(ksmHTTPMetricsURL, ksmTelemetryURL string) (*Framework, error) { | ||
ksmClient, err := NewKSMClient(ksmHTTPMetricsURL, ksmTelemetryURL) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return &Framework{ | ||
KsmClient: ksmClient, | ||
}, nil | ||
} | ||
|
||
// The KSMClient is the Kubernetes State Metric client. | ||
type KSMClient struct { | ||
httpMetricsEndpoint *url.URL | ||
telemetryEndpoint *url.URL | ||
client *http.Client | ||
} | ||
|
||
// NewKSMClient retrieves a new KSMClient the kube-state-metrics service URLs. | ||
// In case of error parsing the provided addresses, it returns an error. | ||
func NewKSMClient(ksmHTTPMetricsAddress, ksmTelemetryAddress string) (*KSMClient, error) { | ||
ksmHTTPMetricsURL, err := validateURL(ksmHTTPMetricsAddress) | ||
if err != nil { | ||
return nil, err | ||
} | ||
ksmTelemetryURL, err := validateURL(ksmTelemetryAddress) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return &KSMClient{ | ||
httpMetricsEndpoint: ksmHTTPMetricsURL, | ||
telemetryEndpoint: ksmTelemetryURL, | ||
client: &http.Client{}, | ||
}, nil | ||
} | ||
|
||
func validateURL(address string) (*url.URL, error) { | ||
u, err := url.Parse(address) | ||
if err != nil { | ||
return nil, err | ||
} | ||
u.Path = strings.TrimRight(u.Path, "/") | ||
return u, nil | ||
} | ||
|
||
// IsHealthz makes a request to the /healthz endpoint to get the health status. | ||
func (k *KSMClient) IsHealthz() (bool, error) { | ||
p := path.Join(k.httpMetricsEndpoint.Path, epHealthz) | ||
|
||
u := *k.httpMetricsEndpoint | ||
u.Path = p | ||
|
||
req, err := http.NewRequest(http.MethodGet, u.String(), nil) | ||
if err != nil { | ||
return false, err | ||
} | ||
|
||
resp, err := k.client.Do(req) | ||
if err != nil { | ||
return false, err | ||
} | ||
defer func() { | ||
io.Copy(ioutil.Discard, resp.Body) | ||
resp.Body.Close() | ||
}() | ||
|
||
if resp.StatusCode != http.StatusOK { | ||
return false, fmt.Errorf("server returned HTTP status %s", resp.Status) | ||
} | ||
|
||
return true, nil | ||
} | ||
|
||
func (k *KSMClient) writeMetrics(endpoint *url.URL, w io.Writer) error { | ||
if endpoint == nil { | ||
return errors.New("Endpoint is nil") | ||
} | ||
|
||
u := *endpoint | ||
u.Path = path.Join(endpoint.Path, epMetrics) | ||
|
||
req, err := http.NewRequest(http.MethodGet, u.String(), nil) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
resp, err := k.client.Do(req) | ||
if err != nil { | ||
return err | ||
} | ||
defer func() { | ||
io.Copy(ioutil.Discard, resp.Body) | ||
resp.Body.Close() | ||
}() | ||
|
||
if resp.StatusCode != http.StatusOK { | ||
return fmt.Errorf("server returned HTTP status %s", resp.Status) | ||
} | ||
|
||
io.Copy(w, resp.Body) | ||
|
||
return nil | ||
} | ||
|
||
// Metrics makes a request to the /metrics endpoint on the "http-metrics" port, | ||
// and writes its content to the writer w. | ||
func (k *KSMClient) Metrics(w io.Writer) error { | ||
return k.writeMetrics(k.httpMetricsEndpoint, w) | ||
} | ||
|
||
// TelemetryMetrics makes a request to the /metrics endpoint on the "telemetry" port, | ||
// and writes its content to the writer w. | ||
func (k *KSMClient) TelemetryMetrics(w io.Writer) error { | ||
return k.writeMetrics(k.telemetryEndpoint, w) | ||
} | ||
|
||
// ParseMetrics uses a prometheus TextParser to parse metrics, given a function | ||
// that fetches and writes metrics. | ||
func (f *Framework) ParseMetrics(metrics func(io.Writer) error) (map[string]*dto.MetricFamily, error) { | ||
buf := &bytes.Buffer{} | ||
err := metrics(buf) | ||
if err != nil { | ||
return nil, errors.Wrap(err, "Failed to get metrics") | ||
} | ||
|
||
parser := &expfmt.TextParser{} | ||
return parser.TextToMetricFamilies(buf) | ||
} |
Oops, something went wrong.