linux_attributes.h 817 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 linux
  16. {
  17. /**
  18. The Linux Slab memory state
  19. */
  20. static constexpr const char *kLinuxMemorySlabState = "linux.memory.slab.state";
  21. namespace LinuxMemorySlabStateValues
  22. {
  23. /**
  24. none
  25. */
  26. static constexpr const char *kReclaimable = "reclaimable";
  27. /**
  28. none
  29. */
  30. static constexpr const char *kUnreclaimable = "unreclaimable";
  31. } // namespace LinuxMemorySlabStateValues
  32. } // namespace linux
  33. } // namespace semconv
  34. OPENTELEMETRY_END_NAMESPACE