在 AWS Cloudwatch Logs Insights 中处理单引号
Handling single quote in AWS Cloudwatch Logs Insights
这是一些包含单引号的文本:
Cannot read property 'email' of undefined:
当我 运行 使用上面的文本进行下面的查询时
filter @message like /Cannot read property 'email' of undefined/
| stats count()
我无法统计。但是,实际上我的日志中有很多上述文字。
问题是,如何对查询中的单引号进行转义?
您需要转义引号 \'
。
像这样:
/Cannot read property \'email\' of undefined/
这是一些包含单引号的文本:
Cannot read property 'email' of undefined:
当我 运行 使用上面的文本进行下面的查询时
filter @message like /Cannot read property 'email' of undefined/
| stats count()
我无法统计。但是,实际上我的日志中有很多上述文字。
问题是,如何对查询中的单引号进行转义?
您需要转义引号 \'
。
像这样:
/Cannot read property \'email\' of undefined/