Michael Zhalevich
Michael Zhalevich
Family::get_or_create forces to clone labels data for the lookup of a counter. Example: ```rust #[derive(Clone, Eq, Hash, PartialEq, EncodeLabelSet)] struct RequestLabels { host: String, api: String, } fn test() {...
It works only with batch update
Added ability to lookup metric by query type in `Family::get_or_create` Example: ```rust #[derive(Clone, Eq, Hash, PartialEq, EncodeLabelSet)] struct Labels { method: String, url_path: String, status_code: String, } let family =...