mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
config: set default region for EC2 SD
This commit is contained in:
parent
287ec6e6cc
commit
a1ddab463e
|
@ -23,6 +23,8 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/aws/aws-sdk-go/aws/ec2metadata"
|
||||||
|
"github.com/aws/aws-sdk-go/aws/session"
|
||||||
"github.com/prometheus/common/model"
|
"github.com/prometheus/common/model"
|
||||||
"gopkg.in/yaml.v2"
|
"gopkg.in/yaml.v2"
|
||||||
)
|
)
|
||||||
|
@ -1126,7 +1128,13 @@ func (c *EC2SDConfig) UnmarshalYAML(unmarshal func(interface{}) error) error {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if c.Region == "" {
|
if c.Region == "" {
|
||||||
return fmt.Errorf("EC2 SD configuration requires a region")
|
sess := session.Must(session.NewSession())
|
||||||
|
metadata := ec2metadata.New(sess)
|
||||||
|
region, err := metadata.Region()
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("EC2 SD configuration requires a region")
|
||||||
|
}
|
||||||
|
c.Region = region
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue