hcloud-pricing-exporter/fetcher/primaryip.go
2024-01-17 20:19:21 +01:00

45 lines
1 KiB
Go

package fetcher
import (
"github.com/hetznercloud/hcloud-go/v2/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.All(ctx)
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
}