diff --git a/generated/github.com/squzy/squzy_proto/squzy_monitoring.pb.go b/generated/github.com/squzy/squzy_proto/squzy_monitoring.pb.go index 904d8cc..5120778 100644 --- a/generated/github.com/squzy/squzy_proto/squzy_monitoring.pb.go +++ b/generated/github.com/squzy/squzy_proto/squzy_monitoring.pb.go @@ -140,6 +140,7 @@ const ( SchedulerType_POSTGRES SchedulerType = 8 SchedulerType_CASSANDRA SchedulerType = 9 SchedulerType_MYSQL SchedulerType = 10 + SchedulerType_HTML SchedulerType = 11 ) // Enum value maps for SchedulerType. @@ -156,6 +157,7 @@ var ( 8: "POSTGRES", 9: "CASSANDRA", 10: "MYSQL", + 11: "HTML", } SchedulerType_value = map[string]int32{ "SCHEDULER_TYPE_UNSPECIFIED": 0, @@ -169,6 +171,7 @@ var ( "POSTGRES": 8, "CASSANDRA": 9, "MYSQL": 10, + "HTML": 11, } ) @@ -261,6 +264,73 @@ func (HttpJsonValueConfig_JsonValueParseType) EnumDescriptor() ([]byte, []int) { return file_proto_v1_squzy_monitoring_proto_rawDescGZIP(), []int{11, 0} } +type HtmlValueConfig_HtmlValueParseType int32 + +const ( + HtmlValueConfig_HTML_PARSE_VALUE_UNSPECIFIED HtmlValueConfig_HtmlValueParseType = 0 + HtmlValueConfig_BOOL HtmlValueConfig_HtmlValueParseType = 1 + HtmlValueConfig_STRING HtmlValueConfig_HtmlValueParseType = 2 + HtmlValueConfig_INT HtmlValueConfig_HtmlValueParseType = 3 + HtmlValueConfig_INT64 HtmlValueConfig_HtmlValueParseType = 4 + HtmlValueConfig_FLOAT HtmlValueConfig_HtmlValueParseType = 5 + HtmlValueConfig_FLOAT64 HtmlValueConfig_HtmlValueParseType = 6 + HtmlValueConfig_ARRAY HtmlValueConfig_HtmlValueParseType = 7 + HtmlValueConfig_OBJECT HtmlValueConfig_HtmlValueParseType = 8 +) + +// Enum value maps for HtmlValueConfig_HtmlValueParseType. +var ( + HtmlValueConfig_HtmlValueParseType_name = map[int32]string{ + 0: "HTML_PARSE_VALUE_UNSPECIFIED", + 1: "BOOL", + 2: "STRING", + 3: "INT", + 4: "INT64", + 5: "FLOAT", + 6: "FLOAT64", + 7: "ARRAY", + 8: "OBJECT", + } + HtmlValueConfig_HtmlValueParseType_value = map[string]int32{ + "HTML_PARSE_VALUE_UNSPECIFIED": 0, + "BOOL": 1, + "STRING": 2, + "INT": 3, + "INT64": 4, + "FLOAT": 5, + "FLOAT64": 6, + "ARRAY": 7, + "OBJECT": 8, + } +) + +func (x HtmlValueConfig_HtmlValueParseType) Enum() *HtmlValueConfig_HtmlValueParseType { + p := new(HtmlValueConfig_HtmlValueParseType) + *p = x + return p +} + +func (x HtmlValueConfig_HtmlValueParseType) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (HtmlValueConfig_HtmlValueParseType) Descriptor() protoreflect.EnumDescriptor { + return file_proto_v1_squzy_monitoring_proto_enumTypes[4].Descriptor() +} + +func (HtmlValueConfig_HtmlValueParseType) Type() protoreflect.EnumType { + return &file_proto_v1_squzy_monitoring_proto_enumTypes[4] +} + +func (x HtmlValueConfig_HtmlValueParseType) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use HtmlValueConfig_HtmlValueParseType.Descriptor instead. +func (HtmlValueConfig_HtmlValueParseType) EnumDescriptor() ([]byte, []int) { + return file_proto_v1_squzy_monitoring_proto_rawDescGZIP(), []int{12, 0} +} + type SchedulerSnapshotWithId struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -461,6 +531,7 @@ type Scheduler struct { // *Scheduler_Postgres // *Scheduler_Cassandra // *Scheduler_Mysql + // *Scheduler_HtmlValueConfig Config isScheduler_Config `protobuf_oneof:"config"` } @@ -615,6 +686,13 @@ func (x *Scheduler) GetMysql() *DbConfig { return nil } +func (x *Scheduler) GetHtmlValueConfig() *HtmlValueConfig { + if x, ok := x.GetConfig().(*Scheduler_HtmlValueConfig); ok { + return x.HtmlValueConfig + } + return nil +} + type isScheduler_Config interface { isScheduler_Config() } @@ -659,6 +737,10 @@ type Scheduler_Mysql struct { Mysql *DbConfig `protobuf:"bytes,16,opt,name=mysql,proto3,oneof"` } +type Scheduler_HtmlValueConfig struct { + HtmlValueConfig *HtmlValueConfig `protobuf:"bytes,17,opt,name=html_value_config,json=htmlValueConfig,proto3,oneof"` +} + func (*Scheduler_Tcp) isScheduler_Config() {} func (*Scheduler_Sitemap) isScheduler_Config() {} @@ -679,6 +761,8 @@ func (*Scheduler_Cassandra) isScheduler_Config() {} func (*Scheduler_Mysql) isScheduler_Config() {} +func (*Scheduler_HtmlValueConfig) isScheduler_Config() {} + type GetSchedulerListResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -1183,6 +1267,77 @@ func (x *HttpJsonValueConfig) GetSelectors() []*HttpJsonValueConfig_Selectors { return nil } +type HtmlValueConfig struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Method string `protobuf:"bytes,1,opt,name=method,proto3" json:"method,omitempty"` + Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"` + Headers map[string]string `protobuf:"bytes,3,rep,name=headers,proto3" json:"headers,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + Selectors []*HtmlValueConfig_Selector `protobuf:"bytes,4,rep,name=selectors,proto3" json:"selectors,omitempty"` +} + +func (x *HtmlValueConfig) Reset() { + *x = HtmlValueConfig{} + if protoimpl.UnsafeEnabled { + mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[12] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *HtmlValueConfig) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*HtmlValueConfig) ProtoMessage() {} + +func (x *HtmlValueConfig) ProtoReflect() protoreflect.Message { + mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[12] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use HtmlValueConfig.ProtoReflect.Descriptor instead. +func (*HtmlValueConfig) Descriptor() ([]byte, []int) { + return file_proto_v1_squzy_monitoring_proto_rawDescGZIP(), []int{12} +} + +func (x *HtmlValueConfig) GetMethod() string { + if x != nil { + return x.Method + } + return "" +} + +func (x *HtmlValueConfig) GetUrl() string { + if x != nil { + return x.Url + } + return "" +} + +func (x *HtmlValueConfig) GetHeaders() map[string]string { + if x != nil { + return x.Headers + } + return nil +} + +func (x *HtmlValueConfig) GetSelectors() []*HtmlValueConfig_Selector { + if x != nil { + return x.Selectors + } + return nil +} + type AddRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -1205,13 +1360,14 @@ type AddRequest struct { // *AddRequest_Postgres // *AddRequest_Cassandra // *AddRequest_Mysql + // *AddRequest_HtmlValueConfig Config isAddRequest_Config `protobuf_oneof:"config"` } func (x *AddRequest) Reset() { *x = AddRequest{} if protoimpl.UnsafeEnabled { - mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[12] + mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1224,7 +1380,7 @@ func (x *AddRequest) String() string { func (*AddRequest) ProtoMessage() {} func (x *AddRequest) ProtoReflect() protoreflect.Message { - mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[12] + mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[13] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1237,7 +1393,7 @@ func (x *AddRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AddRequest.ProtoReflect.Descriptor instead. func (*AddRequest) Descriptor() ([]byte, []int) { - return file_proto_v1_squzy_monitoring_proto_rawDescGZIP(), []int{12} + return file_proto_v1_squzy_monitoring_proto_rawDescGZIP(), []int{13} } func (x *AddRequest) GetInterval() int32 { @@ -1338,6 +1494,13 @@ func (x *AddRequest) GetMysql() *DbConfig { return nil } +func (x *AddRequest) GetHtmlValueConfig() *HtmlValueConfig { + if x, ok := x.GetConfig().(*AddRequest_HtmlValueConfig); ok { + return x.HtmlValueConfig + } + return nil +} + type isAddRequest_Config interface { isAddRequest_Config() } @@ -1382,6 +1545,10 @@ type AddRequest_Mysql struct { Mysql *DbConfig `protobuf:"bytes,13,opt,name=mysql,proto3,oneof"` } +type AddRequest_HtmlValueConfig struct { + HtmlValueConfig *HtmlValueConfig `protobuf:"bytes,14,opt,name=html_value_config,json=htmlValueConfig,proto3,oneof"` +} + func (*AddRequest_Tcp) isAddRequest_Config() {} func (*AddRequest_Sitemap) isAddRequest_Config() {} @@ -1402,6 +1569,8 @@ func (*AddRequest_Cassandra) isAddRequest_Config() {} func (*AddRequest_Mysql) isAddRequest_Config() {} +func (*AddRequest_HtmlValueConfig) isAddRequest_Config() {} + type AddResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -1413,7 +1582,7 @@ type AddResponse struct { func (x *AddResponse) Reset() { *x = AddResponse{} if protoimpl.UnsafeEnabled { - mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[13] + mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1426,7 +1595,7 @@ func (x *AddResponse) String() string { func (*AddResponse) ProtoMessage() {} func (x *AddResponse) ProtoReflect() protoreflect.Message { - mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[13] + mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[14] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1439,7 +1608,7 @@ func (x *AddResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use AddResponse.ProtoReflect.Descriptor instead. func (*AddResponse) Descriptor() ([]byte, []int) { - return file_proto_v1_squzy_monitoring_proto_rawDescGZIP(), []int{13} + return file_proto_v1_squzy_monitoring_proto_rawDescGZIP(), []int{14} } func (x *AddResponse) GetId() string { @@ -1460,7 +1629,7 @@ type RemoveRequest struct { func (x *RemoveRequest) Reset() { *x = RemoveRequest{} if protoimpl.UnsafeEnabled { - mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[14] + mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1473,7 +1642,7 @@ func (x *RemoveRequest) String() string { func (*RemoveRequest) ProtoMessage() {} func (x *RemoveRequest) ProtoReflect() protoreflect.Message { - mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[14] + mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[15] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1486,7 +1655,7 @@ func (x *RemoveRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RemoveRequest.ProtoReflect.Descriptor instead. func (*RemoveRequest) Descriptor() ([]byte, []int) { - return file_proto_v1_squzy_monitoring_proto_rawDescGZIP(), []int{14} + return file_proto_v1_squzy_monitoring_proto_rawDescGZIP(), []int{15} } func (x *RemoveRequest) GetId() string { @@ -1507,7 +1676,7 @@ type RemoveResponse struct { func (x *RemoveResponse) Reset() { *x = RemoveResponse{} if protoimpl.UnsafeEnabled { - mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[15] + mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1520,7 +1689,7 @@ func (x *RemoveResponse) String() string { func (*RemoveResponse) ProtoMessage() {} func (x *RemoveResponse) ProtoReflect() protoreflect.Message { - mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[15] + mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[16] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1533,7 +1702,7 @@ func (x *RemoveResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RemoveResponse.ProtoReflect.Descriptor instead. func (*RemoveResponse) Descriptor() ([]byte, []int) { - return file_proto_v1_squzy_monitoring_proto_rawDescGZIP(), []int{15} + return file_proto_v1_squzy_monitoring_proto_rawDescGZIP(), []int{16} } func (x *RemoveResponse) GetId() string { @@ -1554,7 +1723,7 @@ type RunRequest struct { func (x *RunRequest) Reset() { *x = RunRequest{} if protoimpl.UnsafeEnabled { - mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[16] + mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1567,7 +1736,7 @@ func (x *RunRequest) String() string { func (*RunRequest) ProtoMessage() {} func (x *RunRequest) ProtoReflect() protoreflect.Message { - mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[16] + mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[17] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1580,7 +1749,7 @@ func (x *RunRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RunRequest.ProtoReflect.Descriptor instead. func (*RunRequest) Descriptor() ([]byte, []int) { - return file_proto_v1_squzy_monitoring_proto_rawDescGZIP(), []int{16} + return file_proto_v1_squzy_monitoring_proto_rawDescGZIP(), []int{17} } func (x *RunRequest) GetId() string { @@ -1601,7 +1770,7 @@ type StopRequest struct { func (x *StopRequest) Reset() { *x = StopRequest{} if protoimpl.UnsafeEnabled { - mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[17] + mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1614,7 +1783,7 @@ func (x *StopRequest) String() string { func (*StopRequest) ProtoMessage() {} func (x *StopRequest) ProtoReflect() protoreflect.Message { - mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[17] + mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[18] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1627,7 +1796,7 @@ func (x *StopRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use StopRequest.ProtoReflect.Descriptor instead. func (*StopRequest) Descriptor() ([]byte, []int) { - return file_proto_v1_squzy_monitoring_proto_rawDescGZIP(), []int{17} + return file_proto_v1_squzy_monitoring_proto_rawDescGZIP(), []int{18} } func (x *StopRequest) GetId() string { @@ -1648,7 +1817,7 @@ type RunResponse struct { func (x *RunResponse) Reset() { *x = RunResponse{} if protoimpl.UnsafeEnabled { - mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[18] + mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1661,7 +1830,7 @@ func (x *RunResponse) String() string { func (*RunResponse) ProtoMessage() {} func (x *RunResponse) ProtoReflect() protoreflect.Message { - mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[18] + mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[19] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1674,7 +1843,7 @@ func (x *RunResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RunResponse.ProtoReflect.Descriptor instead. func (*RunResponse) Descriptor() ([]byte, []int) { - return file_proto_v1_squzy_monitoring_proto_rawDescGZIP(), []int{18} + return file_proto_v1_squzy_monitoring_proto_rawDescGZIP(), []int{19} } func (x *RunResponse) GetId() string { @@ -1695,7 +1864,7 @@ type StopResponse struct { func (x *StopResponse) Reset() { *x = StopResponse{} if protoimpl.UnsafeEnabled { - mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[19] + mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1708,7 +1877,7 @@ func (x *StopResponse) String() string { func (*StopResponse) ProtoMessage() {} func (x *StopResponse) ProtoReflect() protoreflect.Message { - mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[19] + mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[20] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1721,7 +1890,7 @@ func (x *StopResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use StopResponse.ProtoReflect.Descriptor instead. func (*StopResponse) Descriptor() ([]byte, []int) { - return file_proto_v1_squzy_monitoring_proto_rawDescGZIP(), []int{19} + return file_proto_v1_squzy_monitoring_proto_rawDescGZIP(), []int{20} } func (x *StopResponse) GetId() string { @@ -1742,7 +1911,7 @@ type SchedulerSnapshot_Error struct { func (x *SchedulerSnapshot_Error) Reset() { *x = SchedulerSnapshot_Error{} if protoimpl.UnsafeEnabled { - mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[20] + mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1755,7 +1924,7 @@ func (x *SchedulerSnapshot_Error) String() string { func (*SchedulerSnapshot_Error) ProtoMessage() {} func (x *SchedulerSnapshot_Error) ProtoReflect() protoreflect.Message { - mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[20] + mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[21] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1791,7 +1960,7 @@ type SchedulerSnapshot_MetaData struct { func (x *SchedulerSnapshot_MetaData) Reset() { *x = SchedulerSnapshot_MetaData{} if protoimpl.UnsafeEnabled { - mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[21] + mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1804,7 +1973,7 @@ func (x *SchedulerSnapshot_MetaData) String() string { func (*SchedulerSnapshot_MetaData) ProtoMessage() {} func (x *SchedulerSnapshot_MetaData) ProtoReflect() protoreflect.Message { - mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[21] + mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[22] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1853,7 +2022,7 @@ type HttpJsonValueConfig_Selectors struct { func (x *HttpJsonValueConfig_Selectors) Reset() { *x = HttpJsonValueConfig_Selectors{} if protoimpl.UnsafeEnabled { - mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[24] + mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1866,7 +2035,7 @@ func (x *HttpJsonValueConfig_Selectors) String() string { func (*HttpJsonValueConfig_Selectors) ProtoMessage() {} func (x *HttpJsonValueConfig_Selectors) ProtoReflect() protoreflect.Message { - mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[24] + mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[25] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1896,6 +2065,61 @@ func (x *HttpJsonValueConfig_Selectors) GetPath() string { return "" } +type HtmlValueConfig_Selector struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Type HtmlValueConfig_HtmlValueParseType `protobuf:"varint,1,opt,name=type,proto3,enum=squzy.v1.monitoring.HtmlValueConfig_HtmlValueParseType" json:"type,omitempty"` + Path string `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"` +} + +func (x *HtmlValueConfig_Selector) Reset() { + *x = HtmlValueConfig_Selector{} + if protoimpl.UnsafeEnabled { + mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[27] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *HtmlValueConfig_Selector) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*HtmlValueConfig_Selector) ProtoMessage() {} + +func (x *HtmlValueConfig_Selector) ProtoReflect() protoreflect.Message { + mi := &file_proto_v1_squzy_monitoring_proto_msgTypes[27] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use HtmlValueConfig_Selector.ProtoReflect.Descriptor instead. +func (*HtmlValueConfig_Selector) Descriptor() ([]byte, []int) { + return file_proto_v1_squzy_monitoring_proto_rawDescGZIP(), []int{12, 1} +} + +func (x *HtmlValueConfig_Selector) GetType() HtmlValueConfig_HtmlValueParseType { + if x != nil { + return x.Type + } + return HtmlValueConfig_HTML_PARSE_VALUE_UNSPECIFIED +} + +func (x *HtmlValueConfig_Selector) GetPath() string { + if x != nil { + return x.Path + } + return "" +} + var File_proto_v1_squzy_monitoring_proto protoreflect.FileDescriptor var file_proto_v1_squzy_monitoring_proto_rawDesc = []byte{ @@ -1947,7 +2171,7 @@ var file_proto_v1_squzy_monitoring_proto_rawDesc = []byte{ 0x62, 0x75, 0x66, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x29, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x72, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, - 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0xcf, 0x06, 0x0a, 0x09, + 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0xa3, 0x07, 0x0a, 0x09, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x36, 0x0a, @@ -2000,200 +2224,245 @@ var file_proto_v1_squzy_monitoring_proto_rawDesc = []byte{ 0x6d, 0x79, 0x73, 0x71, 0x6c, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x44, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x48, 0x00, 0x52, 0x05, 0x6d, 0x79, - 0x73, 0x71, 0x6c, 0x42, 0x08, 0x0a, 0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x22, 0x50, 0x0a, - 0x18, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x72, 0x4c, 0x69, 0x73, - 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x34, 0x0a, 0x05, 0x6c, 0x69, 0x73, - 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, - 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x53, - 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x72, 0x52, 0x05, 0x6c, 0x69, 0x73, 0x74, 0x73, 0x22, - 0x43, 0x0a, 0x0d, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x61, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, - 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, - 0x72, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, - 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, - 0x65, 0x6e, 0x63, 0x79, 0x22, 0x33, 0x0a, 0x09, 0x54, 0x63, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, - 0x67, 0x12, 0x12, 0x0a, 0x04, 0x68, 0x6f, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x04, 0x68, 0x6f, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x6f, 0x72, 0x74, 0x22, 0x3d, 0x0a, 0x13, 0x53, 0x73, 0x6c, - 0x45, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, - 0x12, 0x12, 0x0a, 0x04, 0x68, 0x6f, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, - 0x68, 0x6f, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x03, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x04, 0x70, 0x6f, 0x72, 0x74, 0x22, 0x95, 0x01, 0x0a, 0x08, 0x44, 0x62, 0x43, + 0x73, 0x71, 0x6c, 0x12, 0x52, 0x0a, 0x11, 0x68, 0x74, 0x6d, 0x6c, 0x5f, 0x76, 0x61, 0x6c, 0x75, + 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x11, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, + 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, + 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x48, 0x74, 0x6d, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x43, 0x6f, + 0x6e, 0x66, 0x69, 0x67, 0x48, 0x00, 0x52, 0x0f, 0x68, 0x74, 0x6d, 0x6c, 0x56, 0x61, 0x6c, 0x75, + 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x42, 0x08, 0x0a, 0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, + 0x67, 0x22, 0x50, 0x0a, 0x18, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, + 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x34, 0x0a, + 0x05, 0x6c, 0x69, 0x73, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x73, + 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, + 0x6e, 0x67, 0x2e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x72, 0x52, 0x05, 0x6c, 0x69, + 0x73, 0x74, 0x73, 0x22, 0x43, 0x0a, 0x0d, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x61, 0x70, 0x43, 0x6f, + 0x6e, 0x66, 0x69, 0x67, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x63, 0x75, 0x72, + 0x72, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x63, 0x6f, 0x6e, + 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x22, 0x33, 0x0a, 0x09, 0x54, 0x63, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x68, 0x6f, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x68, 0x6f, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x6f, 0x72, - 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x12, 0x0a, - 0x04, 0x75, 0x73, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x75, 0x73, 0x65, - 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x04, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x17, 0x0a, - 0x07, 0x64, 0x62, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, - 0x64, 0x62, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, - 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, - 0x22, 0x4e, 0x0a, 0x0a, 0x47, 0x72, 0x70, 0x63, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x18, - 0x0a, 0x07, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x07, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x68, 0x6f, 0x73, 0x74, - 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x68, 0x6f, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, - 0x70, 0x6f, 0x72, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x6f, 0x72, 0x74, - 0x22, 0xdb, 0x01, 0x0a, 0x0a, 0x48, 0x74, 0x74, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, + 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x6f, 0x72, 0x74, 0x22, 0x3d, 0x0a, + 0x13, 0x53, 0x73, 0x6c, 0x45, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, + 0x6e, 0x66, 0x69, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x68, 0x6f, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x04, 0x68, 0x6f, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x6f, 0x72, 0x74, + 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x6f, 0x72, 0x74, 0x22, 0x95, 0x01, 0x0a, + 0x08, 0x44, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x68, 0x6f, 0x73, + 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x68, 0x6f, 0x73, 0x74, 0x12, 0x12, 0x0a, + 0x04, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x6f, 0x72, + 0x74, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x04, 0x75, 0x73, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, + 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, + 0x64, 0x12, 0x17, 0x0a, 0x07, 0x64, 0x62, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x06, 0x64, 0x62, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6c, + 0x75, 0x73, 0x74, 0x65, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6c, 0x75, + 0x73, 0x74, 0x65, 0x72, 0x22, 0x4e, 0x0a, 0x0a, 0x47, 0x72, 0x70, 0x63, 0x43, 0x6f, 0x6e, 0x66, + 0x69, 0x67, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, + 0x68, 0x6f, 0x73, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x68, 0x6f, 0x73, 0x74, + 0x12, 0x12, 0x0a, 0x04, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, + 0x70, 0x6f, 0x72, 0x74, 0x22, 0xdb, 0x01, 0x0a, 0x0a, 0x48, 0x74, 0x74, 0x70, 0x43, 0x6f, 0x6e, + 0x66, 0x69, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x75, + 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x46, 0x0a, + 0x07, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, + 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, + 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x48, 0x74, 0x74, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, + 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x07, 0x68, 0x65, + 0x61, 0x64, 0x65, 0x72, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, + 0x63, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x73, 0x74, 0x61, 0x74, + 0x75, 0x73, 0x43, 0x6f, 0x64, 0x65, 0x1a, 0x3a, 0x0a, 0x0c, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, + 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, + 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, + 0x38, 0x01, 0x22, 0x86, 0x04, 0x0a, 0x13, 0x48, 0x74, 0x74, 0x70, 0x4a, 0x73, 0x6f, 0x6e, 0x56, + 0x61, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x65, + 0x74, 0x68, 0x6f, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, + 0x6f, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x03, 0x75, 0x72, 0x6c, 0x12, 0x4f, 0x0a, 0x07, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73, 0x18, + 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, + 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x48, 0x74, 0x74, 0x70, + 0x4a, 0x73, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, + 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x07, 0x68, 0x65, + 0x61, 0x64, 0x65, 0x72, 0x73, 0x12, 0x50, 0x0a, 0x09, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, + 0x72, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, + 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x48, + 0x74, 0x74, 0x70, 0x4a, 0x73, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x6e, 0x66, + 0x69, 0x67, 0x2e, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x52, 0x09, 0x73, 0x65, + 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x1a, 0x3a, 0x0a, 0x0c, 0x48, 0x65, 0x61, 0x64, 0x65, + 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, + 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, + 0x02, 0x38, 0x01, 0x1a, 0x70, 0x0a, 0x09, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, + 0x12, 0x4f, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3b, + 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, + 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x48, 0x74, 0x74, 0x70, 0x4a, 0x73, 0x6f, 0x6e, 0x56, 0x61, 0x6c, + 0x75, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x4a, 0x73, 0x6f, 0x6e, 0x56, 0x61, 0x6c, + 0x75, 0x65, 0x50, 0x61, 0x72, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, + 0x65, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x04, 0x70, 0x61, 0x74, 0x68, 0x22, 0x74, 0x0a, 0x12, 0x4a, 0x73, 0x6f, 0x6e, 0x56, 0x61, 0x6c, + 0x75, 0x65, 0x50, 0x61, 0x72, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x1c, 0x4a, + 0x53, 0x4f, 0x4e, 0x5f, 0x50, 0x41, 0x52, 0x53, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, + 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0a, 0x0a, + 0x06, 0x53, 0x54, 0x52, 0x49, 0x4e, 0x47, 0x10, 0x01, 0x12, 0x08, 0x0a, 0x04, 0x42, 0x4f, 0x4f, + 0x4c, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x4e, 0x55, 0x4d, 0x42, 0x45, 0x52, 0x10, 0x03, 0x12, + 0x08, 0x0a, 0x04, 0x54, 0x49, 0x4d, 0x45, 0x10, 0x04, 0x12, 0x07, 0x0a, 0x03, 0x41, 0x4e, 0x59, + 0x10, 0x05, 0x12, 0x07, 0x0a, 0x03, 0x52, 0x41, 0x57, 0x10, 0x06, 0x22, 0x90, 0x04, 0x0a, 0x0f, + 0x48, 0x74, 0x6d, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x02, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x46, 0x0a, 0x07, 0x68, 0x65, 0x61, - 0x64, 0x65, 0x72, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x73, 0x71, 0x75, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x4b, 0x0a, 0x07, 0x68, 0x65, 0x61, + 0x64, 0x65, 0x72, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, - 0x2e, 0x48, 0x74, 0x74, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x48, 0x65, 0x61, 0x64, - 0x65, 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x07, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, - 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x63, 0x6f, 0x64, 0x65, - 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x43, 0x6f, - 0x64, 0x65, 0x1a, 0x3a, 0x0a, 0x0c, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73, 0x45, 0x6e, 0x74, - 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x86, - 0x04, 0x0a, 0x13, 0x48, 0x74, 0x74, 0x70, 0x4a, 0x73, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, - 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x10, - 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, - 0x12, 0x4f, 0x0a, 0x07, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, - 0x0b, 0x32, 0x35, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, - 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x48, 0x74, 0x74, 0x70, 0x4a, 0x73, 0x6f, 0x6e, - 0x56, 0x61, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x48, 0x65, 0x61, 0x64, - 0x65, 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x07, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, - 0x73, 0x12, 0x50, 0x0a, 0x09, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x18, 0x04, - 0x20, 0x03, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, - 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x48, 0x74, 0x74, 0x70, 0x4a, - 0x73, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x53, - 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x52, 0x09, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, + 0x2e, 0x48, 0x74, 0x6d, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, + 0x2e, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x07, 0x68, + 0x65, 0x61, 0x64, 0x65, 0x72, 0x73, 0x12, 0x4b, 0x0a, 0x09, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, + 0x6f, 0x72, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x73, 0x71, 0x75, 0x7a, + 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, + 0x48, 0x74, 0x6d, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, + 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x52, 0x09, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x1a, 0x3a, 0x0a, 0x0c, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, - 0x70, 0x0a, 0x09, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x12, 0x4f, 0x0a, 0x04, - 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3b, 0x2e, 0x73, 0x71, 0x75, - 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, - 0x2e, 0x48, 0x74, 0x74, 0x70, 0x4a, 0x73, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x43, 0x6f, - 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x4a, 0x73, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x61, - 0x72, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, - 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, - 0x68, 0x22, 0x74, 0x0a, 0x12, 0x4a, 0x73, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x61, - 0x72, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x1c, 0x4a, 0x53, 0x4f, 0x4e, 0x5f, - 0x50, 0x41, 0x52, 0x53, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, - 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x53, 0x54, 0x52, - 0x49, 0x4e, 0x47, 0x10, 0x01, 0x12, 0x08, 0x0a, 0x04, 0x42, 0x4f, 0x4f, 0x4c, 0x10, 0x02, 0x12, - 0x0a, 0x0a, 0x06, 0x4e, 0x55, 0x4d, 0x42, 0x45, 0x52, 0x10, 0x03, 0x12, 0x08, 0x0a, 0x04, 0x54, - 0x49, 0x4d, 0x45, 0x10, 0x04, 0x12, 0x07, 0x0a, 0x03, 0x41, 0x4e, 0x59, 0x10, 0x05, 0x12, 0x07, - 0x0a, 0x03, 0x52, 0x41, 0x57, 0x10, 0x06, 0x22, 0xca, 0x05, 0x0a, 0x0a, 0x41, 0x64, 0x64, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, - 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, - 0x61, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x05, 0x52, 0x07, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x12, 0x12, 0x0a, 0x04, - 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, - 0x12, 0x32, 0x0a, 0x03, 0x74, 0x63, 0x70, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, - 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, - 0x69, 0x6e, 0x67, 0x2e, 0x54, 0x63, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x48, 0x00, 0x52, - 0x03, 0x74, 0x63, 0x70, 0x12, 0x3e, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x6d, 0x61, 0x70, 0x18, - 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, - 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x53, 0x69, 0x74, 0x65, - 0x4d, 0x61, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x48, 0x00, 0x52, 0x07, 0x73, 0x69, 0x74, - 0x65, 0x6d, 0x61, 0x70, 0x12, 0x35, 0x0a, 0x04, 0x67, 0x72, 0x70, 0x63, 0x18, 0x06, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, - 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x47, 0x72, 0x70, 0x63, 0x43, 0x6f, 0x6e, - 0x66, 0x69, 0x67, 0x48, 0x00, 0x52, 0x04, 0x67, 0x72, 0x70, 0x63, 0x12, 0x35, 0x0a, 0x04, 0x68, - 0x74, 0x74, 0x70, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x73, 0x71, 0x75, 0x7a, + 0x6b, 0x0a, 0x08, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x12, 0x4b, 0x0a, 0x04, 0x74, + 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x37, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, - 0x48, 0x74, 0x74, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x48, 0x00, 0x52, 0x04, 0x68, 0x74, - 0x74, 0x70, 0x12, 0x49, 0x0a, 0x0a, 0x68, 0x74, 0x74, 0x70, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, - 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, - 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x48, 0x74, 0x74, - 0x70, 0x4a, 0x73, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, - 0x48, 0x00, 0x52, 0x09, 0x68, 0x74, 0x74, 0x70, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x51, 0x0a, - 0x0e, 0x73, 0x73, 0x6c, 0x5f, 0x65, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, - 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, - 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x53, 0x73, 0x6c, 0x45, - 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x48, - 0x00, 0x52, 0x0d, 0x73, 0x73, 0x6c, 0x45, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x12, 0x35, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x67, 0x6f, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x1d, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, - 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x44, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x48, 0x00, - 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x67, 0x6f, 0x12, 0x3b, 0x0a, 0x08, 0x70, 0x6f, 0x73, 0x74, 0x67, - 0x72, 0x65, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x73, 0x71, 0x75, 0x7a, + 0x48, 0x74, 0x6d, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, + 0x48, 0x74, 0x6d, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x61, 0x72, 0x73, 0x65, 0x54, 0x79, + 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x22, 0x8f, 0x01, 0x0a, + 0x12, 0x48, 0x74, 0x6d, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x61, 0x72, 0x73, 0x65, 0x54, + 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x1c, 0x48, 0x54, 0x4d, 0x4c, 0x5f, 0x50, 0x41, 0x52, 0x53, + 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, + 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x08, 0x0a, 0x04, 0x42, 0x4f, 0x4f, 0x4c, 0x10, 0x01, 0x12, + 0x0a, 0x0a, 0x06, 0x53, 0x54, 0x52, 0x49, 0x4e, 0x47, 0x10, 0x02, 0x12, 0x07, 0x0a, 0x03, 0x49, + 0x4e, 0x54, 0x10, 0x03, 0x12, 0x09, 0x0a, 0x05, 0x49, 0x4e, 0x54, 0x36, 0x34, 0x10, 0x04, 0x12, + 0x09, 0x0a, 0x05, 0x46, 0x4c, 0x4f, 0x41, 0x54, 0x10, 0x05, 0x12, 0x0b, 0x0a, 0x07, 0x46, 0x4c, + 0x4f, 0x41, 0x54, 0x36, 0x34, 0x10, 0x06, 0x12, 0x09, 0x0a, 0x05, 0x41, 0x52, 0x52, 0x41, 0x59, + 0x10, 0x07, 0x12, 0x0a, 0x0a, 0x06, 0x4f, 0x42, 0x4a, 0x45, 0x43, 0x54, 0x10, 0x08, 0x22, 0x9e, + 0x06, 0x0a, 0x0a, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, + 0x08, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, + 0x08, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x69, 0x6d, + 0x65, 0x6f, 0x75, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x74, 0x69, 0x6d, 0x65, + 0x6f, 0x75, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x32, 0x0a, 0x03, 0x74, 0x63, 0x70, 0x18, 0x04, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, + 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x54, 0x63, 0x70, 0x43, 0x6f, + 0x6e, 0x66, 0x69, 0x67, 0x48, 0x00, 0x52, 0x03, 0x74, 0x63, 0x70, 0x12, 0x3e, 0x0a, 0x07, 0x73, + 0x69, 0x74, 0x65, 0x6d, 0x61, 0x70, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x73, + 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, + 0x6e, 0x67, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x61, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, + 0x48, 0x00, 0x52, 0x07, 0x73, 0x69, 0x74, 0x65, 0x6d, 0x61, 0x70, 0x12, 0x35, 0x0a, 0x04, 0x67, + 0x72, 0x70, 0x63, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, - 0x44, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x48, 0x00, 0x52, 0x08, 0x70, 0x6f, 0x73, 0x74, - 0x67, 0x72, 0x65, 0x73, 0x12, 0x3d, 0x0a, 0x09, 0x63, 0x61, 0x73, 0x73, 0x61, 0x6e, 0x64, 0x72, - 0x61, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, - 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x44, 0x62, - 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x48, 0x00, 0x52, 0x09, 0x63, 0x61, 0x73, 0x73, 0x61, 0x6e, - 0x64, 0x72, 0x61, 0x12, 0x35, 0x0a, 0x05, 0x6d, 0x79, 0x73, 0x71, 0x6c, 0x18, 0x0d, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, - 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x44, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, - 0x67, 0x48, 0x00, 0x52, 0x05, 0x6d, 0x79, 0x73, 0x71, 0x6c, 0x42, 0x08, 0x0a, 0x06, 0x63, 0x6f, - 0x6e, 0x66, 0x69, 0x67, 0x22, 0x1d, 0x0a, 0x0b, 0x41, 0x64, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x02, 0x69, 0x64, 0x22, 0x1f, 0x0a, 0x0d, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x52, 0x65, 0x71, - 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x02, 0x69, 0x64, 0x22, 0x20, 0x0a, 0x0e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x1c, 0x0a, 0x0a, 0x52, 0x75, 0x6e, 0x52, 0x65, 0x71, - 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x02, 0x69, 0x64, 0x22, 0x1d, 0x0a, 0x0b, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x02, 0x69, 0x64, 0x22, 0x1d, 0x0a, 0x0b, 0x52, 0x75, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, - 0x69, 0x64, 0x22, 0x1e, 0x0a, 0x0c, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, - 0x69, 0x64, 0x2a, 0x42, 0x0a, 0x0d, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x72, 0x43, - 0x6f, 0x64, 0x65, 0x12, 0x1e, 0x0a, 0x1a, 0x53, 0x43, 0x48, 0x45, 0x44, 0x55, 0x4c, 0x45, 0x52, - 0x5f, 0x43, 0x4f, 0x44, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, - 0x44, 0x10, 0x00, 0x12, 0x06, 0x0a, 0x02, 0x4f, 0x4b, 0x10, 0x01, 0x12, 0x09, 0x0a, 0x05, 0x45, - 0x52, 0x52, 0x4f, 0x52, 0x10, 0x02, 0x2a, 0x59, 0x0a, 0x0f, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, - 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x20, 0x0a, 0x1c, 0x53, 0x43, 0x48, - 0x45, 0x44, 0x55, 0x4c, 0x45, 0x52, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x55, 0x4e, - 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x52, - 0x55, 0x4e, 0x4e, 0x45, 0x44, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x53, 0x54, 0x4f, 0x50, 0x50, - 0x45, 0x44, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, - 0x03, 0x2a, 0xb6, 0x01, 0x0a, 0x0d, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x72, 0x54, - 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x1a, 0x53, 0x43, 0x48, 0x45, 0x44, 0x55, 0x4c, 0x45, 0x52, - 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, - 0x44, 0x10, 0x00, 0x12, 0x07, 0x0a, 0x03, 0x54, 0x43, 0x50, 0x10, 0x01, 0x12, 0x08, 0x0a, 0x04, - 0x47, 0x52, 0x50, 0x43, 0x10, 0x02, 0x12, 0x08, 0x0a, 0x04, 0x48, 0x54, 0x54, 0x50, 0x10, 0x03, - 0x12, 0x0c, 0x0a, 0x08, 0x53, 0x49, 0x54, 0x45, 0x5f, 0x4d, 0x41, 0x50, 0x10, 0x04, 0x12, 0x13, - 0x0a, 0x0f, 0x48, 0x54, 0x54, 0x50, 0x5f, 0x4a, 0x53, 0x4f, 0x4e, 0x5f, 0x56, 0x41, 0x4c, 0x55, - 0x45, 0x10, 0x05, 0x12, 0x12, 0x0a, 0x0e, 0x53, 0x53, 0x4c, 0x5f, 0x45, 0x58, 0x50, 0x49, 0x52, - 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x06, 0x12, 0x09, 0x0a, 0x05, 0x4d, 0x4f, 0x4e, 0x47, 0x4f, - 0x10, 0x07, 0x12, 0x0c, 0x0a, 0x08, 0x50, 0x4f, 0x53, 0x54, 0x47, 0x52, 0x45, 0x53, 0x10, 0x08, - 0x12, 0x0d, 0x0a, 0x09, 0x43, 0x41, 0x53, 0x53, 0x41, 0x4e, 0x44, 0x52, 0x41, 0x10, 0x09, 0x12, - 0x09, 0x0a, 0x05, 0x4d, 0x59, 0x53, 0x51, 0x4c, 0x10, 0x0a, 0x32, 0x85, 0x04, 0x0a, 0x12, 0x53, - 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x72, 0x73, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x6f, - 0x72, 0x12, 0x59, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, - 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x2d, 0x2e, + 0x47, 0x72, 0x70, 0x63, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x48, 0x00, 0x52, 0x04, 0x67, 0x72, + 0x70, 0x63, 0x12, 0x35, 0x0a, 0x04, 0x68, 0x74, 0x74, 0x70, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x1f, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, + 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x48, 0x74, 0x74, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, + 0x67, 0x48, 0x00, 0x52, 0x04, 0x68, 0x74, 0x74, 0x70, 0x12, 0x49, 0x0a, 0x0a, 0x68, 0x74, 0x74, + 0x70, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, - 0x69, 0x6e, 0x67, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x72, - 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x60, 0x0a, 0x10, - 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x72, 0x42, 0x79, 0x49, 0x64, - 0x12, 0x2c, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, - 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, - 0x6c, 0x65, 0x72, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, + 0x69, 0x6e, 0x67, 0x2e, 0x48, 0x74, 0x74, 0x70, 0x4a, 0x73, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, + 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x48, 0x00, 0x52, 0x09, 0x68, 0x74, 0x74, 0x70, 0x56, + 0x61, 0x6c, 0x75, 0x65, 0x12, 0x51, 0x0a, 0x0e, 0x73, 0x73, 0x6c, 0x5f, 0x65, 0x78, 0x70, 0x69, + 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x73, + 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, + 0x6e, 0x67, 0x2e, 0x53, 0x73, 0x6c, 0x45, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x48, 0x00, 0x52, 0x0d, 0x73, 0x73, 0x6c, 0x45, 0x78, 0x70, + 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x35, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x67, 0x6f, + 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, + 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x44, 0x62, 0x43, + 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x48, 0x00, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x67, 0x6f, 0x12, 0x3b, + 0x0a, 0x08, 0x70, 0x6f, 0x73, 0x74, 0x67, 0x72, 0x65, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x1d, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, + 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x44, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x48, + 0x00, 0x52, 0x08, 0x70, 0x6f, 0x73, 0x74, 0x67, 0x72, 0x65, 0x73, 0x12, 0x3d, 0x0a, 0x09, 0x63, + 0x61, 0x73, 0x73, 0x61, 0x6e, 0x64, 0x72, 0x61, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, - 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x72, 0x12, 0x48, - 0x0a, 0x03, 0x41, 0x64, 0x64, 0x12, 0x1f, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, - 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x41, 0x64, 0x64, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, - 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x41, 0x64, 0x64, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x51, 0x0a, 0x06, 0x52, 0x65, 0x6d, 0x6f, - 0x76, 0x65, 0x12, 0x22, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, - 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, - 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x52, 0x65, 0x6d, - 0x6f, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x48, 0x0a, 0x03, 0x52, - 0x75, 0x6e, 0x12, 0x1f, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, - 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x52, 0x75, 0x6e, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, - 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x52, 0x75, 0x6e, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4b, 0x0a, 0x04, 0x53, 0x74, 0x6f, 0x70, 0x12, 0x20, 0x2e, - 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, - 0x69, 0x6e, 0x67, 0x2e, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, - 0x21, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, - 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x42, 0x24, 0x5a, 0x22, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, - 0x2f, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2f, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x5f, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x44, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x48, 0x00, 0x52, + 0x09, 0x63, 0x61, 0x73, 0x73, 0x61, 0x6e, 0x64, 0x72, 0x61, 0x12, 0x35, 0x0a, 0x05, 0x6d, 0x79, + 0x73, 0x71, 0x6c, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x73, 0x71, 0x75, 0x7a, + 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, + 0x44, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x48, 0x00, 0x52, 0x05, 0x6d, 0x79, 0x73, 0x71, + 0x6c, 0x12, 0x52, 0x0a, 0x11, 0x68, 0x74, 0x6d, 0x6c, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, + 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x73, + 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, + 0x6e, 0x67, 0x2e, 0x48, 0x74, 0x6d, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x6e, 0x66, + 0x69, 0x67, 0x48, 0x00, 0x52, 0x0f, 0x68, 0x74, 0x6d, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x43, + 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x42, 0x08, 0x0a, 0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x22, + 0x1d, 0x0a, 0x0b, 0x41, 0x64, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, + 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x1f, + 0x0a, 0x0d, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, + 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, + 0x20, 0x0a, 0x0e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, + 0x64, 0x22, 0x1c, 0x0a, 0x0a, 0x52, 0x75, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, + 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, + 0x1d, 0x0a, 0x0b, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, + 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x1d, + 0x0a, 0x0b, 0x52, 0x75, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, + 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x1e, 0x0a, + 0x0c, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, + 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x2a, 0x42, 0x0a, + 0x0d, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1e, + 0x0a, 0x1a, 0x53, 0x43, 0x48, 0x45, 0x44, 0x55, 0x4c, 0x45, 0x52, 0x5f, 0x43, 0x4f, 0x44, 0x45, + 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x06, + 0x0a, 0x02, 0x4f, 0x4b, 0x10, 0x01, 0x12, 0x09, 0x0a, 0x05, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x10, + 0x02, 0x2a, 0x59, 0x0a, 0x0f, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x72, 0x53, 0x74, + 0x61, 0x74, 0x75, 0x73, 0x12, 0x20, 0x0a, 0x1c, 0x53, 0x43, 0x48, 0x45, 0x44, 0x55, 0x4c, 0x45, + 0x52, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, + 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x52, 0x55, 0x4e, 0x4e, 0x45, 0x44, + 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x53, 0x54, 0x4f, 0x50, 0x50, 0x45, 0x44, 0x10, 0x02, 0x12, + 0x0b, 0x0a, 0x07, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x2a, 0xc0, 0x01, 0x0a, + 0x0d, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, + 0x0a, 0x1a, 0x53, 0x43, 0x48, 0x45, 0x44, 0x55, 0x4c, 0x45, 0x52, 0x5f, 0x54, 0x59, 0x50, 0x45, + 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x07, + 0x0a, 0x03, 0x54, 0x43, 0x50, 0x10, 0x01, 0x12, 0x08, 0x0a, 0x04, 0x47, 0x52, 0x50, 0x43, 0x10, + 0x02, 0x12, 0x08, 0x0a, 0x04, 0x48, 0x54, 0x54, 0x50, 0x10, 0x03, 0x12, 0x0c, 0x0a, 0x08, 0x53, + 0x49, 0x54, 0x45, 0x5f, 0x4d, 0x41, 0x50, 0x10, 0x04, 0x12, 0x13, 0x0a, 0x0f, 0x48, 0x54, 0x54, + 0x50, 0x5f, 0x4a, 0x53, 0x4f, 0x4e, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x10, 0x05, 0x12, 0x12, + 0x0a, 0x0e, 0x53, 0x53, 0x4c, 0x5f, 0x45, 0x58, 0x50, 0x49, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, + 0x10, 0x06, 0x12, 0x09, 0x0a, 0x05, 0x4d, 0x4f, 0x4e, 0x47, 0x4f, 0x10, 0x07, 0x12, 0x0c, 0x0a, + 0x08, 0x50, 0x4f, 0x53, 0x54, 0x47, 0x52, 0x45, 0x53, 0x10, 0x08, 0x12, 0x0d, 0x0a, 0x09, 0x43, + 0x41, 0x53, 0x53, 0x41, 0x4e, 0x44, 0x52, 0x41, 0x10, 0x09, 0x12, 0x09, 0x0a, 0x05, 0x4d, 0x59, + 0x53, 0x51, 0x4c, 0x10, 0x0a, 0x12, 0x08, 0x0a, 0x04, 0x48, 0x54, 0x4d, 0x4c, 0x10, 0x0b, 0x32, + 0x85, 0x04, 0x0a, 0x12, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x72, 0x73, 0x45, 0x78, + 0x65, 0x63, 0x75, 0x74, 0x6f, 0x72, 0x12, 0x59, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, + 0x65, 0x64, 0x75, 0x6c, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, + 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, + 0x74, 0x79, 0x1a, 0x2d, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, + 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x65, + 0x64, 0x75, 0x6c, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x65, 0x12, 0x60, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, + 0x72, 0x42, 0x79, 0x49, 0x64, 0x12, 0x2c, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, + 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x47, 0x65, 0x74, 0x53, + 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x72, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, + 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, + 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, + 0x6c, 0x65, 0x72, 0x12, 0x48, 0x0a, 0x03, 0x41, 0x64, 0x64, 0x12, 0x1f, 0x2e, 0x73, 0x71, 0x75, + 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, + 0x2e, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x73, 0x71, + 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, + 0x67, 0x2e, 0x41, 0x64, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x51, 0x0a, + 0x06, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x12, 0x22, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, + 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x52, 0x65, + 0x6d, 0x6f, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x73, 0x71, + 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, + 0x67, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x12, 0x48, 0x0a, 0x03, 0x52, 0x75, 0x6e, 0x12, 0x1f, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, + 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x52, 0x75, + 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, + 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x52, + 0x75, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4b, 0x0a, 0x04, 0x53, 0x74, + 0x6f, 0x70, 0x12, 0x20, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x6f, + 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2e, 0x76, 0x31, 0x2e, + 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x53, 0x74, 0x6f, 0x70, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x24, 0x5a, 0x22, 0x67, 0x69, 0x74, 0x68, 0x75, + 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x71, 0x75, 0x7a, 0x79, 0x2f, 0x73, 0x71, 0x75, 0x7a, + 0x79, 0x5f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( @@ -2208,95 +2477,104 @@ func file_proto_v1_squzy_monitoring_proto_rawDescGZIP() []byte { return file_proto_v1_squzy_monitoring_proto_rawDescData } -var file_proto_v1_squzy_monitoring_proto_enumTypes = make([]protoimpl.EnumInfo, 4) -var file_proto_v1_squzy_monitoring_proto_msgTypes = make([]protoimpl.MessageInfo, 25) +var file_proto_v1_squzy_monitoring_proto_enumTypes = make([]protoimpl.EnumInfo, 5) +var file_proto_v1_squzy_monitoring_proto_msgTypes = make([]protoimpl.MessageInfo, 28) var file_proto_v1_squzy_monitoring_proto_goTypes = []interface{}{ (SchedulerCode)(0), // 0: squzy.v1.monitoring.SchedulerCode (SchedulerStatus)(0), // 1: squzy.v1.monitoring.SchedulerStatus (SchedulerType)(0), // 2: squzy.v1.monitoring.SchedulerType (HttpJsonValueConfig_JsonValueParseType)(0), // 3: squzy.v1.monitoring.HttpJsonValueConfig.JsonValueParseType - (*SchedulerSnapshotWithId)(nil), // 4: squzy.v1.monitoring.SchedulerSnapshotWithId - (*SchedulerSnapshot)(nil), // 5: squzy.v1.monitoring.SchedulerSnapshot - (*GetSchedulerByIdRequest)(nil), // 6: squzy.v1.monitoring.GetSchedulerByIdRequest - (*Scheduler)(nil), // 7: squzy.v1.monitoring.Scheduler - (*GetSchedulerListResponse)(nil), // 8: squzy.v1.monitoring.GetSchedulerListResponse - (*SiteMapConfig)(nil), // 9: squzy.v1.monitoring.SiteMapConfig - (*TcpConfig)(nil), // 10: squzy.v1.monitoring.TcpConfig - (*SslExpirationConfig)(nil), // 11: squzy.v1.monitoring.SslExpirationConfig - (*DbConfig)(nil), // 12: squzy.v1.monitoring.DbConfig - (*GrpcConfig)(nil), // 13: squzy.v1.monitoring.GrpcConfig - (*HttpConfig)(nil), // 14: squzy.v1.monitoring.HttpConfig - (*HttpJsonValueConfig)(nil), // 15: squzy.v1.monitoring.HttpJsonValueConfig - (*AddRequest)(nil), // 16: squzy.v1.monitoring.AddRequest - (*AddResponse)(nil), // 17: squzy.v1.monitoring.AddResponse - (*RemoveRequest)(nil), // 18: squzy.v1.monitoring.RemoveRequest - (*RemoveResponse)(nil), // 19: squzy.v1.monitoring.RemoveResponse - (*RunRequest)(nil), // 20: squzy.v1.monitoring.RunRequest - (*StopRequest)(nil), // 21: squzy.v1.monitoring.StopRequest - (*RunResponse)(nil), // 22: squzy.v1.monitoring.RunResponse - (*StopResponse)(nil), // 23: squzy.v1.monitoring.StopResponse - (*SchedulerSnapshot_Error)(nil), // 24: squzy.v1.monitoring.SchedulerSnapshot.Error - (*SchedulerSnapshot_MetaData)(nil), // 25: squzy.v1.monitoring.SchedulerSnapshot.MetaData - nil, // 26: squzy.v1.monitoring.HttpConfig.HeadersEntry - nil, // 27: squzy.v1.monitoring.HttpJsonValueConfig.HeadersEntry - (*HttpJsonValueConfig_Selectors)(nil), // 28: squzy.v1.monitoring.HttpJsonValueConfig.Selectors - (*timestamppb.Timestamp)(nil), // 29: google.protobuf.Timestamp - (*structpb.Value)(nil), // 30: google.protobuf.Value - (*emptypb.Empty)(nil), // 31: google.protobuf.Empty + (HtmlValueConfig_HtmlValueParseType)(0), // 4: squzy.v1.monitoring.HtmlValueConfig.HtmlValueParseType + (*SchedulerSnapshotWithId)(nil), // 5: squzy.v1.monitoring.SchedulerSnapshotWithId + (*SchedulerSnapshot)(nil), // 6: squzy.v1.monitoring.SchedulerSnapshot + (*GetSchedulerByIdRequest)(nil), // 7: squzy.v1.monitoring.GetSchedulerByIdRequest + (*Scheduler)(nil), // 8: squzy.v1.monitoring.Scheduler + (*GetSchedulerListResponse)(nil), // 9: squzy.v1.monitoring.GetSchedulerListResponse + (*SiteMapConfig)(nil), // 10: squzy.v1.monitoring.SiteMapConfig + (*TcpConfig)(nil), // 11: squzy.v1.monitoring.TcpConfig + (*SslExpirationConfig)(nil), // 12: squzy.v1.monitoring.SslExpirationConfig + (*DbConfig)(nil), // 13: squzy.v1.monitoring.DbConfig + (*GrpcConfig)(nil), // 14: squzy.v1.monitoring.GrpcConfig + (*HttpConfig)(nil), // 15: squzy.v1.monitoring.HttpConfig + (*HttpJsonValueConfig)(nil), // 16: squzy.v1.monitoring.HttpJsonValueConfig + (*HtmlValueConfig)(nil), // 17: squzy.v1.monitoring.HtmlValueConfig + (*AddRequest)(nil), // 18: squzy.v1.monitoring.AddRequest + (*AddResponse)(nil), // 19: squzy.v1.monitoring.AddResponse + (*RemoveRequest)(nil), // 20: squzy.v1.monitoring.RemoveRequest + (*RemoveResponse)(nil), // 21: squzy.v1.monitoring.RemoveResponse + (*RunRequest)(nil), // 22: squzy.v1.monitoring.RunRequest + (*StopRequest)(nil), // 23: squzy.v1.monitoring.StopRequest + (*RunResponse)(nil), // 24: squzy.v1.monitoring.RunResponse + (*StopResponse)(nil), // 25: squzy.v1.monitoring.StopResponse + (*SchedulerSnapshot_Error)(nil), // 26: squzy.v1.monitoring.SchedulerSnapshot.Error + (*SchedulerSnapshot_MetaData)(nil), // 27: squzy.v1.monitoring.SchedulerSnapshot.MetaData + nil, // 28: squzy.v1.monitoring.HttpConfig.HeadersEntry + nil, // 29: squzy.v1.monitoring.HttpJsonValueConfig.HeadersEntry + (*HttpJsonValueConfig_Selectors)(nil), // 30: squzy.v1.monitoring.HttpJsonValueConfig.Selectors + nil, // 31: squzy.v1.monitoring.HtmlValueConfig.HeadersEntry + (*HtmlValueConfig_Selector)(nil), // 32: squzy.v1.monitoring.HtmlValueConfig.Selector + (*timestamppb.Timestamp)(nil), // 33: google.protobuf.Timestamp + (*structpb.Value)(nil), // 34: google.protobuf.Value + (*emptypb.Empty)(nil), // 35: google.protobuf.Empty } var file_proto_v1_squzy_monitoring_proto_depIdxs = []int32{ - 5, // 0: squzy.v1.monitoring.SchedulerSnapshotWithId.snapshot:type_name -> squzy.v1.monitoring.SchedulerSnapshot + 6, // 0: squzy.v1.monitoring.SchedulerSnapshotWithId.snapshot:type_name -> squzy.v1.monitoring.SchedulerSnapshot 0, // 1: squzy.v1.monitoring.SchedulerSnapshot.code:type_name -> squzy.v1.monitoring.SchedulerCode 2, // 2: squzy.v1.monitoring.SchedulerSnapshot.type:type_name -> squzy.v1.monitoring.SchedulerType - 24, // 3: squzy.v1.monitoring.SchedulerSnapshot.error:type_name -> squzy.v1.monitoring.SchedulerSnapshot.Error - 25, // 4: squzy.v1.monitoring.SchedulerSnapshot.meta:type_name -> squzy.v1.monitoring.SchedulerSnapshot.MetaData + 26, // 3: squzy.v1.monitoring.SchedulerSnapshot.error:type_name -> squzy.v1.monitoring.SchedulerSnapshot.Error + 27, // 4: squzy.v1.monitoring.SchedulerSnapshot.meta:type_name -> squzy.v1.monitoring.SchedulerSnapshot.MetaData 2, // 5: squzy.v1.monitoring.Scheduler.type:type_name -> squzy.v1.monitoring.SchedulerType 1, // 6: squzy.v1.monitoring.Scheduler.status:type_name -> squzy.v1.monitoring.SchedulerStatus - 10, // 7: squzy.v1.monitoring.Scheduler.tcp:type_name -> squzy.v1.monitoring.TcpConfig - 9, // 8: squzy.v1.monitoring.Scheduler.sitemap:type_name -> squzy.v1.monitoring.SiteMapConfig - 13, // 9: squzy.v1.monitoring.Scheduler.grpc:type_name -> squzy.v1.monitoring.GrpcConfig - 14, // 10: squzy.v1.monitoring.Scheduler.http:type_name -> squzy.v1.monitoring.HttpConfig - 15, // 11: squzy.v1.monitoring.Scheduler.http_value:type_name -> squzy.v1.monitoring.HttpJsonValueConfig - 11, // 12: squzy.v1.monitoring.Scheduler.ssl_expiration:type_name -> squzy.v1.monitoring.SslExpirationConfig - 12, // 13: squzy.v1.monitoring.Scheduler.mongo:type_name -> squzy.v1.monitoring.DbConfig - 12, // 14: squzy.v1.monitoring.Scheduler.postgres:type_name -> squzy.v1.monitoring.DbConfig - 12, // 15: squzy.v1.monitoring.Scheduler.cassandra:type_name -> squzy.v1.monitoring.DbConfig - 12, // 16: squzy.v1.monitoring.Scheduler.mysql:type_name -> squzy.v1.monitoring.DbConfig - 7, // 17: squzy.v1.monitoring.GetSchedulerListResponse.lists:type_name -> squzy.v1.monitoring.Scheduler - 26, // 18: squzy.v1.monitoring.HttpConfig.headers:type_name -> squzy.v1.monitoring.HttpConfig.HeadersEntry - 27, // 19: squzy.v1.monitoring.HttpJsonValueConfig.headers:type_name -> squzy.v1.monitoring.HttpJsonValueConfig.HeadersEntry - 28, // 20: squzy.v1.monitoring.HttpJsonValueConfig.selectors:type_name -> squzy.v1.monitoring.HttpJsonValueConfig.Selectors - 10, // 21: squzy.v1.monitoring.AddRequest.tcp:type_name -> squzy.v1.monitoring.TcpConfig - 9, // 22: squzy.v1.monitoring.AddRequest.sitemap:type_name -> squzy.v1.monitoring.SiteMapConfig - 13, // 23: squzy.v1.monitoring.AddRequest.grpc:type_name -> squzy.v1.monitoring.GrpcConfig - 14, // 24: squzy.v1.monitoring.AddRequest.http:type_name -> squzy.v1.monitoring.HttpConfig - 15, // 25: squzy.v1.monitoring.AddRequest.http_value:type_name -> squzy.v1.monitoring.HttpJsonValueConfig - 11, // 26: squzy.v1.monitoring.AddRequest.ssl_expiration:type_name -> squzy.v1.monitoring.SslExpirationConfig - 12, // 27: squzy.v1.monitoring.AddRequest.mongo:type_name -> squzy.v1.monitoring.DbConfig - 12, // 28: squzy.v1.monitoring.AddRequest.postgres:type_name -> squzy.v1.monitoring.DbConfig - 12, // 29: squzy.v1.monitoring.AddRequest.cassandra:type_name -> squzy.v1.monitoring.DbConfig - 12, // 30: squzy.v1.monitoring.AddRequest.mysql:type_name -> squzy.v1.monitoring.DbConfig - 29, // 31: squzy.v1.monitoring.SchedulerSnapshot.MetaData.start_time:type_name -> google.protobuf.Timestamp - 29, // 32: squzy.v1.monitoring.SchedulerSnapshot.MetaData.end_time:type_name -> google.protobuf.Timestamp - 30, // 33: squzy.v1.monitoring.SchedulerSnapshot.MetaData.value:type_name -> google.protobuf.Value - 3, // 34: squzy.v1.monitoring.HttpJsonValueConfig.Selectors.type:type_name -> squzy.v1.monitoring.HttpJsonValueConfig.JsonValueParseType - 31, // 35: squzy.v1.monitoring.SchedulersExecutor.GetSchedulerList:input_type -> google.protobuf.Empty - 6, // 36: squzy.v1.monitoring.SchedulersExecutor.GetSchedulerById:input_type -> squzy.v1.monitoring.GetSchedulerByIdRequest - 16, // 37: squzy.v1.monitoring.SchedulersExecutor.Add:input_type -> squzy.v1.monitoring.AddRequest - 18, // 38: squzy.v1.monitoring.SchedulersExecutor.Remove:input_type -> squzy.v1.monitoring.RemoveRequest - 20, // 39: squzy.v1.monitoring.SchedulersExecutor.Run:input_type -> squzy.v1.monitoring.RunRequest - 21, // 40: squzy.v1.monitoring.SchedulersExecutor.Stop:input_type -> squzy.v1.monitoring.StopRequest - 8, // 41: squzy.v1.monitoring.SchedulersExecutor.GetSchedulerList:output_type -> squzy.v1.monitoring.GetSchedulerListResponse - 7, // 42: squzy.v1.monitoring.SchedulersExecutor.GetSchedulerById:output_type -> squzy.v1.monitoring.Scheduler - 17, // 43: squzy.v1.monitoring.SchedulersExecutor.Add:output_type -> squzy.v1.monitoring.AddResponse - 19, // 44: squzy.v1.monitoring.SchedulersExecutor.Remove:output_type -> squzy.v1.monitoring.RemoveResponse - 22, // 45: squzy.v1.monitoring.SchedulersExecutor.Run:output_type -> squzy.v1.monitoring.RunResponse - 23, // 46: squzy.v1.monitoring.SchedulersExecutor.Stop:output_type -> squzy.v1.monitoring.StopResponse - 41, // [41:47] is the sub-list for method output_type - 35, // [35:41] is the sub-list for method input_type - 35, // [35:35] is the sub-list for extension type_name - 35, // [35:35] is the sub-list for extension extendee - 0, // [0:35] is the sub-list for field type_name + 11, // 7: squzy.v1.monitoring.Scheduler.tcp:type_name -> squzy.v1.monitoring.TcpConfig + 10, // 8: squzy.v1.monitoring.Scheduler.sitemap:type_name -> squzy.v1.monitoring.SiteMapConfig + 14, // 9: squzy.v1.monitoring.Scheduler.grpc:type_name -> squzy.v1.monitoring.GrpcConfig + 15, // 10: squzy.v1.monitoring.Scheduler.http:type_name -> squzy.v1.monitoring.HttpConfig + 16, // 11: squzy.v1.monitoring.Scheduler.http_value:type_name -> squzy.v1.monitoring.HttpJsonValueConfig + 12, // 12: squzy.v1.monitoring.Scheduler.ssl_expiration:type_name -> squzy.v1.monitoring.SslExpirationConfig + 13, // 13: squzy.v1.monitoring.Scheduler.mongo:type_name -> squzy.v1.monitoring.DbConfig + 13, // 14: squzy.v1.monitoring.Scheduler.postgres:type_name -> squzy.v1.monitoring.DbConfig + 13, // 15: squzy.v1.monitoring.Scheduler.cassandra:type_name -> squzy.v1.monitoring.DbConfig + 13, // 16: squzy.v1.monitoring.Scheduler.mysql:type_name -> squzy.v1.monitoring.DbConfig + 17, // 17: squzy.v1.monitoring.Scheduler.html_value_config:type_name -> squzy.v1.monitoring.HtmlValueConfig + 8, // 18: squzy.v1.monitoring.GetSchedulerListResponse.lists:type_name -> squzy.v1.monitoring.Scheduler + 28, // 19: squzy.v1.monitoring.HttpConfig.headers:type_name -> squzy.v1.monitoring.HttpConfig.HeadersEntry + 29, // 20: squzy.v1.monitoring.HttpJsonValueConfig.headers:type_name -> squzy.v1.monitoring.HttpJsonValueConfig.HeadersEntry + 30, // 21: squzy.v1.monitoring.HttpJsonValueConfig.selectors:type_name -> squzy.v1.monitoring.HttpJsonValueConfig.Selectors + 31, // 22: squzy.v1.monitoring.HtmlValueConfig.headers:type_name -> squzy.v1.monitoring.HtmlValueConfig.HeadersEntry + 32, // 23: squzy.v1.monitoring.HtmlValueConfig.selectors:type_name -> squzy.v1.monitoring.HtmlValueConfig.Selector + 11, // 24: squzy.v1.monitoring.AddRequest.tcp:type_name -> squzy.v1.monitoring.TcpConfig + 10, // 25: squzy.v1.monitoring.AddRequest.sitemap:type_name -> squzy.v1.monitoring.SiteMapConfig + 14, // 26: squzy.v1.monitoring.AddRequest.grpc:type_name -> squzy.v1.monitoring.GrpcConfig + 15, // 27: squzy.v1.monitoring.AddRequest.http:type_name -> squzy.v1.monitoring.HttpConfig + 16, // 28: squzy.v1.monitoring.AddRequest.http_value:type_name -> squzy.v1.monitoring.HttpJsonValueConfig + 12, // 29: squzy.v1.monitoring.AddRequest.ssl_expiration:type_name -> squzy.v1.monitoring.SslExpirationConfig + 13, // 30: squzy.v1.monitoring.AddRequest.mongo:type_name -> squzy.v1.monitoring.DbConfig + 13, // 31: squzy.v1.monitoring.AddRequest.postgres:type_name -> squzy.v1.monitoring.DbConfig + 13, // 32: squzy.v1.monitoring.AddRequest.cassandra:type_name -> squzy.v1.monitoring.DbConfig + 13, // 33: squzy.v1.monitoring.AddRequest.mysql:type_name -> squzy.v1.monitoring.DbConfig + 17, // 34: squzy.v1.monitoring.AddRequest.html_value_config:type_name -> squzy.v1.monitoring.HtmlValueConfig + 33, // 35: squzy.v1.monitoring.SchedulerSnapshot.MetaData.start_time:type_name -> google.protobuf.Timestamp + 33, // 36: squzy.v1.monitoring.SchedulerSnapshot.MetaData.end_time:type_name -> google.protobuf.Timestamp + 34, // 37: squzy.v1.monitoring.SchedulerSnapshot.MetaData.value:type_name -> google.protobuf.Value + 3, // 38: squzy.v1.monitoring.HttpJsonValueConfig.Selectors.type:type_name -> squzy.v1.monitoring.HttpJsonValueConfig.JsonValueParseType + 4, // 39: squzy.v1.monitoring.HtmlValueConfig.Selector.type:type_name -> squzy.v1.monitoring.HtmlValueConfig.HtmlValueParseType + 35, // 40: squzy.v1.monitoring.SchedulersExecutor.GetSchedulerList:input_type -> google.protobuf.Empty + 7, // 41: squzy.v1.monitoring.SchedulersExecutor.GetSchedulerById:input_type -> squzy.v1.monitoring.GetSchedulerByIdRequest + 18, // 42: squzy.v1.monitoring.SchedulersExecutor.Add:input_type -> squzy.v1.monitoring.AddRequest + 20, // 43: squzy.v1.monitoring.SchedulersExecutor.Remove:input_type -> squzy.v1.monitoring.RemoveRequest + 22, // 44: squzy.v1.monitoring.SchedulersExecutor.Run:input_type -> squzy.v1.monitoring.RunRequest + 23, // 45: squzy.v1.monitoring.SchedulersExecutor.Stop:input_type -> squzy.v1.monitoring.StopRequest + 9, // 46: squzy.v1.monitoring.SchedulersExecutor.GetSchedulerList:output_type -> squzy.v1.monitoring.GetSchedulerListResponse + 8, // 47: squzy.v1.monitoring.SchedulersExecutor.GetSchedulerById:output_type -> squzy.v1.monitoring.Scheduler + 19, // 48: squzy.v1.monitoring.SchedulersExecutor.Add:output_type -> squzy.v1.monitoring.AddResponse + 21, // 49: squzy.v1.monitoring.SchedulersExecutor.Remove:output_type -> squzy.v1.monitoring.RemoveResponse + 24, // 50: squzy.v1.monitoring.SchedulersExecutor.Run:output_type -> squzy.v1.monitoring.RunResponse + 25, // 51: squzy.v1.monitoring.SchedulersExecutor.Stop:output_type -> squzy.v1.monitoring.StopResponse + 46, // [46:52] is the sub-list for method output_type + 40, // [40:46] is the sub-list for method input_type + 40, // [40:40] is the sub-list for extension type_name + 40, // [40:40] is the sub-list for extension extendee + 0, // [0:40] is the sub-list for field type_name } func init() { file_proto_v1_squzy_monitoring_proto_init() } @@ -2450,7 +2728,7 @@ func file_proto_v1_squzy_monitoring_proto_init() { } } file_proto_v1_squzy_monitoring_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*AddRequest); i { + switch v := v.(*HtmlValueConfig); i { case 0: return &v.state case 1: @@ -2462,7 +2740,7 @@ func file_proto_v1_squzy_monitoring_proto_init() { } } file_proto_v1_squzy_monitoring_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*AddResponse); i { + switch v := v.(*AddRequest); i { case 0: return &v.state case 1: @@ -2474,7 +2752,7 @@ func file_proto_v1_squzy_monitoring_proto_init() { } } file_proto_v1_squzy_monitoring_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RemoveRequest); i { + switch v := v.(*AddResponse); i { case 0: return &v.state case 1: @@ -2486,7 +2764,7 @@ func file_proto_v1_squzy_monitoring_proto_init() { } } file_proto_v1_squzy_monitoring_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RemoveResponse); i { + switch v := v.(*RemoveRequest); i { case 0: return &v.state case 1: @@ -2498,7 +2776,7 @@ func file_proto_v1_squzy_monitoring_proto_init() { } } file_proto_v1_squzy_monitoring_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RunRequest); i { + switch v := v.(*RemoveResponse); i { case 0: return &v.state case 1: @@ -2510,7 +2788,7 @@ func file_proto_v1_squzy_monitoring_proto_init() { } } file_proto_v1_squzy_monitoring_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*StopRequest); i { + switch v := v.(*RunRequest); i { case 0: return &v.state case 1: @@ -2522,7 +2800,7 @@ func file_proto_v1_squzy_monitoring_proto_init() { } } file_proto_v1_squzy_monitoring_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RunResponse); i { + switch v := v.(*StopRequest); i { case 0: return &v.state case 1: @@ -2534,7 +2812,7 @@ func file_proto_v1_squzy_monitoring_proto_init() { } } file_proto_v1_squzy_monitoring_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*StopResponse); i { + switch v := v.(*RunResponse); i { case 0: return &v.state case 1: @@ -2546,7 +2824,7 @@ func file_proto_v1_squzy_monitoring_proto_init() { } } file_proto_v1_squzy_monitoring_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SchedulerSnapshot_Error); i { + switch v := v.(*StopResponse); i { case 0: return &v.state case 1: @@ -2558,6 +2836,18 @@ func file_proto_v1_squzy_monitoring_proto_init() { } } file_proto_v1_squzy_monitoring_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*SchedulerSnapshot_Error); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_proto_v1_squzy_monitoring_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SchedulerSnapshot_MetaData); i { case 0: return &v.state @@ -2569,7 +2859,7 @@ func file_proto_v1_squzy_monitoring_proto_init() { return nil } } - file_proto_v1_squzy_monitoring_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { + file_proto_v1_squzy_monitoring_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*HttpJsonValueConfig_Selectors); i { case 0: return &v.state @@ -2581,6 +2871,18 @@ func file_proto_v1_squzy_monitoring_proto_init() { return nil } } + file_proto_v1_squzy_monitoring_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*HtmlValueConfig_Selector); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } } file_proto_v1_squzy_monitoring_proto_msgTypes[3].OneofWrappers = []interface{}{ (*Scheduler_Tcp)(nil), @@ -2593,8 +2895,9 @@ func file_proto_v1_squzy_monitoring_proto_init() { (*Scheduler_Postgres)(nil), (*Scheduler_Cassandra)(nil), (*Scheduler_Mysql)(nil), + (*Scheduler_HtmlValueConfig)(nil), } - file_proto_v1_squzy_monitoring_proto_msgTypes[12].OneofWrappers = []interface{}{ + file_proto_v1_squzy_monitoring_proto_msgTypes[13].OneofWrappers = []interface{}{ (*AddRequest_Tcp)(nil), (*AddRequest_Sitemap)(nil), (*AddRequest_Grpc)(nil), @@ -2605,14 +2908,15 @@ func file_proto_v1_squzy_monitoring_proto_init() { (*AddRequest_Postgres)(nil), (*AddRequest_Cassandra)(nil), (*AddRequest_Mysql)(nil), + (*AddRequest_HtmlValueConfig)(nil), } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_proto_v1_squzy_monitoring_proto_rawDesc, - NumEnums: 4, - NumMessages: 25, + NumEnums: 5, + NumMessages: 28, NumExtensions: 0, NumServices: 1, },