Is it possible to query log insights data and filter based on IP addresses that start with specific values. The query below is returning too much data... In addition to returning data that begin with 98, it is also returning data with IP addresses that have 98 in the middle of the string.
fields @timestamp, @message, @logStream, @log
| filter (event.src_ip like /98./)
| sort @timestamp desc
| limit 20