hcloud-pricing-exporter/fetcher/primaryip.go
Rikard Gynnerstedt fca0b5f77b
Add additional labels flag (#48)
* added additional tags flag

* move additional labels to base fetcher

* find label function instead of jump label

* bugfix to labels not correctly set when -additional-labels flag not present

* check for more than 0, instead of 1
2023-01-25 20:24:33 +01:00

45 lines
1.1 KiB
Go

package fetcher
import (
"github.com/hetznercloud/hcloud-go/hcloud"
)
var _ Fetcher = &floatingIP{}
// NewPrimaryIP creates a new fetcher that will collect pricing information on primary IPs.
func NewPrimaryIP(pricing *PriceProvider, additionalLabels ...string) Fetcher {
return &primaryIP{newBase(pricing, "primaryip", []string{"datacenter", "type"}, additionalLabels...)}
}
type primaryIP struct {
*baseFetcher
}
func (primaryIP primaryIP) Run(client *hcloud.Client) error {
primaryIPs, _, err := client.PrimaryIP.List(ctx, hcloud.PrimaryIPListOpts{})
if err != nil {
return err
}
for _, p := range primaryIPs {
datacenter := p.Datacenter
hourlyPrice, monthlyPrice, err := primaryIP.pricing.PrimaryIP(p.Type, datacenter.Location.Name)
if err != nil {
return err
}
labels := append([]string{
p.Name,
datacenter.Name,
string(p.Type),
},
parseAdditionalLabels(primaryIP.additionalLabels, p.Labels)...,
)
primaryIP.hourly.WithLabelValues(labels...).Set(hourlyPrice)
primaryIP.monthly.WithLabelValues(labels...).Set(monthlyPrice)
}
return nil
}