123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /*
- * 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 error
- {
- /**
- Describes a class of error the operation ended with.
- <p>
- The @code error.type @endcode SHOULD be predictable, and SHOULD have low cardinality.
- <p>
- When @code error.type @endcode is set to a type (e.g., an exception type), its
- canonical class name identifying the type within the artifact SHOULD be used.
- <p>
- Instrumentations SHOULD document the list of errors they report.
- <p>
- The cardinality of @code error.type @endcode within one instrumentation library SHOULD be low.
- Telemetry consumers that aggregate data from multiple instrumentation libraries and applications
- should be prepared for @code error.type @endcode to have high cardinality at query time when no
- additional filters are applied.
- <p>
- If the operation has completed successfully, instrumentations SHOULD NOT set @code error.type
- @endcode. <p> If a specific domain defines its own set of error identifiers (such as HTTP or gRPC
- status codes), it's RECOMMENDED to: <ul> <li>Use a domain-specific attribute</li> <li>Set @code
- error.type @endcode to capture all errors, regardless of whether they are defined within the
- domain-specific set or not.</li>
- </ul>
- */
- static constexpr const char *kErrorType = "error.type";
- namespace ErrorTypeValues
- {
- /**
- A fallback error value to be used when the instrumentation doesn't define a custom value.
- */
- static constexpr const char *kOther = "_OTHER";
- } // namespace ErrorTypeValues
- } // namespace error
- } // namespace semconv
- OPENTELEMETRY_END_NAMESPACE
|