Help on a custom visualization

Hi Andrea,

Unfortunately it's not possible to build a visualization this complex and domain-specific in Kibana. The next closest thing you could do would be to create a Data Table visualization and use a couple Top Hit metrics aggregations to show you a list of your most recent documents and their associated IDs and statuses (this would require storing your data as logs in a single index). Here's a screenshot of how this visualization would look and how it would be defined. In your case, you'd have something like "status" in place of the "response" column.

Also, were you anticipating using a SQL-style JOIN to query your data and associate status with document? If so, note that this would be prohibitively-expensive in ES. For more info on this type of problem and alternatives, here's a great thread: How to fetch data from multiple index using join like sql.

Hope this helps,
CJ