1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
/*
* 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 (<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
|