aliyun sls日志服务告警精准匹配

在阿里云sls上日志查询,精准匹配而不分词做法?

# 短语匹配(非分词)
#"abc def"
#"] ERROR"

# 精准告警
* | select * from log where content like '%] ERROR%'
"ERROR" | select * from log where content like '%] ERROR%'

# 不支持 #"| ERROR" |select ...
"ERROR" | select __source__ as ip,content from log where content like '%] ERROR%'