2015-09-21 18:49:19 +00:00
|
|
|
// Copyright 2015 The Prometheus Authors
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2016-11-21 14:51:36 +00:00
|
|
|
package ec2
|
2015-09-21 18:49:19 +00:00
|
|
|
|
|
|
|
import (
|
2017-10-25 04:21:42 +00:00
|
|
|
"context"
|
2015-09-21 18:49:19 +00:00
|
|
|
"fmt"
|
2016-09-05 12:40:28 +00:00
|
|
|
"net"
|
2015-10-20 12:36:53 +00:00
|
|
|
"strings"
|
2015-09-21 18:49:19 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
|
|
"github.com/aws/aws-sdk-go/aws/credentials"
|
2017-07-04 06:40:55 +00:00
|
|
|
"github.com/aws/aws-sdk-go/aws/credentials/stscreds"
|
2017-10-25 13:15:39 +00:00
|
|
|
"github.com/aws/aws-sdk-go/aws/ec2metadata"
|
2016-11-03 14:54:27 +00:00
|
|
|
"github.com/aws/aws-sdk-go/aws/session"
|
2019-03-25 23:01:12 +00:00
|
|
|
"github.com/aws/aws-sdk-go/service/ec2"
|
2017-08-11 18:45:52 +00:00
|
|
|
"github.com/go-kit/kit/log"
|
2019-03-25 23:01:12 +00:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
config_util "github.com/prometheus/common/config"
|
2015-09-21 18:49:19 +00:00
|
|
|
"github.com/prometheus/common/model"
|
|
|
|
|
2019-03-25 10:54:22 +00:00
|
|
|
"github.com/prometheus/prometheus/discovery/refresh"
|
Refactor SD configuration to remove `config` dependency (#3629)
* refactor: move targetGroup struct and CheckOverflow() to their own package
* refactor: move auth and security related structs to a utility package, fix import error in utility package
* refactor: Azure SD, remove SD struct from config
* refactor: DNS SD, remove SD struct from config into dns package
* refactor: ec2 SD, move SD struct from config into the ec2 package
* refactor: file SD, move SD struct from config to file discovery package
* refactor: gce, move SD struct from config to gce discovery package
* refactor: move HTTPClientConfig and URL into util/config, fix import error in httputil
* refactor: consul, move SD struct from config into consul discovery package
* refactor: marathon, move SD struct from config into marathon discovery package
* refactor: triton, move SD struct from config to triton discovery package, fix test
* refactor: zookeeper, move SD structs from config to zookeeper discovery package
* refactor: openstack, remove SD struct from config, move into openstack discovery package
* refactor: kubernetes, move SD struct from config into kubernetes discovery package
* refactor: notifier, use targetgroup package instead of config
* refactor: tests for file, marathon, triton SD - use targetgroup package instead of config.TargetGroup
* refactor: retrieval, use targetgroup package instead of config.TargetGroup
* refactor: storage, use config util package
* refactor: discovery manager, use targetgroup package instead of config.TargetGroup
* refactor: use HTTPClient and TLS config from configUtil instead of config
* refactor: tests, use targetgroup package instead of config.TargetGroup
* refactor: fix tagetgroup.Group pointers that were removed by mistake
* refactor: openstack, kubernetes: drop prefixes
* refactor: remove import aliases forced due to vscode bug
* refactor: move main SD struct out of config into discovery/config
* refactor: rename configUtil to config_util
* refactor: rename yamlUtil to yaml_config
* refactor: kubernetes, remove prefixes
* refactor: move the TargetGroup package to discovery/
* refactor: fix order of imports
2017-12-29 20:01:34 +00:00
|
|
|
"github.com/prometheus/prometheus/discovery/targetgroup"
|
2015-09-21 18:49:19 +00:00
|
|
|
"github.com/prometheus/prometheus/util/strutil"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2020-03-03 08:03:16 +00:00
|
|
|
ec2Label = model.MetaLabelPrefix + "ec2_"
|
2020-06-11 17:25:58 +00:00
|
|
|
ec2LabelAMI = ec2Label + "ami"
|
2020-03-03 08:03:16 +00:00
|
|
|
ec2LabelAZ = ec2Label + "availability_zone"
|
2020-03-28 20:41:37 +00:00
|
|
|
ec2LabelArch = ec2Label + "architecture"
|
2020-03-03 08:03:16 +00:00
|
|
|
ec2LabelInstanceID = ec2Label + "instance_id"
|
|
|
|
ec2LabelInstanceState = ec2Label + "instance_state"
|
|
|
|
ec2LabelInstanceType = ec2Label + "instance_type"
|
|
|
|
ec2LabelInstanceLifecycle = ec2Label + "instance_lifecycle"
|
|
|
|
ec2LabelOwnerID = ec2Label + "owner_id"
|
|
|
|
ec2LabelPlatform = ec2Label + "platform"
|
|
|
|
ec2LabelPublicDNS = ec2Label + "public_dns_name"
|
|
|
|
ec2LabelPublicIP = ec2Label + "public_ip"
|
|
|
|
ec2LabelPrivateDNS = ec2Label + "private_dns_name"
|
|
|
|
ec2LabelPrivateIP = ec2Label + "private_ip"
|
|
|
|
ec2LabelPrimarySubnetID = ec2Label + "primary_subnet_id"
|
|
|
|
ec2LabelSubnetID = ec2Label + "subnet_id"
|
|
|
|
ec2LabelTag = ec2Label + "tag_"
|
|
|
|
ec2LabelVPCID = ec2Label + "vpc_id"
|
|
|
|
subnetSeparator = ","
|
2015-09-21 18:49:19 +00:00
|
|
|
)
|
|
|
|
|
2019-03-25 10:54:22 +00:00
|
|
|
// DefaultSDConfig is the default EC2 SD configuration.
|
|
|
|
var DefaultSDConfig = SDConfig{
|
|
|
|
Port: 80,
|
|
|
|
RefreshInterval: model.Duration(60 * time.Second),
|
|
|
|
}
|
2016-10-19 09:20:00 +00:00
|
|
|
|
2018-03-31 06:51:11 +00:00
|
|
|
// Filter is the configuration for filtering EC2 instances.
|
|
|
|
type Filter struct {
|
|
|
|
Name string `yaml:"name"`
|
|
|
|
Values []string `yaml:"values"`
|
|
|
|
}
|
|
|
|
|
Refactor SD configuration to remove `config` dependency (#3629)
* refactor: move targetGroup struct and CheckOverflow() to their own package
* refactor: move auth and security related structs to a utility package, fix import error in utility package
* refactor: Azure SD, remove SD struct from config
* refactor: DNS SD, remove SD struct from config into dns package
* refactor: ec2 SD, move SD struct from config into the ec2 package
* refactor: file SD, move SD struct from config to file discovery package
* refactor: gce, move SD struct from config to gce discovery package
* refactor: move HTTPClientConfig and URL into util/config, fix import error in httputil
* refactor: consul, move SD struct from config into consul discovery package
* refactor: marathon, move SD struct from config into marathon discovery package
* refactor: triton, move SD struct from config to triton discovery package, fix test
* refactor: zookeeper, move SD structs from config to zookeeper discovery package
* refactor: openstack, remove SD struct from config, move into openstack discovery package
* refactor: kubernetes, move SD struct from config into kubernetes discovery package
* refactor: notifier, use targetgroup package instead of config
* refactor: tests for file, marathon, triton SD - use targetgroup package instead of config.TargetGroup
* refactor: retrieval, use targetgroup package instead of config.TargetGroup
* refactor: storage, use config util package
* refactor: discovery manager, use targetgroup package instead of config.TargetGroup
* refactor: use HTTPClient and TLS config from configUtil instead of config
* refactor: tests, use targetgroup package instead of config.TargetGroup
* refactor: fix tagetgroup.Group pointers that were removed by mistake
* refactor: openstack, kubernetes: drop prefixes
* refactor: remove import aliases forced due to vscode bug
* refactor: move main SD struct out of config into discovery/config
* refactor: rename configUtil to config_util
* refactor: rename yamlUtil to yaml_config
* refactor: kubernetes, remove prefixes
* refactor: move the TargetGroup package to discovery/
* refactor: fix order of imports
2017-12-29 20:01:34 +00:00
|
|
|
// SDConfig is the configuration for EC2 based service discovery.
|
|
|
|
type SDConfig struct {
|
2018-07-18 09:48:14 +00:00
|
|
|
Endpoint string `yaml:"endpoint"`
|
Refactor SD configuration to remove `config` dependency (#3629)
* refactor: move targetGroup struct and CheckOverflow() to their own package
* refactor: move auth and security related structs to a utility package, fix import error in utility package
* refactor: Azure SD, remove SD struct from config
* refactor: DNS SD, remove SD struct from config into dns package
* refactor: ec2 SD, move SD struct from config into the ec2 package
* refactor: file SD, move SD struct from config to file discovery package
* refactor: gce, move SD struct from config to gce discovery package
* refactor: move HTTPClientConfig and URL into util/config, fix import error in httputil
* refactor: consul, move SD struct from config into consul discovery package
* refactor: marathon, move SD struct from config into marathon discovery package
* refactor: triton, move SD struct from config to triton discovery package, fix test
* refactor: zookeeper, move SD structs from config to zookeeper discovery package
* refactor: openstack, remove SD struct from config, move into openstack discovery package
* refactor: kubernetes, move SD struct from config into kubernetes discovery package
* refactor: notifier, use targetgroup package instead of config
* refactor: tests for file, marathon, triton SD - use targetgroup package instead of config.TargetGroup
* refactor: retrieval, use targetgroup package instead of config.TargetGroup
* refactor: storage, use config util package
* refactor: discovery manager, use targetgroup package instead of config.TargetGroup
* refactor: use HTTPClient and TLS config from configUtil instead of config
* refactor: tests, use targetgroup package instead of config.TargetGroup
* refactor: fix tagetgroup.Group pointers that were removed by mistake
* refactor: openstack, kubernetes: drop prefixes
* refactor: remove import aliases forced due to vscode bug
* refactor: move main SD struct out of config into discovery/config
* refactor: rename configUtil to config_util
* refactor: rename yamlUtil to yaml_config
* refactor: kubernetes, remove prefixes
* refactor: move the TargetGroup package to discovery/
* refactor: fix order of imports
2017-12-29 20:01:34 +00:00
|
|
|
Region string `yaml:"region"`
|
|
|
|
AccessKey string `yaml:"access_key,omitempty"`
|
|
|
|
SecretKey config_util.Secret `yaml:"secret_key,omitempty"`
|
|
|
|
Profile string `yaml:"profile,omitempty"`
|
|
|
|
RoleARN string `yaml:"role_arn,omitempty"`
|
|
|
|
RefreshInterval model.Duration `yaml:"refresh_interval,omitempty"`
|
|
|
|
Port int `yaml:"port"`
|
2018-03-31 06:51:11 +00:00
|
|
|
Filters []*Filter `yaml:"filters"`
|
Refactor SD configuration to remove `config` dependency (#3629)
* refactor: move targetGroup struct and CheckOverflow() to their own package
* refactor: move auth and security related structs to a utility package, fix import error in utility package
* refactor: Azure SD, remove SD struct from config
* refactor: DNS SD, remove SD struct from config into dns package
* refactor: ec2 SD, move SD struct from config into the ec2 package
* refactor: file SD, move SD struct from config to file discovery package
* refactor: gce, move SD struct from config to gce discovery package
* refactor: move HTTPClientConfig and URL into util/config, fix import error in httputil
* refactor: consul, move SD struct from config into consul discovery package
* refactor: marathon, move SD struct from config into marathon discovery package
* refactor: triton, move SD struct from config to triton discovery package, fix test
* refactor: zookeeper, move SD structs from config to zookeeper discovery package
* refactor: openstack, remove SD struct from config, move into openstack discovery package
* refactor: kubernetes, move SD struct from config into kubernetes discovery package
* refactor: notifier, use targetgroup package instead of config
* refactor: tests for file, marathon, triton SD - use targetgroup package instead of config.TargetGroup
* refactor: retrieval, use targetgroup package instead of config.TargetGroup
* refactor: storage, use config util package
* refactor: discovery manager, use targetgroup package instead of config.TargetGroup
* refactor: use HTTPClient and TLS config from configUtil instead of config
* refactor: tests, use targetgroup package instead of config.TargetGroup
* refactor: fix tagetgroup.Group pointers that were removed by mistake
* refactor: openstack, kubernetes: drop prefixes
* refactor: remove import aliases forced due to vscode bug
* refactor: move main SD struct out of config into discovery/config
* refactor: rename configUtil to config_util
* refactor: rename yamlUtil to yaml_config
* refactor: kubernetes, remove prefixes
* refactor: move the TargetGroup package to discovery/
* refactor: fix order of imports
2017-12-29 20:01:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// UnmarshalYAML implements the yaml.Unmarshaler interface.
|
|
|
|
func (c *SDConfig) UnmarshalYAML(unmarshal func(interface{}) error) error {
|
|
|
|
*c = DefaultSDConfig
|
|
|
|
type plain SDConfig
|
|
|
|
err := unmarshal((*plain)(c))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if c.Region == "" {
|
|
|
|
sess, err := session.NewSession()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
metadata := ec2metadata.New(sess)
|
|
|
|
region, err := metadata.Region()
|
|
|
|
if err != nil {
|
2019-03-25 23:01:12 +00:00
|
|
|
return errors.New("EC2 SD configuration requires a region")
|
Refactor SD configuration to remove `config` dependency (#3629)
* refactor: move targetGroup struct and CheckOverflow() to their own package
* refactor: move auth and security related structs to a utility package, fix import error in utility package
* refactor: Azure SD, remove SD struct from config
* refactor: DNS SD, remove SD struct from config into dns package
* refactor: ec2 SD, move SD struct from config into the ec2 package
* refactor: file SD, move SD struct from config to file discovery package
* refactor: gce, move SD struct from config to gce discovery package
* refactor: move HTTPClientConfig and URL into util/config, fix import error in httputil
* refactor: consul, move SD struct from config into consul discovery package
* refactor: marathon, move SD struct from config into marathon discovery package
* refactor: triton, move SD struct from config to triton discovery package, fix test
* refactor: zookeeper, move SD structs from config to zookeeper discovery package
* refactor: openstack, remove SD struct from config, move into openstack discovery package
* refactor: kubernetes, move SD struct from config into kubernetes discovery package
* refactor: notifier, use targetgroup package instead of config
* refactor: tests for file, marathon, triton SD - use targetgroup package instead of config.TargetGroup
* refactor: retrieval, use targetgroup package instead of config.TargetGroup
* refactor: storage, use config util package
* refactor: discovery manager, use targetgroup package instead of config.TargetGroup
* refactor: use HTTPClient and TLS config from configUtil instead of config
* refactor: tests, use targetgroup package instead of config.TargetGroup
* refactor: fix tagetgroup.Group pointers that were removed by mistake
* refactor: openstack, kubernetes: drop prefixes
* refactor: remove import aliases forced due to vscode bug
* refactor: move main SD struct out of config into discovery/config
* refactor: rename configUtil to config_util
* refactor: rename yamlUtil to yaml_config
* refactor: kubernetes, remove prefixes
* refactor: move the TargetGroup package to discovery/
* refactor: fix order of imports
2017-12-29 20:01:34 +00:00
|
|
|
}
|
|
|
|
c.Region = region
|
|
|
|
}
|
2018-03-31 06:51:11 +00:00
|
|
|
for _, f := range c.Filters {
|
|
|
|
if len(f.Values) == 0 {
|
2019-03-25 23:01:12 +00:00
|
|
|
return errors.New("EC2 SD configuration filter values cannot be empty")
|
2018-03-31 06:51:11 +00:00
|
|
|
}
|
|
|
|
}
|
Refactor SD configuration to remove `config` dependency (#3629)
* refactor: move targetGroup struct and CheckOverflow() to their own package
* refactor: move auth and security related structs to a utility package, fix import error in utility package
* refactor: Azure SD, remove SD struct from config
* refactor: DNS SD, remove SD struct from config into dns package
* refactor: ec2 SD, move SD struct from config into the ec2 package
* refactor: file SD, move SD struct from config to file discovery package
* refactor: gce, move SD struct from config to gce discovery package
* refactor: move HTTPClientConfig and URL into util/config, fix import error in httputil
* refactor: consul, move SD struct from config into consul discovery package
* refactor: marathon, move SD struct from config into marathon discovery package
* refactor: triton, move SD struct from config to triton discovery package, fix test
* refactor: zookeeper, move SD structs from config to zookeeper discovery package
* refactor: openstack, remove SD struct from config, move into openstack discovery package
* refactor: kubernetes, move SD struct from config into kubernetes discovery package
* refactor: notifier, use targetgroup package instead of config
* refactor: tests for file, marathon, triton SD - use targetgroup package instead of config.TargetGroup
* refactor: retrieval, use targetgroup package instead of config.TargetGroup
* refactor: storage, use config util package
* refactor: discovery manager, use targetgroup package instead of config.TargetGroup
* refactor: use HTTPClient and TLS config from configUtil instead of config
* refactor: tests, use targetgroup package instead of config.TargetGroup
* refactor: fix tagetgroup.Group pointers that were removed by mistake
* refactor: openstack, kubernetes: drop prefixes
* refactor: remove import aliases forced due to vscode bug
* refactor: move main SD struct out of config into discovery/config
* refactor: rename configUtil to config_util
* refactor: rename yamlUtil to yaml_config
* refactor: kubernetes, remove prefixes
* refactor: move the TargetGroup package to discovery/
* refactor: fix order of imports
2017-12-29 20:01:34 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-03-16 23:29:47 +00:00
|
|
|
// Discovery periodically performs EC2-SD requests. It implements
|
2018-01-08 23:59:18 +00:00
|
|
|
// the Discoverer interface.
|
2017-03-16 23:29:47 +00:00
|
|
|
type Discovery struct {
|
2019-03-25 10:54:22 +00:00
|
|
|
*refresh.Discovery
|
2015-09-21 18:49:19 +00:00
|
|
|
aws *aws.Config
|
|
|
|
interval time.Duration
|
2016-11-03 14:54:27 +00:00
|
|
|
profile string
|
2017-07-04 06:40:55 +00:00
|
|
|
roleARN string
|
2015-09-21 18:49:19 +00:00
|
|
|
port int
|
2018-03-31 06:51:11 +00:00
|
|
|
filters []*Filter
|
2015-09-21 18:49:19 +00:00
|
|
|
}
|
|
|
|
|
2016-11-21 14:51:36 +00:00
|
|
|
// NewDiscovery returns a new EC2Discovery which periodically refreshes its targets.
|
Refactor SD configuration to remove `config` dependency (#3629)
* refactor: move targetGroup struct and CheckOverflow() to their own package
* refactor: move auth and security related structs to a utility package, fix import error in utility package
* refactor: Azure SD, remove SD struct from config
* refactor: DNS SD, remove SD struct from config into dns package
* refactor: ec2 SD, move SD struct from config into the ec2 package
* refactor: file SD, move SD struct from config to file discovery package
* refactor: gce, move SD struct from config to gce discovery package
* refactor: move HTTPClientConfig and URL into util/config, fix import error in httputil
* refactor: consul, move SD struct from config into consul discovery package
* refactor: marathon, move SD struct from config into marathon discovery package
* refactor: triton, move SD struct from config to triton discovery package, fix test
* refactor: zookeeper, move SD structs from config to zookeeper discovery package
* refactor: openstack, remove SD struct from config, move into openstack discovery package
* refactor: kubernetes, move SD struct from config into kubernetes discovery package
* refactor: notifier, use targetgroup package instead of config
* refactor: tests for file, marathon, triton SD - use targetgroup package instead of config.TargetGroup
* refactor: retrieval, use targetgroup package instead of config.TargetGroup
* refactor: storage, use config util package
* refactor: discovery manager, use targetgroup package instead of config.TargetGroup
* refactor: use HTTPClient and TLS config from configUtil instead of config
* refactor: tests, use targetgroup package instead of config.TargetGroup
* refactor: fix tagetgroup.Group pointers that were removed by mistake
* refactor: openstack, kubernetes: drop prefixes
* refactor: remove import aliases forced due to vscode bug
* refactor: move main SD struct out of config into discovery/config
* refactor: rename configUtil to config_util
* refactor: rename yamlUtil to yaml_config
* refactor: kubernetes, remove prefixes
* refactor: move the TargetGroup package to discovery/
* refactor: fix order of imports
2017-12-29 20:01:34 +00:00
|
|
|
func NewDiscovery(conf *SDConfig, logger log.Logger) *Discovery {
|
2017-05-29 11:46:23 +00:00
|
|
|
creds := credentials.NewStaticCredentials(conf.AccessKey, string(conf.SecretKey), "")
|
2015-09-21 18:49:19 +00:00
|
|
|
if conf.AccessKey == "" && conf.SecretKey == "" {
|
2016-11-03 14:54:27 +00:00
|
|
|
creds = nil
|
2015-09-21 18:49:19 +00:00
|
|
|
}
|
2017-08-11 18:45:52 +00:00
|
|
|
if logger == nil {
|
|
|
|
logger = log.NewNopLogger()
|
|
|
|
}
|
2019-03-25 10:54:22 +00:00
|
|
|
d := &Discovery{
|
2015-09-21 18:49:19 +00:00
|
|
|
aws: &aws.Config{
|
2018-07-18 09:48:14 +00:00
|
|
|
Endpoint: &conf.Endpoint,
|
2015-09-21 18:49:19 +00:00
|
|
|
Region: &conf.Region,
|
|
|
|
Credentials: creds,
|
|
|
|
},
|
2016-11-03 14:54:27 +00:00
|
|
|
profile: conf.Profile,
|
2017-07-04 06:40:55 +00:00
|
|
|
roleARN: conf.RoleARN,
|
2018-03-31 06:51:11 +00:00
|
|
|
filters: conf.Filters,
|
2015-09-21 18:49:19 +00:00
|
|
|
interval: time.Duration(conf.RefreshInterval),
|
|
|
|
port: conf.Port,
|
|
|
|
}
|
2019-03-25 10:54:22 +00:00
|
|
|
d.Discovery = refresh.NewDiscovery(
|
|
|
|
logger,
|
|
|
|
"ec2",
|
|
|
|
time.Duration(conf.RefreshInterval),
|
|
|
|
d.refresh,
|
|
|
|
)
|
|
|
|
return d
|
2015-09-21 18:49:19 +00:00
|
|
|
}
|
|
|
|
|
2019-03-25 10:54:22 +00:00
|
|
|
func (d *Discovery) refresh(ctx context.Context) ([]*targetgroup.Group, error) {
|
2016-11-03 14:54:27 +00:00
|
|
|
sess, err := session.NewSessionWithOptions(session.Options{
|
2017-03-16 23:29:47 +00:00
|
|
|
Config: *d.aws,
|
|
|
|
Profile: d.profile,
|
2016-11-03 14:54:27 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
2019-03-25 23:01:12 +00:00
|
|
|
return nil, errors.Wrap(err, "could not create aws session")
|
2016-11-03 14:54:27 +00:00
|
|
|
}
|
|
|
|
|
2017-07-04 06:40:55 +00:00
|
|
|
var ec2s *ec2.EC2
|
|
|
|
if d.roleARN != "" {
|
|
|
|
creds := stscreds.NewCredentials(sess, d.roleARN)
|
|
|
|
ec2s = ec2.New(sess, &aws.Config{Credentials: creds})
|
|
|
|
} else {
|
2018-03-20 12:34:54 +00:00
|
|
|
ec2s = ec2.New(sess)
|
2017-07-04 06:40:55 +00:00
|
|
|
}
|
2019-03-25 10:54:22 +00:00
|
|
|
tg := &targetgroup.Group{
|
2017-03-16 23:29:47 +00:00
|
|
|
Source: *d.aws.Region,
|
2015-09-21 18:49:19 +00:00
|
|
|
}
|
2018-03-31 06:51:11 +00:00
|
|
|
|
|
|
|
var filters []*ec2.Filter
|
|
|
|
for _, f := range d.filters {
|
|
|
|
filters = append(filters, &ec2.Filter{
|
|
|
|
Name: aws.String(f.Name),
|
|
|
|
Values: aws.StringSlice(f.Values),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
input := &ec2.DescribeInstancesInput{Filters: filters}
|
|
|
|
|
2019-02-26 13:48:03 +00:00
|
|
|
if err = ec2s.DescribeInstancesPagesWithContext(ctx, input, func(p *ec2.DescribeInstancesOutput, lastPage bool) bool {
|
2015-09-21 18:49:19 +00:00
|
|
|
for _, r := range p.Reservations {
|
|
|
|
for _, inst := range r.Instances {
|
|
|
|
if inst.PrivateIpAddress == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
labels := model.LabelSet{
|
|
|
|
ec2LabelInstanceID: model.LabelValue(*inst.InstanceId),
|
|
|
|
}
|
2018-10-02 10:48:31 +00:00
|
|
|
|
|
|
|
if r.OwnerId != nil {
|
|
|
|
labels[ec2LabelOwnerID] = model.LabelValue(*r.OwnerId)
|
|
|
|
}
|
|
|
|
|
2015-09-21 18:49:19 +00:00
|
|
|
labels[ec2LabelPrivateIP] = model.LabelValue(*inst.PrivateIpAddress)
|
2018-11-30 11:11:06 +00:00
|
|
|
if inst.PrivateDnsName != nil {
|
|
|
|
labels[ec2LabelPrivateDNS] = model.LabelValue(*inst.PrivateDnsName)
|
|
|
|
}
|
2017-03-16 23:29:47 +00:00
|
|
|
addr := net.JoinHostPort(*inst.PrivateIpAddress, fmt.Sprintf("%d", d.port))
|
2015-09-21 18:49:19 +00:00
|
|
|
labels[model.AddressLabel] = model.LabelValue(addr)
|
2015-10-20 12:36:53 +00:00
|
|
|
|
2018-11-06 14:39:48 +00:00
|
|
|
if inst.Platform != nil {
|
|
|
|
labels[ec2LabelPlatform] = model.LabelValue(*inst.Platform)
|
|
|
|
}
|
|
|
|
|
2015-10-20 12:36:53 +00:00
|
|
|
if inst.PublicIpAddress != nil {
|
|
|
|
labels[ec2LabelPublicIP] = model.LabelValue(*inst.PublicIpAddress)
|
|
|
|
labels[ec2LabelPublicDNS] = model.LabelValue(*inst.PublicDnsName)
|
|
|
|
}
|
|
|
|
|
2020-06-11 17:25:58 +00:00
|
|
|
labels[ec2LabelAMI] = model.LabelValue(*inst.ImageId)
|
2015-10-20 12:36:53 +00:00
|
|
|
labels[ec2LabelAZ] = model.LabelValue(*inst.Placement.AvailabilityZone)
|
2016-09-22 13:01:23 +00:00
|
|
|
labels[ec2LabelInstanceState] = model.LabelValue(*inst.State.Name)
|
2016-10-21 10:13:47 +00:00
|
|
|
labels[ec2LabelInstanceType] = model.LabelValue(*inst.InstanceType)
|
2015-10-20 12:36:53 +00:00
|
|
|
|
2020-03-03 08:03:16 +00:00
|
|
|
if inst.InstanceLifecycle != nil {
|
|
|
|
labels[ec2LabelInstanceLifecycle] = model.LabelValue(*inst.InstanceLifecycle)
|
|
|
|
}
|
|
|
|
|
2020-03-28 20:41:37 +00:00
|
|
|
if inst.Architecture != nil {
|
|
|
|
labels[ec2LabelArch] = model.LabelValue(*inst.Architecture)
|
|
|
|
}
|
|
|
|
|
2015-10-20 12:36:53 +00:00
|
|
|
if inst.VpcId != nil {
|
|
|
|
labels[ec2LabelVPCID] = model.LabelValue(*inst.VpcId)
|
2018-07-25 07:38:14 +00:00
|
|
|
labels[ec2LabelPrimarySubnetID] = model.LabelValue(*inst.SubnetId)
|
2015-10-20 12:36:53 +00:00
|
|
|
|
2018-07-25 07:36:46 +00:00
|
|
|
// Deduplicate VPC Subnet IDs maintaining the order of the network interfaces returned by EC2.
|
|
|
|
var subnets []string
|
2015-10-20 12:36:53 +00:00
|
|
|
subnetsMap := make(map[string]struct{})
|
|
|
|
for _, eni := range inst.NetworkInterfaces {
|
2018-08-07 07:35:22 +00:00
|
|
|
if eni.SubnetId == nil {
|
|
|
|
continue
|
|
|
|
}
|
2018-07-25 07:36:46 +00:00
|
|
|
if _, ok := subnetsMap[*eni.SubnetId]; !ok {
|
|
|
|
subnetsMap[*eni.SubnetId] = struct{}{}
|
|
|
|
subnets = append(subnets, *eni.SubnetId)
|
|
|
|
}
|
2015-10-20 12:36:53 +00:00
|
|
|
}
|
|
|
|
labels[ec2LabelSubnetID] = model.LabelValue(
|
|
|
|
subnetSeparator +
|
|
|
|
strings.Join(subnets, subnetSeparator) +
|
|
|
|
subnetSeparator)
|
|
|
|
}
|
|
|
|
|
2015-09-21 18:49:19 +00:00
|
|
|
for _, t := range inst.Tags {
|
2017-11-03 11:59:04 +00:00
|
|
|
if t == nil || t.Key == nil || t.Value == nil {
|
|
|
|
continue
|
|
|
|
}
|
2015-09-21 18:49:19 +00:00
|
|
|
name := strutil.SanitizeLabelName(*t.Key)
|
|
|
|
labels[ec2LabelTag+model.LabelName(name)] = model.LabelValue(*t.Value)
|
|
|
|
}
|
|
|
|
tg.Targets = append(tg.Targets, labels)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}); err != nil {
|
2019-03-25 23:01:12 +00:00
|
|
|
return nil, errors.Wrap(err, "could not describe instances")
|
2015-09-21 18:49:19 +00:00
|
|
|
}
|
2019-03-25 10:54:22 +00:00
|
|
|
return []*targetgroup.Group{tg}, nil
|
2015-09-21 18:49:19 +00:00
|
|
|
}
|