pub fn create_record(
store store: Store,
histogram_name name_string: String,
labels labels_dict: Dict(String, String),
bucket_thresholds thresholds: Set(Number),
) -> Result(Store, StoreError)
pub fn measure(
store store: Store,
histogram_name name_string: String,
labels labels_dict: Dict(String, String),
measurement value: Number,
) -> Result(Store, StoreError)
pub fn register(
store store: Store,
name name_string: String,
description description: String,
) -> Result(Store, StoreError)
pub fn unregister(
store store: Store,
histogram_name name_string: String,
) -> Result(Store, StoreError)