I have stat visualization to monitor several KPI Test. Each KPI Test might be done in different time.
I want to have dashboard showing the Available KPI Test, The latest value and When the last execution is done.
Following is example of Elastic Search Command
{
"took": 0,
"timed_out": false,
"_shards": {
"total": 1,
"successful": 1,
"skipped": 0,
"failed": 0
},
"hits": {
"total": {
"value": 2,
"relation": "eq"
},
"max_score": 0.18232156,
"hits": [
{
"_index": "kpi-monitoring",
"_id": "s-eL9osBjZ5BzQrsQqOU",
"_score": 0.18232156,
"_source": {
"PerformanceTest4": 107.7367,
"PerformanceTest3": 103.531,
"PerformanceTest2": 102.312,
"@timestamp": "2023-11-22T10:20:03.603835842Z",
"PerformanceTest1": 7363,
"project_key": "project2"
}
},
{
"_index": "kpi-monitoring",
"_id": "tOeL9osBjZ5BzQrsZqOQ",
"_score": 0.18232156,
"_source": {
"PerformanceTest4": 108.97,
"project_key": "project2",
"@timestamp": "2023-11-22T10:20:12.815552467Z"
}
}
]
}
}
And Following is the visualization we have:
How can I add @timestamp information on each colomn?Preformatted text