Dynamically changing y-axis fields

Hi,

I have an index with a few fields out of which one is in json format. Lets say I have "statistics" field as json. I also have a time field say "executedTime" which is in epoch milliseconds and a name field which is a string. Lets take a couple records in the index as an example
Ex: 1)
"Name" : "test1"
"statistics" : {
"a" : 100,
"b" : 200
}
"executedTime" : 1551467883000
2)
"Name" : "test2"
"statistics" : {
"b" : 100,
"c" : 300
}
"executedTime" : 1551467998000

Now I want a graph visualization with executedTime on the x-axis and different statistics on the y axis. I have a control visualization which I use to filter the graph based on the name (from drop down options). So when "test1" is selected from the options, y-axis will have two lines corresponding to a and b. When "test2" is selected, y-axis will have two lines corresponding to b and c on the graph. Is this possible in Kibana? Can the graph change its axis field dynamically based on the selection?

Thanks,
Sam.

Can the graph change its axis field dynamically based on the selection?

No, the y-axis can not be dynamically allocated.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.