Why does the merged query look nothing like the two original queries? I expected something more like this: (index="main" OR index="c3d_infra") sourcetype="aws:description" aws_account_id="*" region="*" source="*:ec2_instances"
| search private_ip_address="172.19.122.6"
| append [ search index=c3d_security host=ip-172-23* rule=corp_deny_all_to_untrust NOT dest_port=3031
| table src_ip dest_ip transport dest_port application ]
| stats values(*) as * by <<some field(s) common to both searches>>
... View more