class Datadog::Profiling::Pprof::Template::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/template.rb, line 108
def initialize(type)
  @type = type
end

Public Instance Methods

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