Class StackFrame (1.1.0)

StackFrame(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Represents a single stack frame in a stack trace.

Attributes

NameDescription
function_name .trace.TruncatableString
The fully-qualified name that uniquely identifies the function or method that is active in this frame (up to 1024 bytes).
original_function_name .trace.TruncatableString
An un-mangled function name, if function_name is mangled __. The name can be fully-qualified (up to 1024 bytes).
file_name .trace.TruncatableString
The name of the source file where the function call appears (up to 256 bytes).
line_number int
The line number in file_name where the function call appears.
column_number int
The column number where the function call appears, if available. This is important in JavaScript because of its anonymous functions.
load_module .trace.Module
The binary module from where the code was loaded.
source_version .trace.TruncatableString
The version of the deployed source code (up to 128 bytes).