-
Notifications
You must be signed in to change notification settings - Fork 47
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 ability to throttle exports when reading from disk. #663
base: main
Are you sure you want to change the base?
Conversation
…idth usage when exporting spans, allowing for smoother data flow and preventing resource hogging. It can further refine the size estimation logic based on a specific use case.
…idth usage when exporting spans, allowing for smoother data flow and preventing resource hogging. It can further refine the size estimation logic based on a specific use case. Relate to Add ability to throttle exports when reading from disk. open-telemetry#638
core/src/main/java/io/opentelemetry/android/export/RateLimitedExporter.java
Outdated
Show resolved
Hide resolved
core/src/main/java/io/opentelemetry/android/export/RateLimitedExporter.java
Outdated
Show resolved
Hide resolved
Relate to open-telemetry#638
…nterface and Duration with a plain long value for timeWindowInMillis ref open-telemetry#638
core/src/main/java/io/opentelemetry/android/export/RateLimitedExporter.java
Show resolved
Hide resolved
Ref: Add ability to throttle exports when reading from disk. open-telemetry#638
core/src/main/java/io/opentelemetry/android/export/RateLimitedExporter.java
Outdated
Show resolved
Hide resolved
final SpanExporter delegate; | ||
CategoryFunction categoryFunction = span -> "default"; | ||
long maxBytesPerSecond = 1024; // Default to 1 KB/s | ||
long timeWindowInMillis = 1000; // Default to 1 second |
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 they be private since they have a setter anyway (using the builder pattern)?
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.
Since the fields are intended to be set only through the builder methods i have tried to add and make them private so they can only be modified through it's provided builder methods. I'm sure it will help enhance encapsulation and help maintain the integrity of it's object's state.
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.
delegate
can also be private I guess
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.
Relate to open-telemetry#638
Relate to open-telemetry#638
@Victorsesan are you able to come back to this any time soon? Thanks! |
Hey @breedx-splk Yes i will, i think i lastly made a change that needed a mod review. Still waiting |
} | ||
|
||
static class Builder { | ||
final SpanExporter delegate; |
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.
final SpanExporter delegate; | |
private final SpanExporter delegate; |
#663 (comment) left and ready to go, I will approve meanwhile. |
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.
#663 (comment) pending otherwise LGTM
Added an implementation which provides a flexible way to manage bandwidth usage when exporting spans, allowing for smoother data flow and preventing resource hogging. It can further refine the size estimation logic based on a specific use case.
Relate to #638