StackFrame(mapping=None, *, ignore_unknown_fields=False, **kwargs)
Represents a single stack frame in a stack trace. .. attribute:: function_name
The fully-qualified name that uniquely identifies the function or method that is active in this frame (up to 1024 bytes).
Attributes
Name | Description |
original_function_name |
google.cloud.trace_v2.types.TruncatableString
An un-mangled function name, if function_name is
mangled __.
The name can be fully-qualified (up to 1024 bytes).
|
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). |