* * Copyright 2016 gRPC authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http:www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *
Package stats is for collecting and reporting various network and RPC stats. This package is for monitoring purpose only. All fields are read-only. All APIs are experimental.
package stats // import "google.golang.org/grpc/stats"

import (
	
	
	

	
)
RPCStats contains stats information about RPCs.
type RPCStats interface {
IsClient returns true if this RPCStats is from client side.
	IsClient() bool
}
Begin contains stats when an RPC begins. FailFast is only valid if this Begin is from client side.
Client is true if this Begin is from client side.
BeginTime is the time when the RPC begins.
FailFast indicates if this RPC is failfast.
IsClient indicates if the stats information is from client side.
func ( *Begin) () bool { return .Client }

func ( *Begin) () {}
InPayload contains the information for an incoming payload.
Client is true if this InPayload is from client side.
Payload is the payload with original type.
Data is the serialized message payload.
Length is the length of uncompressed data.
WireLength is the length of data on wire (compressed, signed, encrypted).
RecvTime is the time when the payload is received.
IsClient indicates if the stats information is from client side.
func ( *InPayload) () bool { return .Client }

func ( *InPayload) () {}
InHeader contains stats when a header is received.
Client is true if this InHeader is from client side.
WireLength is the wire length of header.
Compression is the compression algorithm used for the RPC.
Header contains the header metadata received.
The following fields are valid only if Client is false. FullMethod is the full RPC method string, i.e., /package.service/method.
RemoteAddr is the remote address of the corresponding connection.
LocalAddr is the local address of the corresponding connection.
IsClient indicates if the stats information is from client side.
func ( *InHeader) () bool { return .Client }

func ( *InHeader) () {}
InTrailer contains stats when a trailer is received.
Client is true if this InTrailer is from client side.
WireLength is the wire length of trailer.
Trailer contains the trailer metadata received from the server. This field is only valid if this InTrailer is from the client side.
IsClient indicates if the stats information is from client side.
func ( *InTrailer) () bool { return .Client }

func ( *InTrailer) () {}
OutPayload contains the information for an outgoing payload.
Client is true if this OutPayload is from client side.
Payload is the payload with original type.
Data is the serialized message payload.
Length is the length of uncompressed data.
WireLength is the length of data on wire (compressed, signed, encrypted).
SentTime is the time when the payload is sent.
IsClient indicates if this stats information is from client side.
func ( *OutPayload) () bool { return .Client }

func ( *OutPayload) () {}
OutHeader contains stats when a header is sent.
Client is true if this OutHeader is from client side.
Compression is the compression algorithm used for the RPC.
Header contains the header metadata sent.
The following fields are valid only if Client is true. FullMethod is the full RPC method string, i.e., /package.service/method.
RemoteAddr is the remote address of the corresponding connection.
LocalAddr is the local address of the corresponding connection.
IsClient indicates if this stats information is from client side.
func ( *OutHeader) () bool { return .Client }

func ( *OutHeader) () {}
OutTrailer contains stats when a trailer is sent.
Client is true if this OutTrailer is from client side.
WireLength is the wire length of trailer. Deprecated: This field is never set. The length is not known when this message is emitted because the trailer fields are compressed with hpack after that.
Trailer contains the trailer metadata sent to the client. This field is only valid if this OutTrailer is from the server side.
IsClient indicates if this stats information is from client side.
func ( *OutTrailer) () bool { return .Client }

func ( *OutTrailer) () {}
End contains stats when an RPC ends.
Client is true if this End is from client side.
BeginTime is the time when the RPC began.
EndTime is the time when the RPC ends.
Trailer contains the trailer metadata received from the server. This field is only valid if this End is from the client side. Deprecated: use Trailer in InTrailer instead.
Error is the error the RPC ended with. It is an error generated from status.Status and can be converted back to status.Status using status.FromError if non-nil.
IsClient indicates if this is from client side.
func ( *End) () bool { return .Client }

func ( *End) () {}
ConnStats contains stats information about connections.
type ConnStats interface {
IsClient returns true if this ConnStats is from client side.
	IsClient() bool
}
ConnBegin contains the stats of a connection when it is established.
Client is true if this ConnBegin is from client side.
IsClient indicates if this is from client side.
func ( *ConnBegin) () bool { return .Client }

func ( *ConnBegin) () {}
ConnEnd contains the stats of a connection when it ends.
Client is true if this ConnEnd is from client side.
IsClient indicates if this is from client side.
func ( *ConnEnd) () bool { return .Client }

func ( *ConnEnd) () {}

type incomingTagsKey struct{}
type outgoingTagsKey struct{}
SetTags attaches stats tagging data to the context, which will be sent in the outgoing RPC with the header grpc-tags-bin. Subsequent calls to SetTags will overwrite the values from earlier calls. NOTE: this is provided only for backward compatibility with existing clients and will likely be removed in an upcoming release. New uses should transmit this type of data using metadata with a different, non-reserved (i.e. does not begin with "grpc-") header name.
Tags returns the tags from the context for the inbound RPC. NOTE: this is provided only for backward compatibility with existing clients and will likely be removed in an upcoming release. New uses should transmit this type of data using metadata with a different, non-reserved (i.e. does not begin with "grpc-") header name.
func ( context.Context) []byte {
	,  := .Value(incomingTagsKey{}).([]byte)
	return 
}
SetIncomingTags attaches stats tagging data to the context, to be read by the application (not sent in outgoing RPCs). This is intended for gRPC-internal use ONLY.
OutgoingTags returns the tags from the context for the outbound RPC. This is intended for gRPC-internal use ONLY.
func ( context.Context) []byte {
	,  := .Value(outgoingTagsKey{}).([]byte)
	return 
}

type incomingTraceKey struct{}
type outgoingTraceKey struct{}
SetTrace attaches stats tagging data to the context, which will be sent in the outgoing RPC with the header grpc-trace-bin. Subsequent calls to SetTrace will overwrite the values from earlier calls. NOTE: this is provided only for backward compatibility with existing clients and will likely be removed in an upcoming release. New uses should transmit this type of data using metadata with a different, non-reserved (i.e. does not begin with "grpc-") header name.
Trace returns the trace from the context for the inbound RPC. NOTE: this is provided only for backward compatibility with existing clients and will likely be removed in an upcoming release. New uses should transmit this type of data using metadata with a different, non-reserved (i.e. does not begin with "grpc-") header name.
func ( context.Context) []byte {
	,  := .Value(incomingTraceKey{}).([]byte)
	return 
}
SetIncomingTrace attaches stats tagging data to the context, to be read by the application (not sent in outgoing RPCs). It is intended for gRPC-internal use.
OutgoingTrace returns the trace from the context for the outbound RPC. It is intended for gRPC-internal use.
func ( context.Context) []byte {
	,  := .Value(outgoingTraceKey{}).([]byte)
	return