1

是否可以使用 aws cloud watch logs 洞察在匹配正则表达式的消息之前显示 n 条消息。我必须对多个日志事件进行过滤。示例日志消息序列:

<time> INFO Fetching data for apple.
<time> INFO Fetching data for mango.
<time> INFO Fetching data for orange.
<time> ERROR error message. 
<time> INFO Fetching data for banana.
<time> ERROR error message. 
<time> INFO Fetching data for jackfruit.
<time> INFO Fetching data for figs.
4

1 回答 1

2

我不相信这是可能的。

一种选择是包含@logStream在查询的选择部分中,这将允许您单击日志流链接直接转到日志项,然后向上滚动以查看先前的日志。

不适合您的情况,但可能会加快您的调试速度。

于 2020-06-03T14:04:23.057 回答