Class GrpcLogEntry

  • All Implemented Interfaces:
    com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, GrpcLogEntryOrBuilder, java.io.Serializable

    public final class GrpcLogEntry
    extends com.google.protobuf.GeneratedMessage
    implements GrpcLogEntryOrBuilder
     Log entry we store in binary logs
     
    Protobuf type grpc.binarylog.v1.GrpcLogEntry
    See Also:
    Serialized Form
    • Field Detail

      • bitField0_

        private int bitField0_
      • payloadCase_

        private int payloadCase_
      • payload_

        private java.lang.Object payload_
      • timestamp_

        private com.google.protobuf.Timestamp timestamp_
      • callId_

        private long callId_
      • SEQUENCE_ID_WITHIN_CALL_FIELD_NUMBER

        public static final int SEQUENCE_ID_WITHIN_CALL_FIELD_NUMBER
        See Also:
        Constant Field Values
      • sequenceIdWithinCall_

        private long sequenceIdWithinCall_
      • type_

        private int type_
      • logger_

        private int logger_
      • CLIENT_HEADER_FIELD_NUMBER

        public static final int CLIENT_HEADER_FIELD_NUMBER
        See Also:
        Constant Field Values
      • SERVER_HEADER_FIELD_NUMBER

        public static final int SERVER_HEADER_FIELD_NUMBER
        See Also:
        Constant Field Values
      • PAYLOAD_TRUNCATED_FIELD_NUMBER

        public static final int PAYLOAD_TRUNCATED_FIELD_NUMBER
        See Also:
        Constant Field Values
      • payloadTruncated_

        private boolean payloadTruncated_
      • memoizedIsInitialized

        private byte memoizedIsInitialized
      • DEFAULT_INSTANCE

        private static final GrpcLogEntry DEFAULT_INSTANCE
      • PARSER

        private static final com.google.protobuf.Parser<GrpcLogEntry> PARSER
    • Constructor Detail

      • GrpcLogEntry

        private GrpcLogEntry​(com.google.protobuf.GeneratedMessage.Builder<?> builder)
      • GrpcLogEntry

        private GrpcLogEntry()
    • Method Detail

      • getDescriptor

        public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
      • internalGetFieldAccessorTable

        protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable()
        Specified by:
        internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessage
      • hasTimestamp

        public boolean hasTimestamp()
         The timestamp of the binary log message
         
        .google.protobuf.Timestamp timestamp = 1;
        Specified by:
        hasTimestamp in interface GrpcLogEntryOrBuilder
        Returns:
        Whether the timestamp field is set.
      • getTimestamp

        public com.google.protobuf.Timestamp getTimestamp()
         The timestamp of the binary log message
         
        .google.protobuf.Timestamp timestamp = 1;
        Specified by:
        getTimestamp in interface GrpcLogEntryOrBuilder
        Returns:
        The timestamp.
      • getTimestampOrBuilder

        public com.google.protobuf.TimestampOrBuilder getTimestampOrBuilder()
         The timestamp of the binary log message
         
        .google.protobuf.Timestamp timestamp = 1;
        Specified by:
        getTimestampOrBuilder in interface GrpcLogEntryOrBuilder
      • getCallId

        public long getCallId()
         Uniquely identifies a call. The value must not be 0 in order to disambiguate
         from an unset value.
         Each call may have several log entries, they will all have the same call_id.
         Nothing is guaranteed about their value other than they are unique across
         different RPCs in the same gRPC process.
         
        uint64 call_id = 2;
        Specified by:
        getCallId in interface GrpcLogEntryOrBuilder
        Returns:
        The callId.
      • getSequenceIdWithinCall

        public long getSequenceIdWithinCall()
         The entry sequence id for this call. The first GrpcLogEntry has a
         value of 1, to disambiguate from an unset value. The purpose of
         this field is to detect missing entries in environments where
         durability or ordering is not guaranteed.
         
        uint64 sequence_id_within_call = 3;
        Specified by:
        getSequenceIdWithinCall in interface GrpcLogEntryOrBuilder
        Returns:
        The sequenceIdWithinCall.
      • getTypeValue

        public int getTypeValue()
        .grpc.binarylog.v1.GrpcLogEntry.EventType type = 4;
        Specified by:
        getTypeValue in interface GrpcLogEntryOrBuilder
        Returns:
        The enum numeric value on the wire for type.
      • getLoggerValue

        public int getLoggerValue()
         One of the above Logger enum
         
        .grpc.binarylog.v1.GrpcLogEntry.Logger logger = 5;
        Specified by:
        getLoggerValue in interface GrpcLogEntryOrBuilder
        Returns:
        The enum numeric value on the wire for logger.
      • hasClientHeader

        public boolean hasClientHeader()
        .grpc.binarylog.v1.ClientHeader client_header = 6;
        Specified by:
        hasClientHeader in interface GrpcLogEntryOrBuilder
        Returns:
        Whether the clientHeader field is set.
      • hasServerHeader

        public boolean hasServerHeader()
        .grpc.binarylog.v1.ServerHeader server_header = 7;
        Specified by:
        hasServerHeader in interface GrpcLogEntryOrBuilder
        Returns:
        Whether the serverHeader field is set.
      • hasMessage

        public boolean hasMessage()
         Used by EVENT_TYPE_CLIENT_MESSAGE, EVENT_TYPE_SERVER_MESSAGE
         
        .grpc.binarylog.v1.Message message = 8;
        Specified by:
        hasMessage in interface GrpcLogEntryOrBuilder
        Returns:
        Whether the message field is set.
      • getMessage

        public Message getMessage()
         Used by EVENT_TYPE_CLIENT_MESSAGE, EVENT_TYPE_SERVER_MESSAGE
         
        .grpc.binarylog.v1.Message message = 8;
        Specified by:
        getMessage in interface GrpcLogEntryOrBuilder
        Returns:
        The message.
      • hasTrailer

        public boolean hasTrailer()
        .grpc.binarylog.v1.Trailer trailer = 9;
        Specified by:
        hasTrailer in interface GrpcLogEntryOrBuilder
        Returns:
        Whether the trailer field is set.
      • getPayloadTruncated

        public boolean getPayloadTruncated()
         true if payload does not represent the full message or metadata.
         
        bool payload_truncated = 10;
        Specified by:
        getPayloadTruncated in interface GrpcLogEntryOrBuilder
        Returns:
        The payloadTruncated.
      • hasPeer

        public boolean hasPeer()
         Peer address information, will only be recorded on the first
         incoming event. On client side, peer is logged on
         EVENT_TYPE_SERVER_HEADER normally or EVENT_TYPE_SERVER_TRAILER in
         the case of trailers-only. On server side, peer is always
         logged on EVENT_TYPE_CLIENT_HEADER.
         
        .grpc.binarylog.v1.Address peer = 11;
        Specified by:
        hasPeer in interface GrpcLogEntryOrBuilder
        Returns:
        Whether the peer field is set.
      • getPeer

        public Address getPeer()
         Peer address information, will only be recorded on the first
         incoming event. On client side, peer is logged on
         EVENT_TYPE_SERVER_HEADER normally or EVENT_TYPE_SERVER_TRAILER in
         the case of trailers-only. On server side, peer is always
         logged on EVENT_TYPE_CLIENT_HEADER.
         
        .grpc.binarylog.v1.Address peer = 11;
        Specified by:
        getPeer in interface GrpcLogEntryOrBuilder
        Returns:
        The peer.
      • getPeerOrBuilder

        public AddressOrBuilder getPeerOrBuilder()
         Peer address information, will only be recorded on the first
         incoming event. On client side, peer is logged on
         EVENT_TYPE_SERVER_HEADER normally or EVENT_TYPE_SERVER_TRAILER in
         the case of trailers-only. On server side, peer is always
         logged on EVENT_TYPE_CLIENT_HEADER.
         
        .grpc.binarylog.v1.Address peer = 11;
        Specified by:
        getPeerOrBuilder in interface GrpcLogEntryOrBuilder
      • isInitialized

        public final boolean isInitialized()
        Specified by:
        isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
        Overrides:
        isInitialized in class com.google.protobuf.GeneratedMessage
      • writeTo

        public void writeTo​(com.google.protobuf.CodedOutputStream output)
                     throws java.io.IOException
        Specified by:
        writeTo in interface com.google.protobuf.MessageLite
        Overrides:
        writeTo in class com.google.protobuf.GeneratedMessage
        Throws:
        java.io.IOException
      • getSerializedSize

        public int getSerializedSize()
        Specified by:
        getSerializedSize in interface com.google.protobuf.MessageLite
        Overrides:
        getSerializedSize in class com.google.protobuf.GeneratedMessage
      • equals

        public boolean equals​(java.lang.Object obj)
        Specified by:
        equals in interface com.google.protobuf.Message
        Overrides:
        equals in class com.google.protobuf.AbstractMessage
      • hashCode

        public int hashCode()
        Specified by:
        hashCode in interface com.google.protobuf.Message
        Overrides:
        hashCode in class com.google.protobuf.AbstractMessage
      • parseFrom

        public static GrpcLogEntry parseFrom​(java.nio.ByteBuffer data)
                                      throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static GrpcLogEntry parseFrom​(java.nio.ByteBuffer data,
                                             com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                      throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static GrpcLogEntry parseFrom​(com.google.protobuf.ByteString data)
                                      throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static GrpcLogEntry parseFrom​(com.google.protobuf.ByteString data,
                                             com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                      throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static GrpcLogEntry parseFrom​(byte[] data)
                                      throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static GrpcLogEntry parseFrom​(byte[] data,
                                             com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                      throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static GrpcLogEntry parseFrom​(java.io.InputStream input)
                                      throws java.io.IOException
        Throws:
        java.io.IOException
      • parseFrom

        public static GrpcLogEntry parseFrom​(java.io.InputStream input,
                                             com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                      throws java.io.IOException
        Throws:
        java.io.IOException
      • parseDelimitedFrom

        public static GrpcLogEntry parseDelimitedFrom​(java.io.InputStream input)
                                               throws java.io.IOException
        Throws:
        java.io.IOException
      • parseDelimitedFrom

        public static GrpcLogEntry parseDelimitedFrom​(java.io.InputStream input,
                                                      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                               throws java.io.IOException
        Throws:
        java.io.IOException
      • parseFrom

        public static GrpcLogEntry parseFrom​(com.google.protobuf.CodedInputStream input)
                                      throws java.io.IOException
        Throws:
        java.io.IOException
      • parseFrom

        public static GrpcLogEntry parseFrom​(com.google.protobuf.CodedInputStream input,
                                             com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                      throws java.io.IOException
        Throws:
        java.io.IOException
      • newBuilderForType

        public GrpcLogEntry.Builder newBuilderForType()
        Specified by:
        newBuilderForType in interface com.google.protobuf.Message
        Specified by:
        newBuilderForType in interface com.google.protobuf.MessageLite
      • toBuilder

        public GrpcLogEntry.Builder toBuilder()
        Specified by:
        toBuilder in interface com.google.protobuf.Message
        Specified by:
        toBuilder in interface com.google.protobuf.MessageLite
      • newBuilderForType

        protected GrpcLogEntry.Builder newBuilderForType​(com.google.protobuf.AbstractMessage.BuilderParent parent)
        Overrides:
        newBuilderForType in class com.google.protobuf.AbstractMessage
      • getDefaultInstance

        public static GrpcLogEntry getDefaultInstance()
      • parser

        public static com.google.protobuf.Parser<GrpcLogEntry> parser()
      • getParserForType

        public com.google.protobuf.Parser<GrpcLogEntry> getParserForType()
        Specified by:
        getParserForType in interface com.google.protobuf.Message
        Specified by:
        getParserForType in interface com.google.protobuf.MessageLite
        Overrides:
        getParserForType in class com.google.protobuf.GeneratedMessage
      • getDefaultInstanceForType

        public GrpcLogEntry getDefaultInstanceForType()
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder