mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-04-02 22:05:40 +02:00
Clarify nature of Codes values w.r.t. OTLP (#3386)
* Clarify nature of Codes values w.r.t. OTLP * Update codes/codes.go Co-authored-by: Damien Mathieu <42@dmathieu.com> * go eff em tee dash ehs Co-authored-by: Damien Mathieu <42@dmathieu.com> Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
This commit is contained in:
parent
797e337676
commit
3b9862a771
@ -23,10 +23,20 @@ import (
|
|||||||
const (
|
const (
|
||||||
// Unset is the default status code.
|
// Unset is the default status code.
|
||||||
Unset Code = 0
|
Unset Code = 0
|
||||||
|
|
||||||
// Error indicates the operation contains an error.
|
// Error indicates the operation contains an error.
|
||||||
|
//
|
||||||
|
// NOTE: The error code in OTLP is 2.
|
||||||
|
// The value of this enum is only relevant to the internals
|
||||||
|
// of the Go SDK.
|
||||||
Error Code = 1
|
Error Code = 1
|
||||||
|
|
||||||
// Ok indicates operation has been validated by an Application developers
|
// Ok indicates operation has been validated by an Application developers
|
||||||
// or Operator to have completed successfully, or contain no error.
|
// or Operator to have completed successfully, or contain no error.
|
||||||
|
//
|
||||||
|
// NOTE: The Ok code in OTLP is 1.
|
||||||
|
// The value of this enum is only relevant to the internals
|
||||||
|
// of the Go SDK.
|
||||||
Ok Code = 2
|
Ok Code = 2
|
||||||
|
|
||||||
maxCode = 3
|
maxCode = 3
|
||||||
|
Loading…
x
Reference in New Issue
Block a user