-
Notifications
You must be signed in to change notification settings - Fork 752
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
Add Ballerina metrics logs observer #43615
base: master
Are you sure you want to change the base?
Add Ballerina metrics logs observer #43615
Conversation
@@ -0,0 +1,112 @@ | |||
package io.ballerina.runtime.observability.metrics; |
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.
License text missing
import java.util.Set; | ||
|
||
import static io.ballerina.runtime.observability.ObservabilityConstants.*; | ||
|
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.
Shall we add java doc for class
|
||
import static io.ballerina.runtime.observability.ObservabilityConstants.*; | ||
|
||
public class BallerinaMetricsLogsObserver implements BallerinaObserver { |
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.
should this be moved to observe side
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #43615 +/- ##
============================================
- Coverage 77.47% 77.45% -0.02%
Complexity 58512 58512
============================================
Files 3434 3435 +1
Lines 218711 218766 +55
Branches 28918 28920 +2
============================================
+ Hits 169443 169446 +3
- Misses 39874 39928 +54
+ Partials 9394 9392 -2 ☔ View full report in Codecov by Sentry. 🚨 Try these New Features:
|
Purpose
We are implementing log based metrics for Ballerina as a requirement for all WSO2 on-prem and SaaS products that need to use the same stack for observability. In order to retrieve metrics data using OpenSearch, we need to provide log based metrics which contain a format as follows.
[Time Stamp] protocol:<protocol_type> tagKey1:tagValue1 tagKey2:tagValue2 .. response_time:<value_in_seconds>
Fixes #43614
Approach
Samples
Remarks
Check List