in api/src/main/java/com/spotify/metrics/core/MetricIdCache.java [88:94]
public MetricId get(T key) {
try {
return cache.get(metricId, key);
} catch (ExecutionException e) {
throw new RuntimeException("failed to get cache value", e);
}
}