opentracing_attributes.h 1005 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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 opentracing
  16. {
  17. /**
  18. Parent-child Reference type
  19. <p>
  20. The causal relationship between a child Span and a parent Span.
  21. */
  22. static constexpr const char *kOpentracingRefType = "opentracing.ref_type";
  23. namespace OpentracingRefTypeValues
  24. {
  25. /**
  26. The parent Span depends on the child Span in some capacity
  27. */
  28. static constexpr const char *kChildOf = "child_of";
  29. /**
  30. The parent Span doesn't depend in any way on the result of the child Span
  31. */
  32. static constexpr const char *kFollowsFrom = "follows_from";
  33. } // namespace OpentracingRefTypeValues
  34. } // namespace opentracing
  35. } // namespace semconv
  36. OPENTELEMETRY_END_NAMESPACE