使用boto3查询AWS Cloudwatch日志组订阅

时间:2020-02-12 12:50:37

标签: amazon-web-services boto3 amazon-cloudwatch amazon-cloudwatchlogs

在AWS CloudWatch中,可以添加enter image description here,以便该组中的日志可以流到Kinesis,Firehose等。可以在控制台中查看这些订阅:

enter image description here

如何使用boto3查询“订阅”值?

我尝试了以下

import boto3
client = boto3.client('logs', region_name='us-east-1')
client.describe_log_groups()

但这仅返回以下属性(注意:已删除特定值):

{'logGroups': [{'logGroupName': '<myGroupNameValue>',   
   'creationTime': <myCreationTimeValue>,    'metricFilterCount': 0,
   'arn': '<myArnValue>', 
   'storedBytes': <myStoredBytesValue>},
   ...]}

返回的json不包含“预订”键/值对。

预先感谢您的考虑和回复

1 个答案:

答案 0 :(得分:1)