-
Notifications
You must be signed in to change notification settings - Fork 809
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(metrics): adds NoopMeter implementation #278
Conversation
return; | ||
} | ||
|
||
record(value: number, distContext: DistributedContext): void { |
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.
Duplicate function implementation is not allowed, I think you should change this to:
record(
value: number,
distContext?: DistributedContext,
spanContext?: SpanContext
): void {
return;
}
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 pending Mayur's request to use real objects in the unit tests instead of force casting with as
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.
Nice!
@bg451 Feel free to merge once build passed |
* fix(express): listener leak * chore(express): more middleware tests
Which problem is this PR solving?
Resolves #264
This change is