destination_attributes.h 1023 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * Copyright The OpenTelemetry Authors
  3. * SPDX-License-Identifier: Apache-2.0
  4. */
  5. /*
  6. * DO NOT EDIT, this is an Auto-generated file from:
  7. * buildscripts/semantic-convention/templates/registry/semantic_attributes-h.j2
  8. */
  9. #pragma once
  10. #include "opentelemetry/common/macros.h"
  11. #include "opentelemetry/version.h"
  12. OPENTELEMETRY_BEGIN_NAMESPACE
  13. namespace semconv
  14. {
  15. namespace destination
  16. {
  17. /**
  18. Destination address - domain name if available without reverse DNS lookup; otherwise, IP address
  19. or Unix domain socket name. <p> When observed from the source side, and when communicating through
  20. an intermediary, @code destination.address @endcode SHOULD represent the destination address
  21. behind any intermediaries, for example proxies, if it's available.
  22. */
  23. static constexpr const char *kDestinationAddress = "destination.address";
  24. /**
  25. Destination port number
  26. */
  27. static constexpr const char *kDestinationPort = "destination.port";
  28. } // namespace destination
  29. } // namespace semconv
  30. OPENTELEMETRY_END_NAMESPACE