-
Notifications
You must be signed in to change notification settings - Fork 453
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
By default downsample all metrics for aggregated cluster namespaces #890
Changes from 3 commits
4897575
4ecc97d
94921a0
a80ce29
3c95326
8bc5c74
1613369
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,7 +63,8 @@ func NewDownsampler( | |
|
||
func (d *downsampler) NewMetricsAppender() MetricsAppender { | ||
return newMetricsAppender(metricsAppenderOptions{ | ||
agg: d.agg.aggregator, | ||
agg: d.agg.aggregator, | ||
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. weird that this didn't align, did 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. Honestly, no idea. 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. yep fair enough |
||
defaultStagedMetadatas: d.agg.defaultStagedMetadatas, | ||
clockOpts: d.agg.clockOpts, | ||
tagEncoder: d.agg.pools.tagEncoderPool.Get(), | ||
matcher: d.agg.matcher, | ||
|
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.
is this going to be b/w compatible? main concern is if skipping specifying this field be the same as
unaggregated
?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.
Hm, I'll add a support for both to be used in a backwards compatible way. Ugh, good catch.