class Datadog::Profiling::Pprof::Converter::UnknownSampleTypeMappingError

Error when the mapping of a sample type to value index is unknown

Attributes

type[R]

Public Class Methods

new(type) click to toggle source
# File lib/ddtrace/profiling/pprof/converter.rb, line 79
def initialize(type)
  @type = type
end

Public Instance Methods

message() click to toggle source
# File lib/ddtrace/profiling/pprof/converter.rb, line 83
def message
  "Mapping for sample value type '#{type}' to index is unknown."
end