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

feat: Add metrics base #84

Merged
merged 18 commits into from
Aug 8, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
style fix again
Signed-off-by: Alfredo Gutierrez <[email protected]>
  • Loading branch information
AlfredoG87 committed Aug 7, 2024
commit cf3ed9c1dae4b9d8c6deb9f08f110088ac294654
Original file line number Diff line number Diff line change
@@ -28,17 +28,13 @@ public class MetricsService {
private static final LongGauge.Config EXAMPLE_GAUGE =
new LongGauge.Config(CATEGORY, "exampleGauge").withDescription("An example gauge");

/**
* An example gauge.
*/
/** An example gauge. */
public final LongGauge exampleGauge;

private static final Counter.Config EXAMPLE_COUNTER =
new Counter.Config(CATEGORY, "exampleCounter").withDescription("An example counter");

/**
* An example counter.
*/
/** An example counter. */
public final Counter exampleCounter;

/**