in parsing.go [64:73]
func extractZoneHTTPCountry(zone zoneResp, zoneNames map[string]string, scrapeBucket *TimeBucket) (int, error) {
for _, countryTraffic := range zone.TrafficCountry {
httpCountryRequests.WithLabelValues(zoneNames[zone.ZoneTag], countryTraffic.Dimensions.ClientCountryName).
Add(float64(countryTraffic.Count), scrapeBucket.getEndTime())
httpCountryBytes.WithLabelValues(zoneNames[zone.ZoneTag], countryTraffic.Dimensions.ClientCountryName).
Add(float64(countryTraffic.Sum.EdgeResponseBytes), scrapeBucket.getEndTime())
}
return len(zone.TrafficCountry), nil
}