Team,
I am new to Kibana. I am trying to check if is it possible to create dashboard graphs from non time series data. My json data contains multiple key value where timestamp is not one of them. I like to use some combination of these key.
Sample json looks like
{
"build": "build number",
"env": "environment_name",
"run_name": "some_name",
"results": {
"key1":"value1",
"key2":"value2"
}
}
I want to show results from above json in my dashboard where build+env+run_name serve as unique key.
Any directions will be really useful.