CloudWatch Insights过滤仅包含查询字符串的主页请求

时间:2020-03-06 15:58:55

标签: amazon-web-services amazon-cloudwatch aws-cloudwatch-log-insights

我们在日志中有一个用于“ url”的字段,我希望能够过滤到仅访问首页的请求。这将是对//?*的请求,即带有任何查询字符串的请求。

仅获得首页请求是| filter url = "/",但是如何包括那些具有查询字符串的请求?

1 个答案:

答案 0 :(得分:1)

您可以使用正则表达式:https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CWL_QuerySyntax.html

类似的事情应该起作用:

filter url = "/" or url like /^\/\?.*/