You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm working on a database that has a built-in system table for providing metric values to users.
At present, I have to dump these metrics into a string and then parse it to retrieve the samples.
I discovered that MetricsIterator perfectly aligns with my requirements for this feature. But unfortunately, it's marked as pub(crate), which prevents me from calling this iterator externally.
I'm wondering if this limitation was intentionally by-design or not?
Thank you a lot.
The text was updated successfully, but these errors were encountered:
Yes, making it pub(crate) was a deliberate decision. The smaller the surface of this library, the easier it is to maintain and evolve it. Since #149 it is replaced by an alternative internal implementation and thus no longer available.
I'm working on a database that has a built-in system table for providing metric values to users.
At present, I have to dump these metrics into a string and then parse it to retrieve the samples.
I discovered that MetricsIterator perfectly aligns with my requirements for this feature. But unfortunately, it's marked as pub(crate), which prevents me from calling this iterator externally.
I'm wondering if this limitation was intentionally by-design or not?
Thank you a lot.
The text was updated successfully, but these errors were encountered: