-
Notifications
You must be signed in to change notification settings - Fork 81
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
Clone Family.metrics and iterate over family #131
Comments
Can you expand on the use-cases that you want to solve with the above proposed changes? |
Sure. IterThe primary problem I have found when using this library is that without knowing all the label keys, it's not possible (please let me know if it is) to get any metrics. Suppose I have an application that requires me to spawn Now suppose I am now in some other part of the application and would like to iterate over every metric in that family. The only way to do this at the moment (i believe) would be to store a vec of uuids that you inserted into the family and manually iterate over each and The family "hashmap" is already storing all the data we need to iterate over it, but doesn't expose any functionality to interact with it (outside of CloneUsing the above example, suppose I want to compare metrics of each component over time. To do this, I would like to take a snapshot of the metric family at time This is not possible at the moment as SuggestionTo solve both these problems I suggest making E.g. in
This would solve both these problems and allow a user to do something like:
Also providing a |
I am also looking for these features. My use case is to expose some metrics and labels, via a proprietary endpoint in addition to the standard |
I would also be interested in this, @mxinden. My use-case loosely mirrors what @gamgi said above. Additionally, I'm interested in writing test cases that make assertions on what time series do or do not exist within a The ability to iterate over a family of metrics would allow me not only to check that my expected time series exist and are set to the proper values, but also to check that other unexpected time series will not be emitted by my application. Would a PR adding an I'll cross-reference my comment in #231, which concerns how singular metrics are fetched from a family. Ideally, any iterator implementation would not be subject to the same deadlock concerns, and could emit |
Problems
There is no way to copy/clone the
HashMap<S,M>
within family.There is no way to iterate over a metric
Family
or get metrics without knowing the labels.get_or_create()
for every metric. This isn't great if you don't know the label names (don't store them etc...).I am happy to tackle these if you want. I think making
M
clone (not sure why it isn't atm) and returning a new hashmap with the cloned values would fix both these problems.The text was updated successfully, but these errors were encountered: