How to not escape a value when used in link?

I have a column with value “something/foo/bar” and I want to append it to an “…/some.domain.com/” to get a link point to “…/some.domain.com/something/foo/bar”

So I defined by link to be

“…/some.domain.com/${__cell}”

However the ${__cell} value is escaped and I get a url “…/some.domain.com/something%2Ffoo%2Fbar” which results in 404.

How can I inject the cell value without escaping it?

NOTE: …/ means http://. I am a new user, and I couldn’t post the question normally due to limitation “new users cannot have more than 2 links in a question” :smiley:

In a recent grafana version we’ve updated the tooltip for the url field, see screenshot. Basically you’ll need to use the format /${__cell:raw}.

image