-
Notifications
You must be signed in to change notification settings - Fork 455
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[dtest] Add a method for Prom remote writes #3065
Merged
vpranckaitis
merged 3 commits into
master
from
vilius/dtest_add_prom_remove_write_method
Jan 7, 2021
Merged
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -30,10 +30,14 @@ import ( | |||||||||||||||||||||
"time" | ||||||||||||||||||||||
|
||||||||||||||||||||||
"github.com/m3db/m3/src/query/generated/proto/admin" | ||||||||||||||||||||||
"github.com/m3db/m3/src/query/generated/proto/prompb" | ||||||||||||||||||||||
xhttp "github.com/m3db/m3/src/x/net/http" | ||||||||||||||||||||||
|
||||||||||||||||||||||
"github.com/gogo/protobuf/jsonpb" | ||||||||||||||||||||||
"github.com/gogo/protobuf/proto" | ||||||||||||||||||||||
"github.com/golang/snappy" | ||||||||||||||||||||||
"github.com/ory/dockertest/v3" | ||||||||||||||||||||||
"github.com/prometheus/common/model" | ||||||||||||||||||||||
"go.uber.org/zap" | ||||||||||||||||||||||
) | ||||||||||||||||||||||
|
||||||||||||||||||||||
|
@@ -57,6 +61,12 @@ var ( | |||||||||||||||||||||
// ResponseVerifier is a function that checks if the query response is valid. | ||||||||||||||||||||||
type ResponseVerifier func(int, map[string][]string, string, error) error | ||||||||||||||||||||||
|
||||||||||||||||||||||
// Sample is a struct containing a metric value at a given timestamp. | ||||||||||||||||||||||
type Sample struct { | ||||||||||||||||||||||
Timestamp int64 | ||||||||||||||||||||||
Value float64 | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
// Coordinator is a wrapper for a coordinator. It provides a wrapper on HTTP | ||||||||||||||||||||||
// endpoints that expose cluster management APIs as well as read and write | ||||||||||||||||||||||
// endpoints for series data. | ||||||||||||||||||||||
|
@@ -66,6 +76,8 @@ type Coordinator interface { | |||||||||||||||||||||
|
||||||||||||||||||||||
// WriteCarbon writes a carbon metric datapoint at a given time. | ||||||||||||||||||||||
WriteCarbon(port int, metric string, v float64, t time.Time) error | ||||||||||||||||||||||
// WriteProm writes a prometheus metric. | ||||||||||||||||||||||
WriteProm(name string, tags map[string]string, samples []Sample) error | ||||||||||||||||||||||
// RunQuery runs the given query with a given verification function. | ||||||||||||||||||||||
RunQuery(verifier ResponseVerifier, query string) error | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
@@ -323,6 +335,77 @@ func (c *coordinator) WriteCarbon( | |||||||||||||||||||||
// return nil | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
func (c *coordinator) WriteProm(name string, tags map[string]string, samples []Sample) error { | ||||||||||||||||||||||
if c.resource.closed { | ||||||||||||||||||||||
return errClosed | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
var ( | ||||||||||||||||||||||
url = c.resource.getURL(7201, "api/v1/prom/remote/write") | ||||||||||||||||||||||
|
||||||||||||||||||||||
reqLabels = make([]prompb.Label, 0) | ||||||||||||||||||||||
reqSamples = make([]prompb.Sample, 0) | ||||||||||||||||||||||
) | ||||||||||||||||||||||
|
||||||||||||||||||||||
reqLabels = append(reqLabels, prompb.Label{ | ||||||||||||||||||||||
Name: []byte(model.MetricNameLabel), | ||||||||||||||||||||||
Value: []byte(name), | ||||||||||||||||||||||
}) | ||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Micro nit (slightly less syntax for the eyes to parse):
Suggested change
or something in that direction. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||||||||||||||||||||||
for tag, value := range tags { | ||||||||||||||||||||||
reqLabels = append(reqLabels, prompb.Label{ | ||||||||||||||||||||||
Name: []byte(tag), | ||||||||||||||||||||||
Value: []byte(value), | ||||||||||||||||||||||
}) | ||||||||||||||||||||||
} | ||||||||||||||||||||||
for _, s := range samples { | ||||||||||||||||||||||
reqSamples = append(reqSamples, prompb.Sample{ | ||||||||||||||||||||||
Timestamp: s.Timestamp, | ||||||||||||||||||||||
Value: s.Value, | ||||||||||||||||||||||
}) | ||||||||||||||||||||||
} | ||||||||||||||||||||||
writeRequest := prompb.WriteRequest{ | ||||||||||||||||||||||
Timeseries: []prompb.TimeSeries{ | ||||||||||||||||||||||
{ | ||||||||||||||||||||||
Labels: reqLabels, | ||||||||||||||||||||||
Samples: reqSamples, | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
logger := c.resource.logger.With( | ||||||||||||||||||||||
zapMethod("createDatabase"), zap.String("url", url), | ||||||||||||||||||||||
zap.String("request", writeRequest.String())) | ||||||||||||||||||||||
|
||||||||||||||||||||||
body, err := proto.Marshal(&writeRequest) | ||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||
logger.Error("failed marshaling request message", zap.Error(err)) | ||||||||||||||||||||||
return err | ||||||||||||||||||||||
} | ||||||||||||||||||||||
data := bytes.NewBuffer(snappy.Encode(nil, body)) | ||||||||||||||||||||||
|
||||||||||||||||||||||
req, err := http.NewRequestWithContext(context.Background(), http.MethodPost, url, data) | ||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||
logger.Error("failed constructing request", zap.Error(err)) | ||||||||||||||||||||||
return err | ||||||||||||||||||||||
} | ||||||||||||||||||||||
req.Header.Add(xhttp.HeaderContentType, xhttp.ContentTypeProtobuf) | ||||||||||||||||||||||
|
||||||||||||||||||||||
resp, err := http.DefaultClient.Do(req) | ||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||
logger.Error("failed making a request", zap.Error(err)) | ||||||||||||||||||||||
return err | ||||||||||||||||||||||
} | ||||||||||||||||||||||
defer resp.Body.Close() | ||||||||||||||||||||||
if resp.StatusCode < 200 || resp.StatusCode > 299 { | ||||||||||||||||||||||
logger.Error("status code not 2xx", | ||||||||||||||||||||||
zap.Int("status code", resp.StatusCode), | ||||||||||||||||||||||
zap.String("status", resp.Status)) | ||||||||||||||||||||||
return fmt.Errorf("status code %d", resp.StatusCode) | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
return nil | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
func makePostRequest(logger *zap.Logger, url string, body proto.Message) (*http.Response, error) { | ||||||||||||||||||||||
data := bytes.NewBuffer(nil) | ||||||||||||||||||||||
if err := (&jsonpb.Marshaler{}).Marshal(data, body); err != nil { | ||||||||||||||||||||||
|
@@ -338,7 +421,7 @@ func makePostRequest(logger *zap.Logger, url string, body proto.Message) (*http. | |||||||||||||||||||||
return nil, fmt.Errorf("failed to construct request: %w", err) | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
req.Header.Add("Content-Type", "application/json") | ||||||||||||||||||||||
req.Header.Add(xhttp.HeaderContentType, xhttp.ContentTypeJSON) | ||||||||||||||||||||||
|
||||||||||||||||||||||
return http.DefaultClient.Do(req) | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you could reuse
ts.Datapoint
(or some other readily available struct).There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
de8c17f#diff-36f3f4899036050c43cca0b378f19429cc8ceb118ebffd0c42f672ee13d507e8R74