Michael Zhalevich

Results 3 issues of 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() {...

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 =...