Hi swangertyler,
Don't use join for reasons.
Use multisearch instead, it will not hit any hidden limits without telling you.
Try something like this:
| multisearch
[ search "base search with sourcetype=A" earliest=-1d@d latest=-0d@d
| rename display_value as parent_num ]
[ search "second search with sourtype=A" earliest=-3d@d latest=-2d@d
| rename priority as parent_priority, number as parent_num, u_incident_type as type ]
| dedup number sortby -sys_updated_on
| table parent_num, parent_priority, type, parent_assignment
| eval type = if(parent!="*", u_incident_type, type)
might need some tweaking to make it fully work, but you get an idea how it works.
hope this helps ...
cheers, MuS
... View more