Class StackTrace (2.42.0)

public final class StackTrace extends GeneratedMessageV3 implements StackTraceOrBuilder

A call stack appearing in a trace.

Protobuf type google.devtools.cloudtrace.v2.StackTrace

Implements

StackTraceOrBuilder

Static Fields

STACK_FRAMES_FIELD_NUMBER

public static final int STACK_FRAMES_FIELD_NUMBER
Field Value
Type Description
int

STACK_TRACE_HASH_ID_FIELD_NUMBER

public static final int STACK_TRACE_HASH_ID_FIELD_NUMBER
Field Value
Type Description
int

Static Methods

getDefaultInstance()

public static StackTrace getDefaultInstance()
Returns
Type Description
StackTrace

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
Type Description
Descriptor

newBuilder()

public static StackTrace.Builder newBuilder()
Returns
Type Description
StackTrace.Builder

newBuilder(StackTrace prototype)

public static StackTrace.Builder newBuilder(StackTrace prototype)
Parameter
Name Description
prototype StackTrace
Returns
Type Description
StackTrace.Builder

parseDelimitedFrom(InputStream input)

public static StackTrace parseDelimitedFrom(InputStream input)
Parameter
Name Description
input InputStream
Returns
Type Description
StackTrace
Exceptions
Type Description
IOException

parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static StackTrace parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input InputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
StackTrace
Exceptions
Type Description
IOException

parseFrom(byte[] data)

public static StackTrace parseFrom(byte[] data)
Parameter
Name Description
data byte[]
Returns
Type Description
StackTrace
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)

public static StackTrace parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data byte[]
extensionRegistry ExtensionRegistryLite
Returns
Type Description
StackTrace
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteString data)

public static StackTrace parseFrom(ByteString data)
Parameter
Name Description
data ByteString
Returns
Type Description
StackTrace
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)

public static StackTrace parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data ByteString
extensionRegistry ExtensionRegistryLite
Returns
Type Description
StackTrace
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(CodedInputStream input)

public static StackTrace parseFrom(CodedInputStream input)
Parameter
Name Description
input CodedInputStream
Returns
Type Description
StackTrace
Exceptions
Type Description
IOException

parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public static StackTrace parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input CodedInputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
StackTrace
Exceptions
Type Description
IOException

parseFrom(InputStream input)

public static StackTrace parseFrom(InputStream input)
Parameter
Name Description
input InputStream
Returns
Type Description
StackTrace
Exceptions
Type Description
IOException

parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static StackTrace parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input InputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
StackTrace
Exceptions
Type Description
IOException

parseFrom(ByteBuffer data)

public static StackTrace parseFrom(ByteBuffer data)
Parameter
Name Description
data ByteBuffer
Returns
Type Description
StackTrace
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)

public static StackTrace parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data ByteBuffer
extensionRegistry ExtensionRegistryLite
Returns
Type Description
StackTrace
Exceptions
Type Description
InvalidProtocolBufferException

parser()

public static Parser<StackTrace> parser()
Returns
Type Description
Parser<StackTrace>

Methods

equals(Object obj)

public boolean equals(Object obj)
Parameter
Name Description
obj Object
Returns
Type Description
boolean
Overrides

getDefaultInstanceForType()

public StackTrace getDefaultInstanceForType()
Returns
Type Description
StackTrace

getParserForType()

public Parser<StackTrace> getParserForType()
Returns
Type Description
Parser<StackTrace>
Overrides

getSerializedSize()

public int getSerializedSize()
Returns
Type Description
int
Overrides

getStackFrames()

public StackTrace.StackFrames getStackFrames()

Stack frames in this stack trace. A maximum of 128 frames are allowed.

.google.devtools.cloudtrace.v2.StackTrace.StackFrames stack_frames = 1;

Returns
Type Description
StackTrace.StackFrames

The stackFrames.

getStackFramesOrBuilder()

public StackTrace.StackFramesOrBuilder getStackFramesOrBuilder()

Stack frames in this stack trace. A maximum of 128 frames are allowed.

.google.devtools.cloudtrace.v2.StackTrace.StackFrames stack_frames = 1;

Returns
Type Description
StackTrace.StackFramesOrBuilder

getStackTraceHashId()

public long getStackTraceHashId()

The hash ID is used to conserve network bandwidth for duplicate stack traces within a single trace.

Often multiple spans will have identical stack traces. The first occurrence of a stack trace should contain both the stackFrame content and a value in stackTraceHashId.

Subsequent spans within the same request can refer to that stack trace by only setting stackTraceHashId.

int64 stack_trace_hash_id = 2;

Returns
Type Description
long

The stackTraceHashId.

hasStackFrames()

public boolean hasStackFrames()

Stack frames in this stack trace. A maximum of 128 frames are allowed.

.google.devtools.cloudtrace.v2.StackTrace.StackFrames stack_frames = 1;

Returns
Type Description
boolean

Whether the stackFrames field is set.

hashCode()

public int hashCode()
Returns
Type Description
int
Overrides

internalGetFieldAccessorTable()

protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
Type Description
FieldAccessorTable
Overrides

isInitialized()

public final boolean isInitialized()
Returns
Type Description
boolean
Overrides

newBuilderForType()

public StackTrace.Builder newBuilderForType()
Returns
Type Description
StackTrace.Builder

newBuilderForType(GeneratedMessageV3.BuilderParent parent)

protected StackTrace.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Parameter
Name Description
parent BuilderParent
Returns
Type Description
StackTrace.Builder
Overrides

newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)

protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Parameter
Name Description
unused UnusedPrivateParameter
Returns
Type Description
Object
Overrides

toBuilder()

public StackTrace.Builder toBuilder()
Returns
Type Description
StackTrace.Builder

writeTo(CodedOutputStream output)

public void writeTo(CodedOutputStream output)
Parameter
Name Description
output CodedOutputStream
Overrides
Exceptions
Type Description
IOException