<ec2_sd_config>
EC2 SD配置允许从AWS EC2实例中检索目标。默认情况下用内网IP地址, 但是在relabeling期间可以改变成公网ID地址。
下面meta标签在relabeling期间在目标上是可用的:
__meta_ec2_availability_zone
: 正在运行的实例的可用域。__meta_ec2_instance_id
: EC2的实例ID__meta_ec2_instance_state
: EC2的实例状态__meta_ec2_instance_type
: EC2的实例类型__meta_ec2_private_ip
: 如果存在,表示内网IP的地址__meta_ec2_public_dns_name
: 如果可用,表示实例的公网DNS名称__meta_ec2_public_ip
: 如果可用,表示实例的公网IP地址__meta_ec2_subnet_id
: 如果可用,表示子网IDs的列表。__meta_ec2_tag_<tagkey>
: 这个实例的tag值__meta_ec2_vpc_id
: 如果可用,表示正在运行的实例的VPC的ID
对于EC2 discovery,看看下面的配置选项:
# 访问EC2 API的信息
# AWS域
region: <string>
# AWS API keys. 如果空白,环境变量`AWS_ACCESS_KEY_ID`和`AWS_SECRET_ACCESS_KEY`可以被使用
[ access_key: <string> ]
[ secret_key: <string> ]
# Named AWS profile used to connect to the API.
[ profile: <string> ]
# Refresh interval to re-read the instance list.
[ refresh_interval: <duration> | default = 60s ]
# The port to scrape metrics from. If using the public IP address, this must
# instead be specified in the relabeling rule.
[ port: <int> | default = 80 ]