Aws CloudWatch 在 python 中获取日志组和日志流数据
Aws CloudWatch Get Log Group and Log Stream data in python
大家好,我基本上是在使用 python 找出一种方法来获取每个日志组的最新日志流和该日志流的日期。之后我希望能够显示日志组以及未写入的天数。
谢谢
您可以使用 describe_log_groups and once you have them you can get the most recently modified log stream with describe_log_streams 获取所有日志组(您需要 orderBy=LastEventTime
、descending=True
、limit=1
)。
大家好,我基本上是在使用 python 找出一种方法来获取每个日志组的最新日志流和该日志流的日期。之后我希望能够显示日志组以及未写入的天数。
谢谢
您可以使用 describe_log_groups and once you have them you can get the most recently modified log stream with describe_log_streams 获取所有日志组(您需要 orderBy=LastEventTime
、descending=True
、limit=1
)。