@ramdaspr
Is it possible to make a partial match as ooposed to exact match. The search can be within the same event.
For Example:
0.10.12.10, -, -, -, 3/13/2015, 0:23:55, -, myproxy, -, www.facebook.com, 31.13.77.6, 443, 0, 3948, 2672, SSL-tunnel, -, -, www.facebook.com:443, -, Inet, 0, -, Allow, Req ID: 0eaf3338; Compression: client=No server=No compress rate=0% decompress rate=0%, Internal, Internal, 0x80, Allowed, -, -
I have extracted following:
1. www.facebook.com as URL1
2. www.facebook.com:443 as URL2
| eval matches=if(URL1==URL2, "match", "no match") == Gives me no match.
... View more