| 12345678910111213141516171819202122232425262728293031323334 |
- /*
- * 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 session
- {
- /**
- A unique id to identify a session.
- */
- static constexpr const char *kSessionId = "session.id";
- /**
- The previous @code session.id @endcode for this user, when known.
- */
- static constexpr const char *kSessionPreviousId = "session.previous_id";
- } // namespace session
- } // namespace semconv
- OPENTELEMETRY_END_NAMESPACE
|