Hello,
I was wondering if its possible to do something like a combination of latest and pivot or maybe more understanding of what I can do with each.
So use case:
I have status
field(keyword) reported for object
field (keyword) into time series log ingestion. The problem is a status value of "up" might appear in the last 7 days, the status field won't reappear unless an event triggers and reports the value of "down". So I want to be able to show a static or updated index that can show the object, status, and the last value of the timestamp (the time the value was updated). Essentially an health overview of object
values.
I did try this with latest, and it did keep the most latest value of status
, its @timestamp was the last value of timestamp. This doesn't work for me because the overview of all objects and status varied depending on time range.
I want it to be static, so I used a pivot. The pivot did a great job at keeping a static index, but now I can't determine when the values were last updated.
I might be overthinking this, any help would be great!