You can probably get away without join by using append-stats (this will perform better as well. Try something like this:-
index=companyindex | customparser | dedup shost, status |table _time shost status| append [search Event_desc = Heartbeat | stats max(_time) as LastHeartbeat by hostfieldForthisSearch | rename hostfieldForthisSearch as shost | table shost,LastHeartbeat ] | stats values(*) as * by shost | table _time, shost, status, LastHeartbeat
... View more