For example I am trying to create this prometheus metric
const wishlistReleasesProm = new prometheus.Gauge({
name: path,
help: 'test'
});
path is a string. But it does not let me. I tried ${path}but it did not work either. Is there a way to do this?