hello, I have on ElasticSearch side the following json doc:
...
'linux': {
'uname': 'bob'
}
...
I want to define a template variables that gather all uname
values:
{"find": "terms", "field": "linux.uname"}
Noted here I use linux.uname
refer to the field name, I am not sure if this causes the problem, but all it returns from preview is All
, not anything specific. I tried to provide "size"
option, doesn’t help either.
Am I suppose to see a list of values in preview? Do I have to actually use this variable in some panel definition to see the output?
Any help is much appreciated.
Oliver