ZeroTierOne/ext/opentelemetry-cpp-api-only/include/opentelemetry/semconv/incubating/geo_attributes.h

102 lines
2.2 KiB
C++
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* 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 continents name.
*/
static constexpr const char *kGeoContinentCode = "geo.continent.code";
/**
Two-letter ISO Country Code (<a href="https://wikipedia.org/wiki/ISO_3166-1#Codes">ISO 3166-1
alpha2</a>).
*/
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 <a
href="https://wikipedia.org/wiki/World_Geodetic_System#WGS84">WGS84</a>.
*/
static constexpr const char *kGeoLocationLat = "geo.location.lat";
/**
Longitude of the geo location in <a
href="https://wikipedia.org/wiki/World_Geodetic_System#WGS84">WGS84</a>.
*/
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 (<a href="https://wikipedia.org/wiki/ISO_3166-2">ISO 3166-2</a>).
*/
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