Skip to content
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

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

NipunaMadhushan
Copy link
Contributor

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

Describe how you are implementing the solutions along with the design details.

Samples

Provide high-level details about the samples related to this feature.

Remarks

List any other known issues, related PRs, TODO items, or any other notes related to the PR.

Check List

  • Read the Contributing Guide
  • Updated Change Log
  • Checked Tooling Support (#)
  • Added necessary tests
    • Unit Tests
    • Spec Conformance Tests
    • Integration Tests
    • Ballerina By Example Tests
  • Increased Test Coverage
  • Added necessary documentation
    • API documentation
    • Module documentation in Module.md files
    • Ballerina By Examples

@@ -0,0 +1,112 @@
package io.ballerina.runtime.observability.metrics;
Copy link
Contributor

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.*;

Copy link
Contributor

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 {
Copy link
Contributor

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

Copy link

codecov bot commented Nov 20, 2024

Codecov Report

Attention: Patch coverage is 7.40741% with 50 lines in your changes missing coverage. Please review.

Project coverage is 77.45%. Comparing base (fb27ea2) to head (baf6570).
Report is 13 commits behind head on master.

Files with missing lines Patch % Lines
...vability/metrics/BallerinaMetricsLogsObserver.java 0.00% 47 Missing ⚠️
.../ballerina/runtime/observability/ObserveUtils.java 57.14% 2 Missing and 1 partial ⚠️
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.
📢 Have feedback on the report? Share it here.


🚨 Try these New Features:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[New Feature]: Log metrics for each response
2 participants