2020-04-24 14:50:21 +00:00
|
|
|
package gce
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/promscrape/discoveryutils"
|
|
|
|
)
|
|
|
|
|
|
|
|
// getInstancesLabels returns labels for gce instances obtained from the given cfg
|
|
|
|
func getInstancesLabels(cfg *apiConfig) ([]map[string]string, error) {
|
|
|
|
insts, err := getInstances(cfg)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var ms []map[string]string
|
|
|
|
for _, inst := range insts {
|
|
|
|
ms = inst.appendTargetLabels(ms, cfg.project, cfg.tagSeparator, cfg.port)
|
|
|
|
}
|
|
|
|
return ms, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getInstances(cfg *apiConfig) ([]Instance, error) {
|
2020-04-26 11:33:36 +00:00
|
|
|
var insts []Instance
|
|
|
|
for _, zone := range cfg.zones {
|
|
|
|
zoneInsts, err := getInstancesForProjectAndZone(cfg.client, cfg.project, zone, cfg.filter)
|
2020-04-24 14:50:21 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-04-26 11:33:36 +00:00
|
|
|
insts = append(insts, zoneInsts...)
|
2020-04-24 14:50:21 +00:00
|
|
|
}
|
2020-04-26 11:33:36 +00:00
|
|
|
return insts, nil
|
2020-04-24 14:50:21 +00:00
|
|
|
}
|
|
|
|
|
2020-04-26 11:33:36 +00:00
|
|
|
func getInstancesForProjectAndZone(client *http.Client, project, zone, filter string) ([]Instance, error) {
|
|
|
|
// See https://cloud.google.com/compute/docs/reference/rest/v1/instances/list
|
|
|
|
instsURL := fmt.Sprintf("https://compute.googleapis.com/compute/v1/projects/%s/zones/%s/instances", project, zone)
|
|
|
|
var insts []Instance
|
|
|
|
pageToken := ""
|
|
|
|
for {
|
|
|
|
data, err := getAPIResponse(client, instsURL, filter, pageToken)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("cannot obtain instances: %s", err)
|
2020-04-24 14:50:21 +00:00
|
|
|
}
|
2020-04-26 11:33:36 +00:00
|
|
|
il, err := parseInstanceList(data)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("cannot parse instance list from %q: %s", instsURL, err)
|
|
|
|
}
|
|
|
|
insts = append(insts, il.Items...)
|
|
|
|
if len(il.NextPageToken) == 0 {
|
|
|
|
return insts, nil
|
|
|
|
}
|
|
|
|
pageToken = il.NextPageToken
|
2020-04-24 14:50:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// InstanceList is response to https://cloud.google.com/compute/docs/reference/rest/v1/instances/list
|
|
|
|
type InstanceList struct {
|
|
|
|
Items []Instance
|
|
|
|
NextPageToken string
|
|
|
|
}
|
|
|
|
|
|
|
|
// Instance is instance from https://cloud.google.com/compute/docs/reference/rest/v1/instances/list
|
|
|
|
type Instance struct {
|
|
|
|
ID string `json:"id"`
|
|
|
|
Name string
|
|
|
|
Status string
|
|
|
|
MachineType string
|
|
|
|
Zone string
|
|
|
|
NetworkInterfaces []NetworkInterface
|
|
|
|
Tags TagList
|
|
|
|
Metadata MetadataList
|
|
|
|
Labels discoveryutils.SortedLabels
|
|
|
|
}
|
|
|
|
|
|
|
|
// NetworkInterface is network interface from https://cloud.google.com/compute/docs/reference/rest/v1/instances/list
|
|
|
|
type NetworkInterface struct {
|
|
|
|
Network string
|
|
|
|
Subnetwork string
|
|
|
|
NetworkIP string
|
|
|
|
AccessConfigs []AccessConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
// AccessConfig is access config from https://cloud.google.com/compute/docs/reference/rest/v1/instances/list
|
|
|
|
type AccessConfig struct {
|
|
|
|
Type string
|
|
|
|
NatIP string
|
|
|
|
}
|
|
|
|
|
|
|
|
// TagList is tag list from https://cloud.google.com/compute/docs/reference/rest/v1/instances/list
|
|
|
|
type TagList struct {
|
|
|
|
Items []string
|
|
|
|
}
|
|
|
|
|
|
|
|
// MetadataList is metadataList from https://cloud.google.com/compute/docs/reference/rest/v1/instances/list
|
|
|
|
type MetadataList struct {
|
|
|
|
Items []MetadataEntry
|
|
|
|
}
|
|
|
|
|
|
|
|
// MetadataEntry is a single entry from metadata
|
|
|
|
type MetadataEntry struct {
|
|
|
|
Key string
|
|
|
|
Value string
|
|
|
|
}
|
|
|
|
|
|
|
|
// parseInstanceList parses InstanceList from data.
|
|
|
|
func parseInstanceList(data []byte) (*InstanceList, error) {
|
|
|
|
var il InstanceList
|
|
|
|
if err := json.Unmarshal(data, &il); err != nil {
|
|
|
|
return nil, fmt.Errorf("cannot unmarshal InstanceList from %q: %s", data, err)
|
|
|
|
}
|
|
|
|
return &il, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (inst *Instance) appendTargetLabels(ms []map[string]string, project, tagSeparator string, port int) []map[string]string {
|
|
|
|
if len(inst.NetworkInterfaces) == 0 {
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
iface := inst.NetworkInterfaces[0]
|
|
|
|
addr := discoveryutils.JoinHostPort(iface.NetworkIP, port)
|
|
|
|
m := map[string]string{
|
|
|
|
"__address__": addr,
|
|
|
|
"__meta_gce_instance_id": inst.ID,
|
|
|
|
"__meta_gce_instance_status": inst.Status,
|
|
|
|
"__meta_gce_instance_name": inst.Name,
|
|
|
|
"__meta_gce_machine_type": inst.MachineType,
|
|
|
|
"__meta_gce_network": iface.Network,
|
|
|
|
"__meta_gce_private_ip": iface.NetworkIP,
|
|
|
|
"__meta_gce_project": project,
|
|
|
|
"__meta_gce_subnetwork": iface.Subnetwork,
|
|
|
|
"__meta_gce_zone": inst.Zone,
|
|
|
|
}
|
|
|
|
if len(inst.Tags.Items) > 0 {
|
|
|
|
// We surround the separated list with the separator as well. This way regular expressions
|
|
|
|
// in relabeling rules don't have to consider tag positions.
|
|
|
|
m["__meta_gce_tags"] = tagSeparator + strings.Join(inst.Tags.Items, tagSeparator) + tagSeparator
|
|
|
|
}
|
|
|
|
for _, item := range inst.Metadata.Items {
|
|
|
|
key := discoveryutils.SanitizeLabelName(item.Key)
|
|
|
|
m["__meta_gce_metadata_"+key] = item.Value
|
|
|
|
}
|
|
|
|
for _, label := range inst.Labels {
|
|
|
|
name := discoveryutils.SanitizeLabelName(label.Name)
|
|
|
|
m["__meta_gce_label_"+name] = label.Value
|
|
|
|
}
|
|
|
|
if len(iface.AccessConfigs) > 0 {
|
|
|
|
ac := iface.AccessConfigs[0]
|
|
|
|
if ac.Type == "ONE_TO_ONE_NAT" {
|
|
|
|
m["__meta_gce_public_ip"] = ac.NatIP
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ms = append(ms, m)
|
|
|
|
return ms
|
|
|
|
}
|