diff --git a/protobuf/flow/execution/execution.proto b/protobuf/flow/execution/execution.proto index 93c75181d..2b32191b3 100644 --- a/protobuf/flow/execution/execution.proto +++ b/protobuf/flow/execution/execution.proto @@ -50,18 +50,22 @@ service ExecutionAPI { rpc GetTransactionResultsByBlockID(GetTransactionsByBlockIDRequest) returns (GetTransactionResultsResponse); - // GetTransactionErrorMessage gets the error messages of a failed transaction by id. + // GetTransactionErrorMessage gets the error messages of a failed transaction + // by id. rpc GetTransactionErrorMessage(GetTransactionErrorMessageRequest) - returns (GetTransactionErrorMessageResponse); + returns (GetTransactionErrorMessageResponse); - // GetTransactionErrorMessageByIndex gets the error messages of a failed transaction at the index. - rpc GetTransactionErrorMessageByIndex(GetTransactionErrorMessageByIndexRequest) - returns (GetTransactionErrorMessageResponse); + // GetTransactionErrorMessageByIndex gets the error messages of a failed + // transaction at the index. + rpc GetTransactionErrorMessageByIndex( + GetTransactionErrorMessageByIndexRequest) + returns (GetTransactionErrorMessageResponse); - // GetTransactionErrorMessagesByBlockID gets the error messages of all failed transactions in the - // block ordered by transaction index. - rpc GetTransactionErrorMessagesByBlockID(GetTransactionErrorMessagesByBlockIDRequest) - returns (GetTransactionErrorMessagesResponse); + // GetTransactionErrorMessagesByBlockID gets the error messages of all failed + // transactions in the block ordered by transaction index. + rpc GetTransactionErrorMessagesByBlockID( + GetTransactionErrorMessagesByBlockIDRequest) + returns (GetTransactionErrorMessagesResponse); // Registers @@ -75,9 +79,24 @@ service ExecutionAPI { // GetLatestBlockHeader gets the latest sealed or unsealed block header. rpc GetLatestBlockHeader(GetLatestBlockHeaderRequest) returns (BlockHeaderResponse); + // GetBlockHeaderByID gets a block header by ID. rpc GetBlockHeaderByID(GetBlockHeaderByIDRequest) returns (BlockHeaderResponse); + + // GetTransactionExecutionMetricsAfter gets the transaction execution metrics + // for blocks after the given block height. The blocks will be sorted by + // descending block height. + // If no data is available for the given block height, the response will be + // empty. The execution node will only store metrics for a limited number of + // blocks,  so the request may return an empty response if the requested + // block height is too far in the past. + // + // Errors: + // - No errors are expected. + rpc GetTransactionExecutionMetricsAfter( + GetTransactionExecutionMetricsAfterRequest) + returns (GetTransactionExecutionMetricsAfterResponse); } // Ping @@ -211,3 +230,49 @@ message GetBlockHeaderByIDRequest { message BlockHeaderResponse { entities.BlockHeader block = 1; } + + +// The request for GetTransactionExecutionMetricsAfter +message GetTransactionExecutionMetricsAfterRequest { + // Block height after which to get transaction execution metrics. + // this block height will not be included in the response. + uint64 block_height = 1; +} + +// The response for GetTransactionExecutionMetricsAfter +// The response contains the execution metrics for transactions in each block +// after the requested block height (block_height + 1). The execution node only keeps a limited +// number of blocks in memory, so the response may not contain metrics for all +// blocks. Only finalized and executed blocks will be in the response. +// The blocks are sorted by block height in descending order. +message GetTransactionExecutionMetricsAfterResponse { + // the execution effort weight of a computation kind + message ExecutionEffortWeight { + // computation kind id + uint64 kind = 1; + // the weight of the computation kind + uint64 weight = 2; + } + + // the data for one transaction + message Transaction { + // the transaction id + bytes transaction_id = 1; + // the execution time of the transaction in nanoseconds + uint64 execution_time = 2; + // the execution effort weights of the transaction + repeated ExecutionEffortWeight execution_effort_weights = 3; + } + + // the data for one block + message Result { + // the block height of the block + uint64 block_height = 1; + // the list of transactions in the block + repeated Transaction transactions = 2; + } + + // a list of results for each block sorted by block height in + // descending order + repeated Result results = 1; +} diff --git a/protobuf/go/flow/execution/execution.pb.go b/protobuf/go/flow/execution/execution.pb.go index 94bbbedb8..50e7200f1 100644 --- a/protobuf/go/flow/execution/execution.pb.go +++ b/protobuf/go/flow/execution/execution.pb.go @@ -1167,6 +1167,274 @@ func (m *BlockHeaderResponse) GetBlock() *entities.BlockHeader { return nil } +// The request for GetTransactionExecutionMetricsAfter +type GetTransactionExecutionMetricsAfterRequest struct { + // Block height after which to get transaction execution metrics. + // this block height will not be included in the response. + BlockHeight uint64 `protobuf:"varint,1,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *GetTransactionExecutionMetricsAfterRequest) Reset() { + *m = GetTransactionExecutionMetricsAfterRequest{} +} +func (m *GetTransactionExecutionMetricsAfterRequest) String() string { + return proto.CompactTextString(m) +} +func (*GetTransactionExecutionMetricsAfterRequest) ProtoMessage() {} +func (*GetTransactionExecutionMetricsAfterRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_699624211ed46c53, []int{23} +} + +func (m *GetTransactionExecutionMetricsAfterRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetTransactionExecutionMetricsAfterRequest.Unmarshal(m, b) +} +func (m *GetTransactionExecutionMetricsAfterRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetTransactionExecutionMetricsAfterRequest.Marshal(b, m, deterministic) +} +func (m *GetTransactionExecutionMetricsAfterRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetTransactionExecutionMetricsAfterRequest.Merge(m, src) +} +func (m *GetTransactionExecutionMetricsAfterRequest) XXX_Size() int { + return xxx_messageInfo_GetTransactionExecutionMetricsAfterRequest.Size(m) +} +func (m *GetTransactionExecutionMetricsAfterRequest) XXX_DiscardUnknown() { + xxx_messageInfo_GetTransactionExecutionMetricsAfterRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_GetTransactionExecutionMetricsAfterRequest proto.InternalMessageInfo + +func (m *GetTransactionExecutionMetricsAfterRequest) GetBlockHeight() uint64 { + if m != nil { + return m.BlockHeight + } + return 0 +} + +// The response for GetTransactionExecutionMetricsAfter +// The response contains the execution metrics for transactions in each block +// after the requested block height. The execution node only keeps a limited +// number of blocks in memory, so the response may not contain metrics for all +// blocks. Only finalized and executed blocks will be in the response. +// The blocks are sorted by block height in descending order. +type GetTransactionExecutionMetricsAfterResponse struct { + // a list of results for each block sorted by block height in + // descending order + Results []*GetTransactionExecutionMetricsAfterResponse_Result `protobuf:"bytes,1,rep,name=results,proto3" json:"results,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *GetTransactionExecutionMetricsAfterResponse) Reset() { + *m = GetTransactionExecutionMetricsAfterResponse{} +} +func (m *GetTransactionExecutionMetricsAfterResponse) String() string { + return proto.CompactTextString(m) +} +func (*GetTransactionExecutionMetricsAfterResponse) ProtoMessage() {} +func (*GetTransactionExecutionMetricsAfterResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_699624211ed46c53, []int{24} +} + +func (m *GetTransactionExecutionMetricsAfterResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetTransactionExecutionMetricsAfterResponse.Unmarshal(m, b) +} +func (m *GetTransactionExecutionMetricsAfterResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetTransactionExecutionMetricsAfterResponse.Marshal(b, m, deterministic) +} +func (m *GetTransactionExecutionMetricsAfterResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetTransactionExecutionMetricsAfterResponse.Merge(m, src) +} +func (m *GetTransactionExecutionMetricsAfterResponse) XXX_Size() int { + return xxx_messageInfo_GetTransactionExecutionMetricsAfterResponse.Size(m) +} +func (m *GetTransactionExecutionMetricsAfterResponse) XXX_DiscardUnknown() { + xxx_messageInfo_GetTransactionExecutionMetricsAfterResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_GetTransactionExecutionMetricsAfterResponse proto.InternalMessageInfo + +func (m *GetTransactionExecutionMetricsAfterResponse) GetResults() []*GetTransactionExecutionMetricsAfterResponse_Result { + if m != nil { + return m.Results + } + return nil +} + +// the execution effort weight of a computation kind +type GetTransactionExecutionMetricsAfterResponse_ExecutionEffortWeight struct { + // computation kind id + Kind uint64 `protobuf:"varint,1,opt,name=kind,proto3" json:"kind,omitempty"` + // the weight of the computation kind + Weight uint64 `protobuf:"varint,2,opt,name=weight,proto3" json:"weight,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *GetTransactionExecutionMetricsAfterResponse_ExecutionEffortWeight) Reset() { + *m = GetTransactionExecutionMetricsAfterResponse_ExecutionEffortWeight{} +} +func (m *GetTransactionExecutionMetricsAfterResponse_ExecutionEffortWeight) String() string { + return proto.CompactTextString(m) +} +func (*GetTransactionExecutionMetricsAfterResponse_ExecutionEffortWeight) ProtoMessage() {} +func (*GetTransactionExecutionMetricsAfterResponse_ExecutionEffortWeight) Descriptor() ([]byte, []int) { + return fileDescriptor_699624211ed46c53, []int{24, 0} +} + +func (m *GetTransactionExecutionMetricsAfterResponse_ExecutionEffortWeight) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetTransactionExecutionMetricsAfterResponse_ExecutionEffortWeight.Unmarshal(m, b) +} +func (m *GetTransactionExecutionMetricsAfterResponse_ExecutionEffortWeight) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetTransactionExecutionMetricsAfterResponse_ExecutionEffortWeight.Marshal(b, m, deterministic) +} +func (m *GetTransactionExecutionMetricsAfterResponse_ExecutionEffortWeight) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetTransactionExecutionMetricsAfterResponse_ExecutionEffortWeight.Merge(m, src) +} +func (m *GetTransactionExecutionMetricsAfterResponse_ExecutionEffortWeight) XXX_Size() int { + return xxx_messageInfo_GetTransactionExecutionMetricsAfterResponse_ExecutionEffortWeight.Size(m) +} +func (m *GetTransactionExecutionMetricsAfterResponse_ExecutionEffortWeight) XXX_DiscardUnknown() { + xxx_messageInfo_GetTransactionExecutionMetricsAfterResponse_ExecutionEffortWeight.DiscardUnknown(m) +} + +var xxx_messageInfo_GetTransactionExecutionMetricsAfterResponse_ExecutionEffortWeight proto.InternalMessageInfo + +func (m *GetTransactionExecutionMetricsAfterResponse_ExecutionEffortWeight) GetKind() uint64 { + if m != nil { + return m.Kind + } + return 0 +} + +func (m *GetTransactionExecutionMetricsAfterResponse_ExecutionEffortWeight) GetWeight() uint64 { + if m != nil { + return m.Weight + } + return 0 +} + +// the data for one transaction +type GetTransactionExecutionMetricsAfterResponse_Transaction struct { + // the transaction id + TransactionId []byte `protobuf:"bytes,1,opt,name=transaction_id,json=transactionId,proto3" json:"transaction_id,omitempty"` + // the execution time of the transaction in nanoseconds + ExecutionTime uint64 `protobuf:"varint,2,opt,name=execution_time,json=executionTime,proto3" json:"execution_time,omitempty"` + // the execution effort weights of the transaction + ExecutionEffortWeights []*GetTransactionExecutionMetricsAfterResponse_ExecutionEffortWeight `protobuf:"bytes,3,rep,name=execution_effort_weights,json=executionEffortWeights,proto3" json:"execution_effort_weights,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *GetTransactionExecutionMetricsAfterResponse_Transaction) Reset() { + *m = GetTransactionExecutionMetricsAfterResponse_Transaction{} +} +func (m *GetTransactionExecutionMetricsAfterResponse_Transaction) String() string { + return proto.CompactTextString(m) +} +func (*GetTransactionExecutionMetricsAfterResponse_Transaction) ProtoMessage() {} +func (*GetTransactionExecutionMetricsAfterResponse_Transaction) Descriptor() ([]byte, []int) { + return fileDescriptor_699624211ed46c53, []int{24, 1} +} + +func (m *GetTransactionExecutionMetricsAfterResponse_Transaction) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetTransactionExecutionMetricsAfterResponse_Transaction.Unmarshal(m, b) +} +func (m *GetTransactionExecutionMetricsAfterResponse_Transaction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetTransactionExecutionMetricsAfterResponse_Transaction.Marshal(b, m, deterministic) +} +func (m *GetTransactionExecutionMetricsAfterResponse_Transaction) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetTransactionExecutionMetricsAfterResponse_Transaction.Merge(m, src) +} +func (m *GetTransactionExecutionMetricsAfterResponse_Transaction) XXX_Size() int { + return xxx_messageInfo_GetTransactionExecutionMetricsAfterResponse_Transaction.Size(m) +} +func (m *GetTransactionExecutionMetricsAfterResponse_Transaction) XXX_DiscardUnknown() { + xxx_messageInfo_GetTransactionExecutionMetricsAfterResponse_Transaction.DiscardUnknown(m) +} + +var xxx_messageInfo_GetTransactionExecutionMetricsAfterResponse_Transaction proto.InternalMessageInfo + +func (m *GetTransactionExecutionMetricsAfterResponse_Transaction) GetTransactionId() []byte { + if m != nil { + return m.TransactionId + } + return nil +} + +func (m *GetTransactionExecutionMetricsAfterResponse_Transaction) GetExecutionTime() uint64 { + if m != nil { + return m.ExecutionTime + } + return 0 +} + +func (m *GetTransactionExecutionMetricsAfterResponse_Transaction) GetExecutionEffortWeights() []*GetTransactionExecutionMetricsAfterResponse_ExecutionEffortWeight { + if m != nil { + return m.ExecutionEffortWeights + } + return nil +} + +// the data for one block +type GetTransactionExecutionMetricsAfterResponse_Result struct { + // the block height of the block + BlockHeight uint64 `protobuf:"varint,1,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"` + // the list of transactions in the block + Transactions []*GetTransactionExecutionMetricsAfterResponse_Transaction `protobuf:"bytes,2,rep,name=transactions,proto3" json:"transactions,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *GetTransactionExecutionMetricsAfterResponse_Result) Reset() { + *m = GetTransactionExecutionMetricsAfterResponse_Result{} +} +func (m *GetTransactionExecutionMetricsAfterResponse_Result) String() string { + return proto.CompactTextString(m) +} +func (*GetTransactionExecutionMetricsAfterResponse_Result) ProtoMessage() {} +func (*GetTransactionExecutionMetricsAfterResponse_Result) Descriptor() ([]byte, []int) { + return fileDescriptor_699624211ed46c53, []int{24, 2} +} + +func (m *GetTransactionExecutionMetricsAfterResponse_Result) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetTransactionExecutionMetricsAfterResponse_Result.Unmarshal(m, b) +} +func (m *GetTransactionExecutionMetricsAfterResponse_Result) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetTransactionExecutionMetricsAfterResponse_Result.Marshal(b, m, deterministic) +} +func (m *GetTransactionExecutionMetricsAfterResponse_Result) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetTransactionExecutionMetricsAfterResponse_Result.Merge(m, src) +} +func (m *GetTransactionExecutionMetricsAfterResponse_Result) XXX_Size() int { + return xxx_messageInfo_GetTransactionExecutionMetricsAfterResponse_Result.Size(m) +} +func (m *GetTransactionExecutionMetricsAfterResponse_Result) XXX_DiscardUnknown() { + xxx_messageInfo_GetTransactionExecutionMetricsAfterResponse_Result.DiscardUnknown(m) +} + +var xxx_messageInfo_GetTransactionExecutionMetricsAfterResponse_Result proto.InternalMessageInfo + +func (m *GetTransactionExecutionMetricsAfterResponse_Result) GetBlockHeight() uint64 { + if m != nil { + return m.BlockHeight + } + return 0 +} + +func (m *GetTransactionExecutionMetricsAfterResponse_Result) GetTransactions() []*GetTransactionExecutionMetricsAfterResponse_Transaction { + if m != nil { + return m.Transactions + } + return nil +} + func init() { proto.RegisterType((*PingRequest)(nil), "flow.execution.PingRequest") proto.RegisterType((*PingResponse)(nil), "flow.execution.PingResponse") @@ -1193,81 +1461,96 @@ func init() { proto.RegisterType((*GetLatestBlockHeaderRequest)(nil), "flow.execution.GetLatestBlockHeaderRequest") proto.RegisterType((*GetBlockHeaderByIDRequest)(nil), "flow.execution.GetBlockHeaderByIDRequest") proto.RegisterType((*BlockHeaderResponse)(nil), "flow.execution.BlockHeaderResponse") + proto.RegisterType((*GetTransactionExecutionMetricsAfterRequest)(nil), "flow.execution.GetTransactionExecutionMetricsAfterRequest") + proto.RegisterType((*GetTransactionExecutionMetricsAfterResponse)(nil), "flow.execution.GetTransactionExecutionMetricsAfterResponse") + proto.RegisterType((*GetTransactionExecutionMetricsAfterResponse_ExecutionEffortWeight)(nil), "flow.execution.GetTransactionExecutionMetricsAfterResponse.ExecutionEffortWeight") + proto.RegisterType((*GetTransactionExecutionMetricsAfterResponse_Transaction)(nil), "flow.execution.GetTransactionExecutionMetricsAfterResponse.Transaction") + proto.RegisterType((*GetTransactionExecutionMetricsAfterResponse_Result)(nil), "flow.execution.GetTransactionExecutionMetricsAfterResponse.Result") } func init() { proto.RegisterFile("flow/execution/execution.proto", fileDescriptor_699624211ed46c53) } var fileDescriptor_699624211ed46c53 = []byte{ - // 1121 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0xdd, 0x72, 0xdb, 0x44, - 0x14, 0x1e, 0x25, 0x4e, 0x62, 0x1f, 0xff, 0x4c, 0xd9, 0x78, 0x32, 0x8e, 0x9c, 0xbf, 0x2a, 0x74, - 0x26, 0xe0, 0x54, 0xa6, 0x0e, 0x17, 0x4c, 0xe1, 0x26, 0x06, 0x93, 0x18, 0x28, 0x29, 0x6a, 0x61, - 0x06, 0x18, 0xc6, 0xa3, 0x48, 0x5b, 0x47, 0xd4, 0x91, 0x5c, 0xed, 0x2a, 0xa9, 0xef, 0x98, 0xe1, - 0x86, 0x5b, 0x6e, 0x18, 0x86, 0x87, 0xe1, 0x3d, 0x78, 0x02, 0x5e, 0x83, 0xd1, 0xee, 0x4a, 0xb6, - 0xec, 0x95, 0x2a, 0xb7, 0xf4, 0x26, 0xe3, 0x3d, 0x7b, 0xce, 0xf9, 0xce, 0x9e, 0xff, 0x08, 0xf6, - 0x9e, 0x8d, 0xbc, 0xdb, 0x36, 0x7e, 0x89, 0xad, 0x80, 0x3a, 0x9e, 0x3b, 0xfd, 0xa5, 0x8f, 0x7d, - 0x8f, 0x7a, 0xa8, 0x16, 0xde, 0xeb, 0x31, 0x55, 0x6d, 0x72, 0x7e, 0x97, 0x3a, 0xd4, 0xc1, 0xa4, - 0x6d, 0x5a, 0x96, 0x17, 0xb8, 0x94, 0x33, 0xab, 0x07, 0xc9, 0xcb, 0xcb, 0x91, 0x67, 0x3d, 0x1f, - 0x5c, 0x61, 0xd3, 0xc6, 0xbe, 0xe0, 0xd8, 0x4e, 0x72, 0xe0, 0x1b, 0x1c, 0x0b, 0xef, 0x27, 0xaf, - 0xa8, 0x6f, 0xba, 0xc4, 0xb4, 0xa6, 0xa6, 0x68, 0x55, 0x28, 0x3f, 0x76, 0xdc, 0xa1, 0x81, 0x5f, - 0x04, 0x98, 0x50, 0xad, 0x06, 0x15, 0x7e, 0x24, 0x63, 0xcf, 0x25, 0x58, 0xfb, 0x06, 0xd4, 0x33, - 0x4c, 0x4f, 0xb9, 0x41, 0xa7, 0xb4, 0x1b, 0x82, 0xf7, 0x3f, 0x13, 0xdc, 0x68, 0x1b, 0x8a, 0xdc, - 0x1c, 0xc7, 0x6e, 0x28, 0x07, 0xca, 0x51, 0xc5, 0xd8, 0x60, 0xe7, 0xbe, 0x8d, 0x1a, 0xb0, 0x61, - 0xda, 0xb6, 0x8f, 0x09, 0x69, 0xac, 0xf0, 0x1b, 0x71, 0xd4, 0x2e, 0xa0, 0x29, 0x55, 0xc9, 0x11, - 0xd1, 0x07, 0xb0, 0x21, 0xde, 0xcf, 0x54, 0x96, 0x3b, 0x5b, 0x3a, 0xf7, 0x96, 0x78, 0x83, 0x2e, - 0x24, 0x8d, 0x88, 0x4d, 0x1b, 0xc3, 0x6e, 0x8f, 0xb9, 0x12, 0x3f, 0xb1, 0x7c, 0x67, 0xbc, 0x94, - 0x99, 0x5b, 0xb0, 0x4e, 0x98, 0x90, 0xb0, 0x52, 0x9c, 0xd0, 0x0e, 0x94, 0x4c, 0x7f, 0x18, 0x5c, - 0x63, 0x97, 0x92, 0xc6, 0xea, 0xc1, 0xea, 0x51, 0xc5, 0x98, 0x12, 0x34, 0x0b, 0xf6, 0xd2, 0x10, - 0xc5, 0x2b, 0xea, 0xb0, 0x76, 0x63, 0x8e, 0x02, 0x2c, 0xf0, 0xf8, 0x01, 0xb5, 0xe0, 0x1d, 0xcb, - 0xbb, 0x1e, 0x07, 0xd4, 0x0c, 0x23, 0x30, 0x08, 0x88, 0x39, 0xc4, 0x0c, 0xb8, 0x60, 0xdc, 0x99, - 0xb9, 0xf8, 0x36, 0xa4, 0x6b, 0x7f, 0xaf, 0xc0, 0xce, 0x19, 0xa6, 0xbd, 0x30, 0x9a, 0xe4, 0x73, - 0xcf, 0x17, 0x10, 0x24, 0xc6, 0x78, 0x04, 0x1b, 0x3e, 0x26, 0xc1, 0x88, 0x92, 0x86, 0x72, 0xb0, - 0x7a, 0x54, 0xee, 0x9c, 0xe8, 0xc9, 0xbc, 0xd2, 0xb3, 0xc4, 0x75, 0x83, 0xc9, 0x1a, 0x91, 0x0e, - 0xf4, 0x3d, 0x6c, 0xb1, 0xcc, 0x19, 0x60, 0xd7, 0xf2, 0x6c, 0xc7, 0x1d, 0x0e, 0x6e, 0xb0, 0x4f, - 0x1c, 0xcf, 0x65, 0x16, 0xd6, 0x3a, 0x87, 0x73, 0x71, 0x60, 0x9a, 0x7b, 0x82, 0xf7, 0x3b, 0xce, - 0x6a, 0xd4, 0xb1, 0x84, 0xaa, 0x52, 0x58, 0xe7, 0x68, 0x59, 0xa1, 0xb8, 0x0b, 0x95, 0x28, 0xb7, - 0x9d, 0xe1, 0x15, 0x15, 0x7e, 0x29, 0x33, 0xda, 0x39, 0x23, 0xa1, 0x63, 0x58, 0x67, 0xfa, 0x79, - 0x48, 0xca, 0x9d, 0xba, 0xcc, 0x24, 0x43, 0xf0, 0x68, 0x5f, 0xb3, 0x44, 0x93, 0x38, 0x80, 0x67, - 0x05, 0x82, 0x02, 0x9d, 0x8c, 0x79, 0x84, 0x4a, 0x06, 0xfb, 0x8d, 0x9a, 0x50, 0x8a, 0xcc, 0x0b, - 0xf3, 0x36, 0x0c, 0x7b, 0x51, 0xd8, 0x47, 0xb4, 0x01, 0xd3, 0xf7, 0x74, 0x5a, 0x42, 0xc2, 0x83, - 0xaf, 0xce, 0xb2, 0x7b, 0x50, 0x9b, 0xa9, 0xbc, 0x90, 0x81, 0x67, 0x5b, 0x75, 0x86, 0xda, 0xb7, - 0xb5, 0x0b, 0x16, 0xf0, 0x19, 0x80, 0xee, 0xa4, 0xef, 0xda, 0xf8, 0x65, 0x0e, 0x84, 0x3a, 0xac, - 0x39, 0x21, 0x2b, 0x53, 0x5c, 0x35, 0xf8, 0x41, 0xfb, 0x6b, 0x65, 0x5e, 0x63, 0x64, 0xb2, 0x48, - 0xa1, 0x7d, 0x28, 0x13, 0x6a, 0xd2, 0x80, 0x0c, 0x2c, 0xcf, 0xe6, 0xae, 0xa8, 0x1a, 0xc0, 0x49, - 0x9f, 0x7a, 0x36, 0x46, 0x87, 0x50, 0xc5, 0xbe, 0xef, 0xf9, 0x83, 0x6b, 0x4c, 0xe2, 0x6c, 0x2d, - 0x19, 0x15, 0x46, 0x7c, 0xc4, 0x69, 0xcb, 0x85, 0x25, 0x23, 0xcf, 0x0a, 0x6f, 0x98, 0x67, 0xf2, - 0xfa, 0x5a, 0x4b, 0xa9, 0xaf, 0x4f, 0x60, 0x3f, 0xe9, 0x1b, 0xd2, 0x9d, 0xe4, 0x6e, 0x1c, 0xda, - 0x3f, 0x0a, 0xec, 0xca, 0x5c, 0x3b, 0x2d, 0xcf, 0x9f, 0x60, 0x73, 0x36, 0xe8, 0xc9, 0x52, 0x3d, - 0x96, 0x94, 0x6a, 0x6a, 0x98, 0x0c, 0x44, 0x17, 0x60, 0xde, 0x62, 0xb9, 0x6a, 0x18, 0xee, 0x26, - 0xcd, 0xe9, 0xcd, 0x44, 0xfb, 0xff, 0x4b, 0xf7, 0x1f, 0xe1, 0x28, 0x1d, 0xe6, 0x4d, 0x53, 0x7f, - 0x0c, 0x5a, 0xd6, 0x1b, 0x44, 0x8c, 0x16, 0x2d, 0x55, 0x24, 0x96, 0xe6, 0xaa, 0x02, 0xed, 0x1c, - 0x5a, 0xe9, 0x88, 0x4b, 0xe5, 0xd6, 0xbf, 0x0a, 0x1c, 0x66, 0xa8, 0x8a, 0xad, 0x7f, 0x3a, 0x3f, - 0x00, 0x1e, 0x66, 0x67, 0x95, 0x54, 0xcb, 0xfc, 0x1c, 0x50, 0x7f, 0x8e, 0x9b, 0x75, 0x4e, 0xef, - 0x48, 0x03, 0xb0, 0xe8, 0xb3, 0x55, 0x89, 0xcf, 0x7e, 0x53, 0x58, 0x4f, 0x35, 0xf0, 0xd0, 0x21, - 0x14, 0xfb, 0xcb, 0x4c, 0xee, 0x7b, 0x50, 0xf3, 0x85, 0xd8, 0xc0, 0xbb, 0x75, 0xb1, 0x1f, 0x25, - 0x59, 0x44, 0xbd, 0x08, 0x89, 0xe1, 0x54, 0x89, 0xd9, 0x9e, 0xe3, 0x09, 0xeb, 0x31, 0x15, 0xa3, - 0x1c, 0xd1, 0xbe, 0xc4, 0x93, 0x2f, 0x0a, 0xc5, 0xd5, 0x3b, 0x05, 0xed, 0x43, 0xd6, 0x2a, 0x25, - 0x96, 0x64, 0x4d, 0x74, 0xed, 0x21, 0xb3, 0xff, 0x2b, 0x93, 0x62, 0xc2, 0x25, 0xce, 0xd9, 0x62, - 0x16, 0xd9, 0xdf, 0x84, 0x92, 0x43, 0x06, 0x04, 0x9b, 0x23, 0xcc, 0x1f, 0x50, 0x34, 0x8a, 0x0e, - 0x79, 0xc2, 0xce, 0x5a, 0x0b, 0xb6, 0xcf, 0xf0, 0xac, 0x54, 0x77, 0x32, 0x7d, 0x79, 0x0d, 0x56, - 0xe2, 0x37, 0xaf, 0x38, 0xb6, 0x76, 0x06, 0x9b, 0x09, 0xfd, 0xf1, 0xb6, 0xb4, 0xc6, 0x1c, 0x22, - 0x76, 0x25, 0x75, 0xae, 0xe8, 0x67, 0x45, 0x38, 0x63, 0xe7, 0x8f, 0x0a, 0x54, 0x7a, 0x51, 0x82, - 0x9c, 0x3e, 0xee, 0xa3, 0x53, 0x28, 0x84, 0x2b, 0x1f, 0x6a, 0xce, 0x27, 0xcf, 0xcc, 0x5e, 0xa8, - 0xee, 0xc8, 0x2f, 0x85, 0x15, 0x2e, 0x6c, 0x4a, 0x56, 0x3a, 0xf4, 0xbe, 0x24, 0x1d, 0x53, 0x56, - 0x49, 0xb5, 0x95, 0x8b, 0x57, 0xe0, 0xdd, 0xc2, 0x96, 0x7c, 0xff, 0x42, 0xf7, 0xe7, 0xd5, 0x64, - 0x6e, 0x86, 0xaa, 0x9e, 0x97, 0x5d, 0x00, 0xbf, 0x80, 0xba, 0x6c, 0xa5, 0x40, 0xad, 0x7c, 0x9b, - 0x17, 0x07, 0x3d, 0x5e, 0x66, 0x4d, 0x13, 0x90, 0x0b, 0xb3, 0x41, 0x0a, 0x99, 0xb6, 0x9b, 0xa8, - 0x4b, 0x8d, 0x1b, 0x34, 0x91, 0x2f, 0x3a, 0xa2, 0x25, 0xa3, 0x57, 0x28, 0x4b, 0x76, 0xee, 0x25, - 0xa1, 0x7f, 0x51, 0x60, 0x4f, 0x3a, 0x56, 0xe3, 0xfe, 0x89, 0xda, 0xd9, 0x0a, 0x17, 0x3a, 0xad, - 0x7a, 0x3f, 0x8f, 0x05, 0x53, 0x87, 0xff, 0xaa, 0xb0, 0xff, 0x79, 0x52, 0xfa, 0x26, 0x7a, 0x90, - 0xbf, 0xc7, 0x46, 0x06, 0x74, 0x96, 0x11, 0x11, 0x56, 0xfc, 0xae, 0x64, 0x0d, 0xe1, 0x28, 0x14, - 0x1f, 0xe5, 0xd7, 0x3c, 0x17, 0x96, 0xd7, 0xb1, 0xe9, 0x4f, 0x05, 0xde, 0xcd, 0x33, 0xe2, 0xd0, - 0xc7, 0x4b, 0xcc, 0xa1, 0x85, 0x70, 0x9d, 0xbc, 0xc6, 0x10, 0x13, 0x55, 0xb2, 0xd0, 0xbd, 0xa5, - 0x55, 0x92, 0x36, 0x6d, 0xa4, 0xa9, 0x9a, 0x3e, 0x10, 0xae, 0x18, 0xe4, 0x42, 0xeb, 0x97, 0x42, - 0xa6, 0x0d, 0x08, 0xf5, 0x70, 0x9e, 0x59, 0xd6, 0xe4, 0x6d, 0x40, 0x8b, 0x83, 0x02, 0xbd, 0x27, - 0xc1, 0x91, 0x0f, 0x93, 0x5c, 0x28, 0x5d, 0x03, 0x76, 0x3d, 0x7f, 0xa8, 0x7b, 0x2e, 0xe3, 0x65, - 0x5f, 0x07, 0x2e, 0x83, 0x67, 0x53, 0xa1, 0x1f, 0x1e, 0x0c, 0x1d, 0x7a, 0x15, 0x5c, 0xea, 0x96, - 0x77, 0xdd, 0xe6, 0x5c, 0x6d, 0xf6, 0x27, 0x62, 0x6d, 0x0f, 0xbd, 0x76, 0xf2, 0xc3, 0xc7, 0xe5, - 0x3a, 0xbb, 0x3b, 0xf9, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x0d, 0x1a, 0xb3, 0xeb, 0x11, 0x11, 0x00, - 0x00, + // 1296 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0x5b, 0x4f, 0xe3, 0xc6, + 0x17, 0x97, 0x21, 0xdc, 0x4e, 0x2e, 0xda, 0xff, 0xc0, 0x1f, 0x05, 0x73, 0x5d, 0x53, 0x24, 0xba, + 0xb0, 0x49, 0x37, 0xf4, 0xa1, 0x62, 0xfb, 0x42, 0xb6, 0x14, 0x68, 0x4b, 0xd9, 0xf5, 0xd2, 0x56, + 0xbd, 0x29, 0x32, 0xf6, 0x10, 0x5c, 0x88, 0x9d, 0xf5, 0x4c, 0x60, 0xf3, 0x56, 0xa9, 0x2f, 0x95, + 0xfa, 0xd4, 0xb7, 0x55, 0x1f, 0xfa, 0x35, 0xfa, 0xd6, 0xaf, 0x51, 0xf5, 0x13, 0x54, 0xfd, 0x16, + 0x95, 0x67, 0xc6, 0x8e, 0x63, 0x8f, 0x8d, 0x03, 0xed, 0x0b, 0xca, 0x9c, 0x39, 0x73, 0xce, 0x6f, + 0xce, 0xc5, 0xe7, 0x37, 0xc0, 0xca, 0xf9, 0x95, 0x7b, 0x53, 0xc7, 0xaf, 0xb1, 0xd9, 0xa3, 0xb6, + 0xeb, 0x0c, 0x7e, 0xd5, 0xba, 0x9e, 0x4b, 0x5d, 0x54, 0xf1, 0xf7, 0x6b, 0xa1, 0x54, 0x5d, 0xe4, + 0xfa, 0x0e, 0xb5, 0xa9, 0x8d, 0x49, 0xdd, 0x30, 0x4d, 0xb7, 0xe7, 0x50, 0xae, 0xac, 0xae, 0x0d, + 0x6f, 0x9e, 0x5d, 0xb9, 0xe6, 0x65, 0xeb, 0x02, 0x1b, 0x16, 0xf6, 0x84, 0xc6, 0xc2, 0xb0, 0x06, + 0xbe, 0xc6, 0xe1, 0xe1, 0xd5, 0xe1, 0x2d, 0xea, 0x19, 0x0e, 0x31, 0xcc, 0x01, 0x14, 0xad, 0x0c, + 0xc5, 0xe7, 0xb6, 0xd3, 0xd6, 0xf1, 0xab, 0x1e, 0x26, 0x54, 0xab, 0x40, 0x89, 0x2f, 0x49, 0xd7, + 0x75, 0x08, 0xd6, 0x5e, 0x80, 0x7a, 0x80, 0xe9, 0x1e, 0x07, 0xb4, 0x47, 0x9b, 0xbe, 0xf3, 0xa3, + 0x0f, 0x84, 0x36, 0x5a, 0x80, 0x69, 0x0e, 0xc7, 0xb6, 0xaa, 0xca, 0x9a, 0xb2, 0x59, 0xd2, 0xa7, + 0xd8, 0xfa, 0xc8, 0x42, 0x55, 0x98, 0x32, 0x2c, 0xcb, 0xc3, 0x84, 0x54, 0xc7, 0xf8, 0x8e, 0x58, + 0x6a, 0x27, 0xb0, 0x28, 0x35, 0xc9, 0x3d, 0xa2, 0x77, 0x60, 0x4a, 0xdc, 0x9f, 0x99, 0x2c, 0x36, + 0xe6, 0x6b, 0x3c, 0x5a, 0xe2, 0x0e, 0x35, 0x71, 0x52, 0x0f, 0xd4, 0xb4, 0x2e, 0x2c, 0xef, 0xb3, + 0x50, 0xe2, 0x97, 0xa6, 0x67, 0x77, 0x47, 0x82, 0x39, 0x0f, 0x93, 0x84, 0x1d, 0x12, 0x28, 0xc5, + 0x0a, 0x2d, 0xc1, 0x8c, 0xe1, 0xb5, 0x7b, 0x1d, 0xec, 0x50, 0x52, 0x1d, 0x5f, 0x1b, 0xdf, 0x2c, + 0xe9, 0x03, 0x81, 0x66, 0xc2, 0x4a, 0x9a, 0x47, 0x71, 0x8b, 0x39, 0x98, 0xb8, 0x36, 0xae, 0x7a, + 0x58, 0xf8, 0xe3, 0x0b, 0xb4, 0x05, 0xff, 0x33, 0xdd, 0x4e, 0xb7, 0x47, 0x0d, 0x3f, 0x03, 0xad, + 0x1e, 0x31, 0xda, 0x98, 0x39, 0x2e, 0xe8, 0x0f, 0x22, 0x1b, 0x9f, 0xf9, 0x72, 0xed, 0xf7, 0x31, + 0x58, 0x3a, 0xc0, 0x74, 0xdf, 0xcf, 0x26, 0xf9, 0xd0, 0xf5, 0x84, 0x0b, 0x12, 0xfa, 0x38, 0x86, + 0x29, 0x0f, 0x93, 0xde, 0x15, 0x25, 0x55, 0x65, 0x6d, 0x7c, 0xb3, 0xd8, 0xd8, 0xa9, 0x0d, 0xd7, + 0x55, 0x2d, 0xeb, 0x78, 0x4d, 0x67, 0x67, 0xf5, 0xc0, 0x06, 0xfa, 0x12, 0xe6, 0x59, 0xe5, 0xb4, + 0xb0, 0x63, 0xba, 0x96, 0xed, 0xb4, 0x5b, 0xd7, 0xd8, 0x23, 0xb6, 0xeb, 0x30, 0x84, 0x95, 0xc6, + 0x7a, 0x2c, 0x0f, 0xcc, 0xf2, 0xbe, 0xd0, 0xfd, 0x9c, 0xab, 0xea, 0x73, 0x58, 0x22, 0x55, 0x29, + 0x4c, 0x72, 0x6f, 0x59, 0xa9, 0x78, 0x08, 0xa5, 0xa0, 0xb6, 0xed, 0xf6, 0x05, 0x15, 0x71, 0x29, + 0x32, 0xd9, 0x21, 0x13, 0xa1, 0x6d, 0x98, 0x64, 0xf6, 0x79, 0x4a, 0x8a, 0x8d, 0x39, 0x19, 0x24, + 0x5d, 0xe8, 0x68, 0x9f, 0xb2, 0x42, 0x93, 0x04, 0x80, 0x57, 0x05, 0x82, 0x02, 0xed, 0x77, 0x79, + 0x86, 0x66, 0x74, 0xf6, 0x1b, 0x2d, 0xc2, 0x4c, 0x00, 0xcf, 0xaf, 0x5b, 0x3f, 0xed, 0xd3, 0x02, + 0x1f, 0xd1, 0x5a, 0xcc, 0xde, 0xe9, 0xa0, 0x85, 0x44, 0x04, 0x6f, 0xaf, 0xb2, 0x0d, 0xa8, 0x44, + 0x3a, 0xcf, 0x57, 0xe0, 0xd5, 0x56, 0x8e, 0x48, 0x8f, 0x2c, 0xed, 0x84, 0x25, 0x3c, 0xe2, 0xa0, + 0xd9, 0x3f, 0x72, 0x2c, 0xfc, 0x3a, 0x87, 0x87, 0x39, 0x98, 0xb0, 0x7d, 0x55, 0x66, 0xb8, 0xac, + 0xf3, 0x85, 0xf6, 0xcb, 0x58, 0xdc, 0x62, 0x00, 0x59, 0x94, 0xd0, 0x2a, 0x14, 0x09, 0x35, 0x68, + 0x8f, 0xb4, 0x4c, 0xd7, 0xe2, 0xa1, 0x28, 0xeb, 0xc0, 0x45, 0xcf, 0x5c, 0x0b, 0xa3, 0x75, 0x28, + 0x63, 0xcf, 0x73, 0xbd, 0x56, 0x07, 0x93, 0xb0, 0x5a, 0x67, 0xf4, 0x12, 0x13, 0x1e, 0x73, 0xd9, + 0x68, 0x69, 0xc9, 0xa8, 0xb3, 0xc2, 0x3d, 0xeb, 0x4c, 0xde, 0x5f, 0x13, 0x29, 0xfd, 0xf5, 0x3e, + 0xac, 0x0e, 0xc7, 0x86, 0x34, 0xfb, 0xb9, 0x3f, 0x1c, 0xda, 0x9f, 0x0a, 0x2c, 0xcb, 0x42, 0x3b, + 0x68, 0xcf, 0x6f, 0x61, 0x36, 0x9a, 0xf4, 0xe1, 0x56, 0xdd, 0x96, 0xb4, 0x6a, 0x6a, 0x9a, 0x74, + 0x44, 0x13, 0x6e, 0xfe, 0xc3, 0x76, 0xd5, 0x30, 0x3c, 0x1c, 0x86, 0xb3, 0x1f, 0xc9, 0xf6, 0xbf, + 0x57, 0xee, 0x5f, 0xc3, 0x66, 0xba, 0x9b, 0xfb, 0x96, 0x7e, 0x17, 0xb4, 0xac, 0x3b, 0x88, 0x1c, + 0x25, 0x91, 0x2a, 0x12, 0xa4, 0xb9, 0xba, 0x40, 0x3b, 0x84, 0xad, 0x74, 0x8f, 0x23, 0xd5, 0xd6, + 0x5f, 0x0a, 0xac, 0x67, 0x98, 0x0a, 0xd1, 0x9f, 0xc6, 0x07, 0xc0, 0x6e, 0x76, 0x55, 0x49, 0xad, + 0xc4, 0xe7, 0x80, 0xfa, 0x5d, 0xf8, 0xb1, 0xce, 0x19, 0x1d, 0x69, 0x02, 0x92, 0x31, 0x1b, 0x97, + 0xc4, 0xec, 0x47, 0x85, 0x7d, 0x53, 0x75, 0xdc, 0xb6, 0x09, 0xc5, 0xde, 0x28, 0x93, 0x7b, 0x03, + 0x2a, 0x9e, 0x38, 0xd6, 0x72, 0x6f, 0x1c, 0xec, 0x05, 0x45, 0x16, 0x48, 0x4f, 0x7c, 0xa1, 0x3f, + 0x55, 0x42, 0xb5, 0x4b, 0xdc, 0x67, 0xdf, 0x98, 0x92, 0x5e, 0x0c, 0x64, 0x1f, 0xe3, 0xfe, 0x47, + 0x85, 0xe9, 0xf1, 0x07, 0x05, 0xed, 0x5d, 0xf6, 0xa9, 0x94, 0x20, 0xc9, 0x9a, 0xe8, 0xda, 0x2e, + 0xc3, 0xff, 0x89, 0x41, 0x31, 0xe1, 0x27, 0x0e, 0x19, 0x31, 0x0b, 0xf0, 0x2f, 0xc2, 0x8c, 0x4d, + 0x5a, 0x04, 0x1b, 0x57, 0x98, 0x5f, 0x60, 0x5a, 0x9f, 0xb6, 0xc9, 0x4b, 0xb6, 0xd6, 0xb6, 0x60, + 0xe1, 0x00, 0x47, 0x4f, 0x35, 0xfb, 0x83, 0x9b, 0x57, 0x60, 0x2c, 0xbc, 0xf3, 0x98, 0x6d, 0x69, + 0x07, 0x30, 0x3b, 0x64, 0x3f, 0x64, 0x4b, 0x13, 0x2c, 0x20, 0x82, 0x2b, 0xa9, 0xb1, 0xa6, 0x8f, + 0x1e, 0xe1, 0x8a, 0xda, 0x09, 0x3c, 0x8a, 0x55, 0x45, 0x50, 0x2d, 0xc7, 0x98, 0x7a, 0xb6, 0x49, + 0xf6, 0xce, 0xe9, 0xe0, 0x02, 0xf1, 0xa1, 0xac, 0x24, 0x86, 0xb2, 0xf6, 0x47, 0x21, 0x51, 0xf8, + 0x72, 0x8b, 0x02, 0xf2, 0x37, 0xf1, 0xaa, 0x6d, 0xde, 0x52, 0xb5, 0x59, 0xd6, 0x12, 0xd5, 0xfb, + 0x0c, 0xfe, 0x1f, 0x1e, 0xd8, 0x3f, 0x3f, 0x77, 0x3d, 0xfa, 0x05, 0xe7, 0x0e, 0x08, 0x0a, 0x97, + 0xb6, 0x63, 0x89, 0x1b, 0xb0, 0xdf, 0x3e, 0xfb, 0xbb, 0x89, 0x92, 0x0d, 0xb1, 0x52, 0xff, 0x56, + 0xa0, 0x18, 0x41, 0x90, 0xb7, 0x11, 0x36, 0xa0, 0x12, 0x5e, 0xa2, 0x45, 0xed, 0x4e, 0xc0, 0xed, + 0xca, 0xa1, 0xf4, 0xd4, 0xee, 0x60, 0xf4, 0x93, 0x02, 0xd5, 0x81, 0x1e, 0x66, 0x20, 0x5b, 0xdc, + 0x73, 0x30, 0x41, 0x5f, 0xdc, 0x27, 0x24, 0xd2, 0xfb, 0xeb, 0xf3, 0x58, 0x26, 0x26, 0xea, 0x1b, + 0x25, 0xec, 0xf7, 0xdb, 0x93, 0x8d, 0x2e, 0xa1, 0x14, 0xb9, 0x33, 0xe7, 0x48, 0xc5, 0xc6, 0xc1, + 0x7d, 0xe0, 0x46, 0xc7, 0xde, 0x90, 0xf1, 0xc6, 0x6f, 0x65, 0x28, 0x85, 0x67, 0xf7, 0x9e, 0x1f, + 0xa1, 0x3d, 0x28, 0xf8, 0xaf, 0x13, 0xb4, 0x18, 0xf7, 0x17, 0x79, 0xc2, 0xa8, 0x4b, 0xf2, 0x4d, + 0x51, 0x7d, 0x0e, 0xcc, 0x4a, 0x5e, 0x1f, 0xe8, 0x91, 0xe4, 0x06, 0x29, 0xaf, 0x1e, 0x75, 0x2b, + 0x97, 0xae, 0xf0, 0x77, 0x03, 0xf3, 0xf2, 0xa7, 0x02, 0x7a, 0x1c, 0x37, 0x93, 0xf9, 0x88, 0x51, + 0x6b, 0x79, 0xd5, 0x85, 0xe3, 0x57, 0x30, 0x27, 0x63, 0xbf, 0x68, 0x2b, 0xdf, 0x23, 0x81, 0x3b, + 0xdd, 0x1e, 0xe5, 0x45, 0x21, 0x5c, 0x26, 0x68, 0x8c, 0xd4, 0x65, 0x1a, 0x8d, 0x56, 0x47, 0x62, + 0x46, 0xa8, 0x2f, 0xe7, 0xe4, 0x82, 0x3d, 0xa0, 0x5b, 0x8c, 0x0d, 0x93, 0x8c, 0x11, 0x5d, 0x7f, + 0xaf, 0xc0, 0x8a, 0x94, 0x01, 0x86, 0xa3, 0x1e, 0xd5, 0xb3, 0x0d, 0x26, 0x48, 0x81, 0xfa, 0x38, + 0x0f, 0x82, 0x41, 0xc0, 0x7f, 0x50, 0xd8, 0xf3, 0x3c, 0x65, 0xc4, 0xa3, 0x27, 0xf9, 0xe9, 0x40, + 0x00, 0xa0, 0x31, 0xca, 0x11, 0x81, 0xe2, 0x67, 0x25, 0x8b, 0x2f, 0x06, 0xa9, 0x78, 0x2f, 0xbf, + 0xe5, 0x58, 0x5a, 0xee, 0x82, 0xe9, 0x8d, 0x02, 0x6f, 0xe5, 0x61, 0x63, 0xe8, 0xe9, 0x08, 0x94, + 0x29, 0x91, 0xae, 0x9d, 0x3b, 0xf0, 0x2d, 0xd1, 0x25, 0x09, 0xa2, 0x21, 0xed, 0x92, 0x34, 0x62, + 0x24, 0x2d, 0xd5, 0x74, 0xee, 0x72, 0xc1, 0x5c, 0x26, 0x58, 0x8a, 0xd4, 0x65, 0x1a, 0x97, 0x51, + 0xd7, 0xe3, 0xca, 0x32, 0x3e, 0x62, 0x01, 0x4a, 0x72, 0x1a, 0xf4, 0xb6, 0xc4, 0x8f, 0x9c, 0xf7, + 0xe4, 0xf3, 0xf2, 0x6b, 0x92, 0x20, 0xcb, 0x46, 0x0c, 0xda, 0xbd, 0xd3, 0x5c, 0xe2, 0x40, 0x9e, + 0xde, 0x63, 0xa6, 0x35, 0x75, 0x58, 0x76, 0xbd, 0x76, 0xcd, 0x75, 0x98, 0x0d, 0xf6, 0x9f, 0xb6, + 0xb3, 0xde, 0xf9, 0xc0, 0xd8, 0x57, 0x4f, 0xda, 0x36, 0xbd, 0xe8, 0x9d, 0xd5, 0x4c, 0xb7, 0x53, + 0xe7, 0x5a, 0x75, 0xf6, 0x27, 0x50, 0xad, 0xb7, 0xdd, 0xfa, 0xf0, 0x3f, 0x11, 0xcf, 0x26, 0xd9, + 0xde, 0xce, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x50, 0xdd, 0xc8, 0xeb, 0x5d, 0x14, 0x00, 0x00, } diff --git a/protobuf/go/flow/execution/execution_grpc.pb.go b/protobuf/go/flow/execution/execution_grpc.pb.go index 49846e80c..7cec5def6 100644 --- a/protobuf/go/flow/execution/execution_grpc.pb.go +++ b/protobuf/go/flow/execution/execution_grpc.pb.go @@ -32,6 +32,7 @@ const ( ExecutionAPI_GetRegisterAtBlockID_FullMethodName = "/flow.execution.ExecutionAPI/GetRegisterAtBlockID" ExecutionAPI_GetLatestBlockHeader_FullMethodName = "/flow.execution.ExecutionAPI/GetLatestBlockHeader" ExecutionAPI_GetBlockHeaderByID_FullMethodName = "/flow.execution.ExecutionAPI/GetBlockHeaderByID" + ExecutionAPI_GetTransactionExecutionMetricsAfter_FullMethodName = "/flow.execution.ExecutionAPI/GetTransactionExecutionMetricsAfter" ) // ExecutionAPIClient is the client API for ExecutionAPI service. @@ -55,12 +56,14 @@ type ExecutionAPIClient interface { // GetTransactionResultByIndex gets the results of all transactions in the // block ordered by transaction index. GetTransactionResultsByBlockID(ctx context.Context, in *GetTransactionsByBlockIDRequest, opts ...grpc.CallOption) (*GetTransactionResultsResponse, error) - // GetTransactionErrorMessage gets the error messages of a failed transaction by id. + // GetTransactionErrorMessage gets the error messages of a failed transaction + // by id. GetTransactionErrorMessage(ctx context.Context, in *GetTransactionErrorMessageRequest, opts ...grpc.CallOption) (*GetTransactionErrorMessageResponse, error) - // GetTransactionErrorMessageByIndex gets the error messages of a failed transaction at the index. + // GetTransactionErrorMessageByIndex gets the error messages of a failed + // transaction at the index. GetTransactionErrorMessageByIndex(ctx context.Context, in *GetTransactionErrorMessageByIndexRequest, opts ...grpc.CallOption) (*GetTransactionErrorMessageResponse, error) - // GetTransactionErrorMessagesByBlockID gets the error messages of all failed transactions in the - // block ordered by transaction index. + // GetTransactionErrorMessagesByBlockID gets the error messages of all failed + // transactions in the block ordered by transaction index. GetTransactionErrorMessagesByBlockID(ctx context.Context, in *GetTransactionErrorMessagesByBlockIDRequest, opts ...grpc.CallOption) (*GetTransactionErrorMessagesResponse, error) // GetRegisterAtBlockID collects a register at the block with the given ID (if // available). @@ -69,6 +72,17 @@ type ExecutionAPIClient interface { GetLatestBlockHeader(ctx context.Context, in *GetLatestBlockHeaderRequest, opts ...grpc.CallOption) (*BlockHeaderResponse, error) // GetBlockHeaderByID gets a block header by ID. GetBlockHeaderByID(ctx context.Context, in *GetBlockHeaderByIDRequest, opts ...grpc.CallOption) (*BlockHeaderResponse, error) + // GetTransactionExecutionMetricsAfter gets the transaction execution metrics + // for blocks after the given block height. The blocks will be sorted by + // descending block height. + // If no data is available for the given block height, the response will be + // empty. The execution node will only store metrics for a limited number of + // blocks,  so the request may return an empty response if the requested + // block height is too far in the past. + // + // Errors: + // - No errors are expected. + GetTransactionExecutionMetricsAfter(ctx context.Context, in *GetTransactionExecutionMetricsAfterRequest, opts ...grpc.CallOption) (*GetTransactionExecutionMetricsAfterResponse, error) } type executionAPIClient struct { @@ -196,6 +210,15 @@ func (c *executionAPIClient) GetBlockHeaderByID(ctx context.Context, in *GetBloc return out, nil } +func (c *executionAPIClient) GetTransactionExecutionMetricsAfter(ctx context.Context, in *GetTransactionExecutionMetricsAfterRequest, opts ...grpc.CallOption) (*GetTransactionExecutionMetricsAfterResponse, error) { + out := new(GetTransactionExecutionMetricsAfterResponse) + err := c.cc.Invoke(ctx, ExecutionAPI_GetTransactionExecutionMetricsAfter_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // ExecutionAPIServer is the server API for ExecutionAPI service. // All implementations should embed UnimplementedExecutionAPIServer // for forward compatibility @@ -217,12 +240,14 @@ type ExecutionAPIServer interface { // GetTransactionResultByIndex gets the results of all transactions in the // block ordered by transaction index. GetTransactionResultsByBlockID(context.Context, *GetTransactionsByBlockIDRequest) (*GetTransactionResultsResponse, error) - // GetTransactionErrorMessage gets the error messages of a failed transaction by id. + // GetTransactionErrorMessage gets the error messages of a failed transaction + // by id. GetTransactionErrorMessage(context.Context, *GetTransactionErrorMessageRequest) (*GetTransactionErrorMessageResponse, error) - // GetTransactionErrorMessageByIndex gets the error messages of a failed transaction at the index. + // GetTransactionErrorMessageByIndex gets the error messages of a failed + // transaction at the index. GetTransactionErrorMessageByIndex(context.Context, *GetTransactionErrorMessageByIndexRequest) (*GetTransactionErrorMessageResponse, error) - // GetTransactionErrorMessagesByBlockID gets the error messages of all failed transactions in the - // block ordered by transaction index. + // GetTransactionErrorMessagesByBlockID gets the error messages of all failed + // transactions in the block ordered by transaction index. GetTransactionErrorMessagesByBlockID(context.Context, *GetTransactionErrorMessagesByBlockIDRequest) (*GetTransactionErrorMessagesResponse, error) // GetRegisterAtBlockID collects a register at the block with the given ID (if // available). @@ -231,6 +256,17 @@ type ExecutionAPIServer interface { GetLatestBlockHeader(context.Context, *GetLatestBlockHeaderRequest) (*BlockHeaderResponse, error) // GetBlockHeaderByID gets a block header by ID. GetBlockHeaderByID(context.Context, *GetBlockHeaderByIDRequest) (*BlockHeaderResponse, error) + // GetTransactionExecutionMetricsAfter gets the transaction execution metrics + // for blocks after the given block height. The blocks will be sorted by + // descending block height. + // If no data is available for the given block height, the response will be + // empty. The execution node will only store metrics for a limited number of + // blocks,  so the request may return an empty response if the requested + // block height is too far in the past. + // + // Errors: + // - No errors are expected. + GetTransactionExecutionMetricsAfter(context.Context, *GetTransactionExecutionMetricsAfterRequest) (*GetTransactionExecutionMetricsAfterResponse, error) } // UnimplementedExecutionAPIServer should be embedded to have forward compatible implementations. @@ -276,6 +312,9 @@ func (UnimplementedExecutionAPIServer) GetLatestBlockHeader(context.Context, *Ge func (UnimplementedExecutionAPIServer) GetBlockHeaderByID(context.Context, *GetBlockHeaderByIDRequest) (*BlockHeaderResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GetBlockHeaderByID not implemented") } +func (UnimplementedExecutionAPIServer) GetTransactionExecutionMetricsAfter(context.Context, *GetTransactionExecutionMetricsAfterRequest) (*GetTransactionExecutionMetricsAfterResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method GetTransactionExecutionMetricsAfter not implemented") +} // UnsafeExecutionAPIServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to ExecutionAPIServer will @@ -522,6 +561,24 @@ func _ExecutionAPI_GetBlockHeaderByID_Handler(srv interface{}, ctx context.Conte return interceptor(ctx, in, info, handler) } +func _ExecutionAPI_GetTransactionExecutionMetricsAfter_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(GetTransactionExecutionMetricsAfterRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ExecutionAPIServer).GetTransactionExecutionMetricsAfter(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: ExecutionAPI_GetTransactionExecutionMetricsAfter_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ExecutionAPIServer).GetTransactionExecutionMetricsAfter(ctx, req.(*GetTransactionExecutionMetricsAfterRequest)) + } + return interceptor(ctx, in, info, handler) +} + // ExecutionAPI_ServiceDesc is the grpc.ServiceDesc for ExecutionAPI service. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) @@ -581,6 +638,10 @@ var ExecutionAPI_ServiceDesc = grpc.ServiceDesc{ MethodName: "GetBlockHeaderByID", Handler: _ExecutionAPI_GetBlockHeaderByID_Handler, }, + { + MethodName: "GetTransactionExecutionMetricsAfter", + Handler: _ExecutionAPI_GetTransactionExecutionMetricsAfter_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "flow/execution/execution.proto",