0

cant seem to find if similar post. I am using Grafana / InfluxDB I am trying to create a variable in Grafana, to create this variable I need to query values which I can do easily with this piece:

SHOW TAG VALUES WITH KEY = "name"

However, I need to filter the values that I get, in example, I would like only to see values that have specific url maybe just https://google.com.

I tried something like this

SHOW TAG VALUES WITH KEY = "name" WHERE "name" = 'https://google.com'

And I get only on instance of this URL, perhaps there is a way to find all the URL's which contain https://google.com

1 Answer 1

1

Try regular expressions, probably:

SHOW TAG VALUES WITH KEY = "name" 
WHERE "name" =~ /.https:\/\/google\.com./
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.