We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There are several places where we persist files to object store, and we have no way of tracking how much time is spent doing so.
Add metrics to track time to persist files in the following places:
Note that some of these are done in a loop, so the time to persist should track from when the loop starts to when the file was successfully persisted.
N/A
The metric crate in core provides the means to track times like these via a DurationHistogram metric.
metric
DurationHistogram
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem statement
There are several places where we persist files to object store, and we have no way of tracking how much time is spent doing so.
Proposed solution
Add metrics to track time to persist files in the following places:
Note that some of these are done in a loop, so the time to persist should track from when the loop starts to when the file was successfully persisted.
Alternatives considered
N/A
Additional context
The
metric
crate in core provides the means to track times like these via aDurationHistogram
metric.The text was updated successfully, but these errors were encountered: