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.GeneratedMessageV3
    implements GrpcLogEntryOrBuilder
     Log entry we store in binary logs
     
    Protobuf type grpc.binarylog.v1.GrpcLogEntry
    See Also:
    Serialized Form
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  GrpcLogEntry.Builder
      Log entry we store in binary logs
      static class  GrpcLogEntry.EventType
      Enumerates the type of event Note the terminology is different from the RPC semantics definition, but the same meaning is expressed here.
      static class  GrpcLogEntry.Logger
      Enumerates the entity that generates the log entry
      static class  GrpcLogEntry.PayloadCase  
      • Nested classes/interfaces inherited from class com.google.protobuf.GeneratedMessageV3

        com.google.protobuf.GeneratedMessageV3.BuilderParent, com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageT extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageT>,​BuilderT extends com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageT,​BuilderT>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageT extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageT>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessageOrBuilder<MessageT extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageT>>, com.google.protobuf.GeneratedMessageV3.FieldAccessorTable, com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter
      • Nested classes/interfaces inherited from class com.google.protobuf.AbstractMessageLite

        com.google.protobuf.AbstractMessageLite.InternalOneOfEnum
    • Method Detail

      • newInstance

        protected java.lang.Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
        Overrides:
        newInstance in class com.google.protobuf.GeneratedMessageV3
      • getDescriptor

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

        protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
        Specified by:
        internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      • 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.GeneratedMessageV3
      • 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.GeneratedMessageV3
        Throws:
        java.io.IOException
      • getSerializedSize

        public int getSerializedSize()
        Specified by:
        getSerializedSize in interface com.google.protobuf.MessageLite
        Overrides:
        getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      • 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.GeneratedMessageV3.BuilderParent parent)
        Specified by:
        newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      • 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.GeneratedMessageV3
      • getDefaultInstanceForType

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