diff --git a/discovery/ec2/ec2.go b/discovery/ec2/ec2.go index 5216ec73555a21bd1468142d296a16d18a8db1fb..d984fd3c66007d2053b3999a2ad5c3279c68d2f2 100644 --- a/discovery/ec2/ec2.go +++ b/discovery/ec2/ec2.go @@ -42,6 +42,7 @@ const ( ec2LabelInstanceID = ec2Label + "instance_id" ec2LabelInstanceState = ec2Label + "instance_state" ec2LabelInstanceType = ec2Label + "instance_type" + ec2LabelOwnerID = ec2Label + "owner_id" ec2LabelPublicDNS = ec2Label + "public_dns_name" ec2LabelPublicIP = ec2Label + "public_ip" ec2LabelPrivateIP = ec2Label + "private_ip" @@ -240,6 +241,7 @@ func (d *Discovery) refresh() (tg *targetgroup.Group, err error) { continue } labels := model.LabelSet{ + ec2LabelOwnerID: model.LabelValue(*r.OwnerId), ec2LabelInstanceID: model.LabelValue(*inst.InstanceId), } labels[ec2LabelPrivateIP] = model.LabelValue(*inst.PrivateIpAddress) diff --git a/docs/configuration/configuration.md b/docs/configuration/configuration.md index 9c97002acee4a0868569cd6af09b99b1cdbe598b..82f894206516d7c8066abf9073d76055ebca06dc 100644 --- a/docs/configuration/configuration.md +++ b/docs/configuration/configuration.md @@ -402,6 +402,7 @@ The following meta labels are available on targets during [relabeling](#relabel_ * `__meta_ec2_instance_id`: the EC2 instance ID * `__meta_ec2_instance_state`: the state of the EC2 instance * `__meta_ec2_instance_type`: the type of the EC2 instance +* `__meta_ec2_owner_id`: the ID of the AWS account that owns the EC2 instance * `__meta_ec2_primary_subnet_id`: the subnet ID of the primary network interface, if available * `__meta_ec2_private_ip`: the private IP address of the instance, if present * `__meta_ec2_public_dns_name`: the public DNS name of the instance, if available