dns_attributes.h 861 B

12345678910111213141516171819202122232425262728293031323334
  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 dns
  16. {
  17. /**
  18. The name being queried.
  19. <p>
  20. If the name field contains non-printable characters (below 32 or above 126), those characters
  21. should be represented as escaped base 10 integers (\DDD). Back slashes and quotes should be
  22. escaped. Tabs, carriage returns, and line feeds should be converted to \t, \r, and \n
  23. respectively.
  24. */
  25. static constexpr const char *kDnsQuestionName = "dns.question.name";
  26. } // namespace dns
  27. } // namespace semconv
  28. OPENTELEMETRY_END_NAMESPACE