When adding a template parameter ‘$ Groups’ success,‘ $ Groups. $ Hosts. * ’failure
Can you show your template editor? And where are you use this variables?
See also dashboard example with template variables for groups and hosts:
http://play.grafana-zabbix.org/dashboard/db/template-linux-server
met the same issue.
Groups: *
Hosts: $Groups.*
Apps: $Groups.$Hosts.*
the result of Apps is none .....
![]()
Seems a problem with All value... I'll check it.

Does it works without multi-value enabled?
Disable Mutil-value/include All option, it works well.


Individually selected hosts template has no value ?
If you use multi-value, even one value produce a bug. I'll merge fix for templates today and this will work.
Thank You Alexander, we are waiting for this fix !
Check it out from https://github.com/alexanderzobnin/grafana-zabbix-app
I think there is still a problem here. I have a template variable called $nodes and when I use it in the Item field as part of a regex like /$nodes.outgoing/ it works correctly only when $nodes is a single-value. When it is a multi-value like $nodes = "node1,node2" the Item regex above seems to ignore the '.outgoing' part and expands to everything that matches /$nodes/
Ok, I understand. Will check it.
Yes, it's really bug. Regex /$nodes.*outgoing/ will expand to /node1|node2.*outgoing/, but it must look like /(node1|node2).*outgoing/, right?
Most helpful comment
If you use multi-value, even one value produce a bug. I'll merge fix for templates today and this will work.