2020-04-27 16:25:45 +00:00
|
|
|
package ec2
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
|
|
|
// SDConfig represents service discovery config for ec2.
|
|
|
|
//
|
|
|
|
// See https://prometheus.io/docs/prometheus/latest/configuration/configuration/#ec2_sd_config
|
|
|
|
type SDConfig struct {
|
2020-11-13 14:17:03 +00:00
|
|
|
Region string `yaml:"region,omitempty"`
|
|
|
|
Endpoint string `yaml:"endpoint,omitempty"`
|
|
|
|
AccessKey string `yaml:"access_key,omitempty"`
|
|
|
|
SecretKey string `yaml:"secret_key,omitempty"`
|
2020-09-21 13:04:15 +00:00
|
|
|
// TODO add support for Profile, not working atm
|
2020-11-13 14:17:03 +00:00
|
|
|
Profile string `yaml:"profile,omitempty"`
|
|
|
|
RoleARN string `yaml:"role_arn,omitempty"`
|
2020-04-27 16:25:45 +00:00
|
|
|
// RefreshInterval time.Duration `yaml:"refresh_interval"`
|
|
|
|
// refresh_interval is obtained from `-promscrape.ec2SDCheckInterval` command-line option.
|
2020-11-13 14:17:03 +00:00
|
|
|
Port *int `yaml:"port,omitempty"`
|
|
|
|
Filters []Filter `yaml:"filters,omitempty"`
|
2020-04-27 16:25:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Filter is ec2 filter.
|
|
|
|
//
|
|
|
|
// See https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances.html
|
|
|
|
// and https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_Filter.html
|
|
|
|
type Filter struct {
|
|
|
|
Name string `yaml:"name"`
|
|
|
|
Values []string `yaml:"values"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetLabels returns ec2 labels according to sdc.
|
2021-02-26 13:53:42 +00:00
|
|
|
func (sdc *SDConfig) GetLabels(baseDir string) ([]map[string]string, error) {
|
2020-04-27 16:25:45 +00:00
|
|
|
cfg, err := getAPIConfig(sdc)
|
|
|
|
if err != nil {
|
2020-06-30 19:58:18 +00:00
|
|
|
return nil, fmt.Errorf("cannot get API config: %w", err)
|
2020-04-27 16:25:45 +00:00
|
|
|
}
|
|
|
|
ms, err := getInstancesLabels(cfg)
|
|
|
|
if err != nil {
|
2020-06-30 19:58:18 +00:00
|
|
|
return nil, fmt.Errorf("error when fetching instances data from EC2: %w", err)
|
2020-04-27 16:25:45 +00:00
|
|
|
}
|
|
|
|
return ms, nil
|
|
|
|
}
|