Dynamic message addition in kibana

my index name : info , having some kind of schema i applied by help of grok .

timestamp,log level,class,message (this is schema of the index of info)

so in kibana visualization i used table type , it retrieved timestamp,message .

but i want a another column in table visualization which was not bound with info index.

like, timestamp,message,suggestion (here suggestion is dynamic , which is not a part of info index) but that suggestion is part of another index .

so will it possible in kibana ?

Kibana can't add a new field dynamically. It needs to be done programmatically as of now .You might get the option using expression language . Most recent versions of Kibana come with API where you can export your visualization JSON - modify it according to your needs and reimport it. But again, this wouldn't be dynamic in nature.

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