Sha256: 7c759212a240d6d17104e906c74334772167030cb1e134dda65865906eae0060
Contents?: true
Size: 1.37 KB
Versions: 1
Compression:
Stored size: 1.37 KB
Contents
# frozen_string_literal: true # Copyright 2019 OpenTelemetry Authors # # SPDX-License-Identifier: Apache-2.0 require 'opentelemetry/trace/util/http_to_status' module OpenTelemetry module Trace # Status represents the status of a finished {Span}. It is composed of a # canonical code in conjunction with an optional descriptive message. class Status # Convenience utility, not in API spec: extend Util::HttpToStatus # Retrieve the canonical code of this Status. # # @return [Integer] attr_reader :canonical_code # Retrieve the description of this Status. # # @return [String] attr_reader :description # Initialize a Status. # # @param [Integer] canonical_code One of the canonical status codes below # @param [String] description def initialize(canonical_code, description: '') @canonical_code = canonical_code @description = description end # Returns false if this {Status} represents an error, else returns true. # # @return [Boolean] def ok? @canonical_code != ERROR end # The following represents the canonical set of status codes of a # finished {Span} # The operation completed successfully. OK = 0 # The default status. UNSET = 1 # An error. ERROR = 2 end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
opentelemetry-api-0.7.0 | lib/opentelemetry/trace/status.rb |