I have an alerts index which has a data.rule.name field containing the following values: COVID-19 linked Cyber Attacks (Social Media) 2 40% Global Trends, Trending Targets 1 20% Locations by Risk Level 1 20% Target Trends, Trending Targets in Watch List 1 20% I would like to filter events to only include ones where data.rule.name begins with "Target Trends..." My SPL is as follows: index=alerts | where like(data.rule.name, "Target Trends.%") This produces 0 events. Am I using this function wrong?
... View more