-
Notifications
You must be signed in to change notification settings - Fork 353
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
feat: support statsmatch from proxy metric #1826
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1826 +/- ##
==========================================
- Coverage 65.98% 65.97% -0.02%
==========================================
Files 86 86
Lines 12910 12924 +14
==========================================
+ Hits 8519 8526 +7
- Misses 3851 3857 +6
- Partials 540 541 +1
|
abd2bbc
to
884d5da
Compare
Signed-off-by: zhaonan <zhaonan06@corp.netease.com>
Signed-off-by: zhaonan <zhaonan06@corp.netease.com>
Signed-off-by: zhaonan <zhaonan06@corp.netease.com>
Signed-off-by: zhaonan <zhaonan06@corp.netease.com>
Signed-off-by: zhaonan <zhaonan06@corp.netease.com>
5cf1475
to
5f2ea0d
Compare
5f2ea0d
to
545d686
Compare
/retest |
/retest |
blocked on #1877 |
@@ -11,7 +11,12 @@ type ProxyMetrics struct { | |||
// Sinks defines the metric sinks where metrics are sent to. | |||
Sinks []MetricSink `json:"sinks,omitempty"` | |||
// Matches defines configuration for selecting specific metrics instead of generating all metrics stats | |||
// that are enabled by default. This helps reduce CPU and memory overhead in Envoy. | |||
// that are enabled by default. This helps reduce CPU and memory overhead in Envoy, but eliminating some stats | |||
// may after critical functionality. Here are the stats that we strongly recommend not disabling: |
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.
❤️
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.
LGTM thanks !
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.
Needs a quick rebase but looks good
Signed-off-by: zhaonan <zhaonan06@corp.netease.com>
/retest |
1 similar comment
/retest |
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.
thanks @tmsnan !
Description:
feat: support statsmatch from proxy metric.
Releate: #1669 #1761