export function set_metric_attribute(metric_uuid, attribute, value, reload) {
    return fetch_server_api("post", `metric/${metric_uuid}/attribute/${attribute}`, {
        [attribute]: value,
    }).then(reload)
}