0

I am trying to add dropdowns (grafana variables) in my dashboard that changes dynamically. This what I tried

  1. Created variable named Domain Query : select fields_Domain from launcher_dropdown; Output: "ABC ESG"
  2. Created variable named Project( changes dynamically based on Domain value) Query : select fields_Project from launcher_dropdown where fields_Domain in($Domain) ( also tried =$Domain) But here I am getting error Since I am new in Grafana finding it difficult.I am following Grafana documentation . But no luck. enter image description here
curiousguy
  • 3,212
  • 8
  • 39
  • 71

1 Answers1

1

Finally figured it out variable should be inside single quotes ''

E.g. select fields_Project from launcher_dropdown where fields_Domain ='$Domain'

curiousguy
  • 3,212
  • 8
  • 39
  • 71