/* * Copyright The OpenTelemetry Authors * SPDX-License-Identifier: Apache-2.0 */ /* * DO NOT EDIT, this is an Auto-generated file from: * buildscripts/semantic-convention/templates/registry/semantic_attributes-h.j2 */ #pragma once #include "opentelemetry/common/macros.h" #include "opentelemetry/version.h" OPENTELEMETRY_BEGIN_NAMESPACE namespace semconv { namespace geo { /** Two-letter code representing continent’s name. */ static constexpr const char *kGeoContinentCode = "geo.continent.code"; /** Two-letter ISO Country Code (ISO 3166-1 alpha2). */ static constexpr const char *kGeoCountryIsoCode = "geo.country.iso_code"; /** Locality name. Represents the name of a city, town, village, or similar populated place. */ static constexpr const char *kGeoLocalityName = "geo.locality.name"; /** Latitude of the geo location in WGS84. */ static constexpr const char *kGeoLocationLat = "geo.location.lat"; /** Longitude of the geo location in WGS84. */ static constexpr const char *kGeoLocationLon = "geo.location.lon"; /** Postal code associated with the location. Values appropriate for this field may also be known as a postcode or ZIP code and will vary widely from country to country. */ static constexpr const char *kGeoPostalCode = "geo.postal_code"; /** Region ISO code (ISO 3166-2). */ static constexpr const char *kGeoRegionIsoCode = "geo.region.iso_code"; namespace GeoContinentCodeValues { /** Africa */ static constexpr const char *kAf = "AF"; /** Antarctica */ static constexpr const char *kAn = "AN"; /** Asia */ static constexpr const char *kAs = "AS"; /** Europe */ static constexpr const char *kEu = "EU"; /** North America */ static constexpr const char *kNa = "NA"; /** Oceania */ static constexpr const char *kOc = "OC"; /** South America */ static constexpr const char *kSa = "SA"; } // namespace GeoContinentCodeValues } // namespace geo } // namespace semconv OPENTELEMETRY_END_NAMESPACE