Class StackFrame (1.13.2)

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

Represents a single stack frame in a stack trace.

Attributes

NameDescription
function_name google.cloud.trace_v2.types.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 google.cloud.trace_v2.types.TruncatableString
An un-mangled function name, if function_name is mangled. To get information about name mangling, run `this search
file_name google.cloud.trace_v2.types.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 google.cloud.trace_v2.types.Module
The binary module from where the code was loaded.
source_version google.cloud.trace_v2.types.TruncatableString
The version of the deployed source code (up to 128 bytes).