From 02b4e95473316948020af0b7a4f0f22c73929b0e Mon Sep 17 00:00:00 2001 From: Jean de Klerk <deklerk@google.com> Date: Sat, 21 Jul 2018 22:21:00 -0700 Subject: [PATCH] update from googleapis (#84) --- .../devtools/cloudprofiler/v2/profiler.pb.go | 343 ++++++++++++------ 1 file changed, 229 insertions(+), 114 deletions(-) diff --git a/googleapis/devtools/cloudprofiler/v2/profiler.pb.go b/googleapis/devtools/cloudprofiler/v2/profiler.pb.go index 53887f89..ff6bc0e8 100644 --- a/googleapis/devtools/cloudprofiler/v2/profiler.pb.go +++ b/googleapis/devtools/cloudprofiler/v2/profiler.pb.go @@ -9,6 +9,7 @@ import math "math" import duration "github.com/golang/protobuf/ptypes/duration" import _ "github.com/golang/protobuf/ptypes/timestamp" import _ "google.golang.org/genproto/googleapis/api/annotations" +import field_mask "google.golang.org/genproto/protobuf/field_mask" import ( context "golang.org/x/net/context" @@ -38,12 +39,22 @@ const ( ProfileType_CPU ProfileType = 1 // Wallclock time sampling. More expensive as stops all threads. ProfileType_WALL ProfileType = 2 - // Heap allocation sampling. + // In-use heap profile. Represents a snapshot of the allocations that are + // live at the time of the profiling. ProfileType_HEAP ProfileType = 3 // Single-shot collection of all thread stacks. ProfileType_THREADS ProfileType = 4 // Synchronization contention profile. ProfileType_CONTENTION ProfileType = 5 + // Peak heap profile. + ProfileType_PEAK_HEAP ProfileType = 6 + // Heap allocation profile. It represents the aggregation of all allocations + // made over the duration of the profile. All allocations are included, + // including those that might have been freed by the end of the profiling + // interval. The profile is in particular useful for garbage collecting + // languages to understand which parts of the code create most of the garbage + // collection pressure to see if those can be optimized. + ProfileType_ALLOCS ProfileType = 7 ) var ProfileType_name = map[int32]string{ @@ -53,6 +64,8 @@ var ProfileType_name = map[int32]string{ 3: "HEAP", 4: "THREADS", 5: "CONTENTION", + 6: "PEAK_HEAP", + 7: "ALLOCS", } var ProfileType_value = map[string]int32{ "PROFILE_TYPE_UNSPECIFIED": 0, @@ -61,40 +74,38 @@ var ProfileType_value = map[string]int32{ "HEAP": 3, "THREADS": 4, "CONTENTION": 5, + "PEAK_HEAP": 6, + "ALLOCS": 7, } func (x ProfileType) String() string { return proto.EnumName(ProfileType_name, int32(x)) } func (ProfileType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_profiler_7d2b72df1b5ba64c, []int{0} + return fileDescriptor_profiler_b0510bd0266730a7, []int{0} } -// CreateProfileRequest describes a profile resource creation request. -// Deployment field must be populated for both online and offline modes. -// For the online mode, profile field is not set and the profile_type specifies -// the list of profile types supported by the agent. The creation call will hang -// until a profile of one of these types needs to be collected. For offline -// mode, profile field must be set, profile_type must be empty, and deployment -// field must be identical to the deployment in the profile. +// CreateProfileRequest describes a profile resource online creation request. +// The deployment field must be populated. The profile_type specifies the list +// of profile types supported by the agent. The creation call will hang until a +// profile of one of these types needs to be collected. type CreateProfileRequest struct { + // Parent project to create the profile in. + Parent string `protobuf:"bytes,4,opt,name=parent,proto3" json:"parent,omitempty"` // Deployment details. Deployment *Deployment `protobuf:"bytes,1,opt,name=deployment,proto3" json:"deployment,omitempty"` - // Online mode: One or more profile types that the agent is capable of - // providing. - ProfileType []ProfileType `protobuf:"varint,2,rep,packed,name=profile_type,json=profileType,proto3,enum=google.devtools.cloudprofiler.v2.ProfileType" json:"profile_type,omitempty"` - // Offline mode: Contents of the profile to create. - Profile *Profile `protobuf:"bytes,3,opt,name=profile,proto3" json:"profile,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + // One or more profile types that the agent is capable of providing. + ProfileType []ProfileType `protobuf:"varint,2,rep,packed,name=profile_type,json=profileType,proto3,enum=google.devtools.cloudprofiler.v2.ProfileType" json:"profile_type,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *CreateProfileRequest) Reset() { *m = CreateProfileRequest{} } func (m *CreateProfileRequest) String() string { return proto.CompactTextString(m) } func (*CreateProfileRequest) ProtoMessage() {} func (*CreateProfileRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_profiler_7d2b72df1b5ba64c, []int{0} + return fileDescriptor_profiler_b0510bd0266730a7, []int{0} } func (m *CreateProfileRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_CreateProfileRequest.Unmarshal(m, b) @@ -114,6 +125,13 @@ func (m *CreateProfileRequest) XXX_DiscardUnknown() { var xxx_messageInfo_CreateProfileRequest proto.InternalMessageInfo +func (m *CreateProfileRequest) GetParent() string { + if m != nil { + return m.Parent + } + return "" +} + func (m *CreateProfileRequest) GetDeployment() *Deployment { if m != nil { return m.Deployment @@ -128,7 +146,50 @@ func (m *CreateProfileRequest) GetProfileType() []ProfileType { return nil } -func (m *CreateProfileRequest) GetProfile() *Profile { +// CreateOfflineProfileRequest describes a profile resource offline creation +// request. Profile field must be set. +type CreateOfflineProfileRequest struct { + // Parent project to create the profile in. + Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"` + // Contents of the profile to create. + Profile *Profile `protobuf:"bytes,2,opt,name=profile,proto3" json:"profile,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CreateOfflineProfileRequest) Reset() { *m = CreateOfflineProfileRequest{} } +func (m *CreateOfflineProfileRequest) String() string { return proto.CompactTextString(m) } +func (*CreateOfflineProfileRequest) ProtoMessage() {} +func (*CreateOfflineProfileRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_profiler_b0510bd0266730a7, []int{1} +} +func (m *CreateOfflineProfileRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_CreateOfflineProfileRequest.Unmarshal(m, b) +} +func (m *CreateOfflineProfileRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_CreateOfflineProfileRequest.Marshal(b, m, deterministic) +} +func (dst *CreateOfflineProfileRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_CreateOfflineProfileRequest.Merge(dst, src) +} +func (m *CreateOfflineProfileRequest) XXX_Size() int { + return xxx_messageInfo_CreateOfflineProfileRequest.Size(m) +} +func (m *CreateOfflineProfileRequest) XXX_DiscardUnknown() { + xxx_messageInfo_CreateOfflineProfileRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_CreateOfflineProfileRequest proto.InternalMessageInfo + +func (m *CreateOfflineProfileRequest) GetParent() string { + if m != nil { + return m.Parent + } + return "" +} + +func (m *CreateOfflineProfileRequest) GetProfile() *Profile { if m != nil { return m.Profile } @@ -138,17 +199,22 @@ func (m *CreateProfileRequest) GetProfile() *Profile { // UpdateProfileRequest contains the profile to update. type UpdateProfileRequest struct { // Profile to update - Profile *Profile `protobuf:"bytes,1,opt,name=profile,proto3" json:"profile,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Profile *Profile `protobuf:"bytes,1,opt,name=profile,proto3" json:"profile,omitempty"` + // Field mask used to specify the fields to be overwritten. Currently only + // profile_bytes and labels fields are supported by UpdateProfile, so only + // those fields can be specified in the mask. When no mask is provided, all + // fields are overwritten. + UpdateMask *field_mask.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *UpdateProfileRequest) Reset() { *m = UpdateProfileRequest{} } func (m *UpdateProfileRequest) String() string { return proto.CompactTextString(m) } func (*UpdateProfileRequest) ProtoMessage() {} func (*UpdateProfileRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_profiler_7d2b72df1b5ba64c, []int{1} + return fileDescriptor_profiler_b0510bd0266730a7, []int{2} } func (m *UpdateProfileRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_UpdateProfileRequest.Unmarshal(m, b) @@ -175,13 +241,20 @@ func (m *UpdateProfileRequest) GetProfile() *Profile { return nil } +func (m *UpdateProfileRequest) GetUpdateMask() *field_mask.FieldMask { + if m != nil { + return m.UpdateMask + } + return nil +} + // Profile resource. type Profile struct { - // Opaque, server-assigned, unique ID for this profile. - // Output only. + // Output only. Opaque, server-assigned, unique ID for this profile. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // Type of profile. - // Input (for the offline mode) or output (for the online mode). + // For offline mode, this must be specified when creating the profile. For + // online mode it is assigned and returned by the server. ProfileType ProfileType `protobuf:"varint,2,opt,name=profile_type,json=profileType,proto3,enum=google.devtools.cloudprofiler.v2.ProfileType" json:"profile_type,omitempty"` // Deployment this profile corresponds to. Deployment *Deployment `protobuf:"bytes,3,opt,name=deployment,proto3" json:"deployment,omitempty"` @@ -192,13 +265,12 @@ type Profile struct { // data, in case the profiling can't be stopped immediately (e.g. in case // stopping the profiling is handled asynchronously). Duration *duration.Duration `protobuf:"bytes,4,opt,name=duration,proto3" json:"duration,omitempty"` - // Profile bytes, as a gzip compressed serialized proto, the format is - // https://github.com/google/pprof/blob/master/proto/profile.proto. + // Input only. Profile bytes, as a gzip compressed serialized proto, the + // format is https://github.com/google/pprof/blob/master/proto/profile.proto. ProfileBytes []byte `protobuf:"bytes,5,opt,name=profile_bytes,json=profileBytes,proto3" json:"profile_bytes,omitempty"` - // Labels associated to this specific profile. These labels will get merged - // with the deployment labels for the final data set. - // See documentation on deployment labels for validation rules and limits. - // Input only, will not be populated on responses. + // Input only. Labels associated to this specific profile. These labels will + // get merged with the deployment labels for the final data set. See + // documentation on deployment labels for validation rules and limits. Labels map[string]string `protobuf:"bytes,6,rep,name=labels,proto3" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -209,7 +281,7 @@ func (m *Profile) Reset() { *m = Profile{} } func (m *Profile) String() string { return proto.CompactTextString(m) } func (*Profile) ProtoMessage() {} func (*Profile) Descriptor() ([]byte, []int) { - return fileDescriptor_profiler_7d2b72df1b5ba64c, []int{2} + return fileDescriptor_profiler_b0510bd0266730a7, []int{3} } func (m *Profile) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_Profile.Unmarshal(m, b) @@ -306,7 +378,7 @@ func (m *Deployment) Reset() { *m = Deployment{} } func (m *Deployment) String() string { return proto.CompactTextString(m) } func (*Deployment) ProtoMessage() {} func (*Deployment) Descriptor() ([]byte, []int) { - return fileDescriptor_profiler_7d2b72df1b5ba64c, []int{3} + return fileDescriptor_profiler_b0510bd0266730a7, []int{4} } func (m *Deployment) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_Deployment.Unmarshal(m, b) @@ -349,6 +421,7 @@ func (m *Deployment) GetLabels() map[string]string { func init() { proto.RegisterType((*CreateProfileRequest)(nil), "google.devtools.cloudprofiler.v2.CreateProfileRequest") + proto.RegisterType((*CreateOfflineProfileRequest)(nil), "google.devtools.cloudprofiler.v2.CreateOfflineProfileRequest") proto.RegisterType((*UpdateProfileRequest)(nil), "google.devtools.cloudprofiler.v2.UpdateProfileRequest") proto.RegisterType((*Profile)(nil), "google.devtools.cloudprofiler.v2.Profile") proto.RegisterMapType((map[string]string)(nil), "google.devtools.cloudprofiler.v2.Profile.LabelsEntry") @@ -369,26 +442,28 @@ const _ = grpc.SupportPackageIsVersion4 // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. type ProfilerServiceClient interface { - // CreateProfile creates a new profile resource. + // CreateProfile creates a new profile resource in the online mode. // - // In the online creation mode: - // * The server ensures that the new profiles are created at a constant rate - // per deployment, so the creation request may hang for some time until the - // next profile session is available. - // * The request may fail with ABORTED error if the creation is not - // available within ~1m, the response will indicate the duration of the - // backoff the client should take before attempting creating a profile - // again. The backoff duration is returned in google.rpc.RetryInfo extension - // on the response status. To a gRPC client, the extension will be return as - // a binary-serialized proto in the trailing metadata item named - // "google.rpc.retryinfo-bin". + // The server ensures that the new profiles are created at a constant rate per + // deployment, so the creation request may hang for some time until the next + // profile session is available. // - // In the offline creation mode: - // * The client provides the profile to create along with the profile bytes, - // the server records it. + // The request may fail with ABORTED error if the creation is not available + // within ~1m, the response will indicate the duration of the backoff the + // client should take before attempting creating a profile again. The backoff + // duration is returned in google.rpc.RetryInfo extension on the response + // status. To a gRPC client, the extension will be return as a + // binary-serialized proto in the trailing metadata item named + // "google.rpc.retryinfo-bin". CreateProfile(ctx context.Context, in *CreateProfileRequest, opts ...grpc.CallOption) (*Profile, error) + // CreateOfflineProfile creates a new profile resource in the offline mode. + // The client provides the profile to create along with the profile bytes, the + // server records it. + CreateOfflineProfile(ctx context.Context, in *CreateOfflineProfileRequest, opts ...grpc.CallOption) (*Profile, error) // UpdateProfile updates the profile bytes and labels on the profile resource - // created in the online mode. + // created in the online mode. Updating the bytes for profiles created in the + // offline mode is currently not supported: the profile content must be + // provided at the time of the profile creation. UpdateProfile(ctx context.Context, in *UpdateProfileRequest, opts ...grpc.CallOption) (*Profile, error) } @@ -409,6 +484,15 @@ func (c *profilerServiceClient) CreateProfile(ctx context.Context, in *CreatePro return out, nil } +func (c *profilerServiceClient) CreateOfflineProfile(ctx context.Context, in *CreateOfflineProfileRequest, opts ...grpc.CallOption) (*Profile, error) { + out := new(Profile) + err := c.cc.Invoke(ctx, "/google.devtools.cloudprofiler.v2.ProfilerService/CreateOfflineProfile", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *profilerServiceClient) UpdateProfile(ctx context.Context, in *UpdateProfileRequest, opts ...grpc.CallOption) (*Profile, error) { out := new(Profile) err := c.cc.Invoke(ctx, "/google.devtools.cloudprofiler.v2.ProfilerService/UpdateProfile", in, out, opts...) @@ -420,26 +504,28 @@ func (c *profilerServiceClient) UpdateProfile(ctx context.Context, in *UpdatePro // ProfilerServiceServer is the server API for ProfilerService service. type ProfilerServiceServer interface { - // CreateProfile creates a new profile resource. + // CreateProfile creates a new profile resource in the online mode. // - // In the online creation mode: - // * The server ensures that the new profiles are created at a constant rate - // per deployment, so the creation request may hang for some time until the - // next profile session is available. - // * The request may fail with ABORTED error if the creation is not - // available within ~1m, the response will indicate the duration of the - // backoff the client should take before attempting creating a profile - // again. The backoff duration is returned in google.rpc.RetryInfo extension - // on the response status. To a gRPC client, the extension will be return as - // a binary-serialized proto in the trailing metadata item named - // "google.rpc.retryinfo-bin". + // The server ensures that the new profiles are created at a constant rate per + // deployment, so the creation request may hang for some time until the next + // profile session is available. // - // In the offline creation mode: - // * The client provides the profile to create along with the profile bytes, - // the server records it. + // The request may fail with ABORTED error if the creation is not available + // within ~1m, the response will indicate the duration of the backoff the + // client should take before attempting creating a profile again. The backoff + // duration is returned in google.rpc.RetryInfo extension on the response + // status. To a gRPC client, the extension will be return as a + // binary-serialized proto in the trailing metadata item named + // "google.rpc.retryinfo-bin". CreateProfile(context.Context, *CreateProfileRequest) (*Profile, error) + // CreateOfflineProfile creates a new profile resource in the offline mode. + // The client provides the profile to create along with the profile bytes, the + // server records it. + CreateOfflineProfile(context.Context, *CreateOfflineProfileRequest) (*Profile, error) // UpdateProfile updates the profile bytes and labels on the profile resource - // created in the online mode. + // created in the online mode. Updating the bytes for profiles created in the + // offline mode is currently not supported: the profile content must be + // provided at the time of the profile creation. UpdateProfile(context.Context, *UpdateProfileRequest) (*Profile, error) } @@ -465,6 +551,24 @@ func _ProfilerService_CreateProfile_Handler(srv interface{}, ctx context.Context return interceptor(ctx, in, info, handler) } +func _ProfilerService_CreateOfflineProfile_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(CreateOfflineProfileRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ProfilerServiceServer).CreateOfflineProfile(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/google.devtools.cloudprofiler.v2.ProfilerService/CreateOfflineProfile", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ProfilerServiceServer).CreateOfflineProfile(ctx, req.(*CreateOfflineProfileRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _ProfilerService_UpdateProfile_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(UpdateProfileRequest) if err := dec(in); err != nil { @@ -491,6 +595,10 @@ var _ProfilerService_serviceDesc = grpc.ServiceDesc{ MethodName: "CreateProfile", Handler: _ProfilerService_CreateProfile_Handler, }, + { + MethodName: "CreateOfflineProfile", + Handler: _ProfilerService_CreateOfflineProfile_Handler, + }, { MethodName: "UpdateProfile", Handler: _ProfilerService_UpdateProfile_Handler, @@ -501,51 +609,58 @@ var _ProfilerService_serviceDesc = grpc.ServiceDesc{ } func init() { - proto.RegisterFile("google/devtools/cloudprofiler/v2/profiler.proto", fileDescriptor_profiler_7d2b72df1b5ba64c) -} - -var fileDescriptor_profiler_7d2b72df1b5ba64c = []byte{ - // 661 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x55, 0xcd, 0x6e, 0xd3, 0x40, - 0x10, 0x66, 0xe3, 0x34, 0x69, 0x27, 0x6d, 0xb1, 0x56, 0x15, 0x32, 0x51, 0x81, 0x28, 0x5c, 0x42, - 0x44, 0x6d, 0xc9, 0x55, 0x51, 0x5b, 0xc4, 0xa1, 0x4d, 0x5c, 0x35, 0x52, 0x9a, 0x58, 0x6e, 0x2a, - 0x04, 0x1c, 0x22, 0xa7, 0xde, 0x5a, 0x06, 0xc7, 0x6b, 0xec, 0x4d, 0xa4, 0xa8, 0xea, 0x85, 0x57, - 0xe0, 0x11, 0xb8, 0xc2, 0xbb, 0x20, 0xf1, 0x0a, 0x3c, 0x00, 0x77, 0x2e, 0xc8, 0xf6, 0x3a, 0x3f, - 0x50, 0x94, 0x94, 0x72, 0xdb, 0x99, 0x9d, 0xef, 0xdb, 0x6f, 0x66, 0xd7, 0x9f, 0x41, 0xb1, 0x29, - 0xb5, 0x5d, 0xa2, 0x58, 0x64, 0xc8, 0x28, 0x75, 0x43, 0xe5, 0xdc, 0xa5, 0x03, 0xcb, 0x0f, 0xe8, - 0x85, 0xe3, 0x92, 0x40, 0x19, 0xaa, 0x4a, 0xba, 0x96, 0xfd, 0x80, 0x32, 0x8a, 0x4b, 0x09, 0x40, - 0x4e, 0x01, 0xf2, 0x0c, 0x40, 0x1e, 0xaa, 0xc5, 0x4d, 0x4e, 0x69, 0xfa, 0x8e, 0x62, 0x7a, 0x1e, - 0x65, 0x26, 0x73, 0xa8, 0x17, 0x26, 0xf8, 0xe2, 0x43, 0xbe, 0x1b, 0x47, 0xbd, 0xc1, 0x85, 0x62, - 0x0d, 0x82, 0xb8, 0x80, 0xef, 0x3f, 0xfa, 0x7d, 0x9f, 0x39, 0x7d, 0x12, 0x32, 0xb3, 0xef, 0x27, - 0x05, 0xe5, 0x9f, 0x08, 0x36, 0x6a, 0x01, 0x31, 0x19, 0xd1, 0x93, 0x43, 0x0d, 0xf2, 0x7e, 0x40, - 0x42, 0x86, 0x9b, 0x00, 0x16, 0xf1, 0x5d, 0x3a, 0xea, 0x13, 0x8f, 0x49, 0xa8, 0x84, 0x2a, 0x05, - 0xf5, 0xa9, 0x3c, 0x4f, 0xae, 0x5c, 0x1f, 0x63, 0x8c, 0x29, 0x3c, 0xd6, 0x61, 0x95, 0x57, 0x75, - 0xd9, 0xc8, 0x27, 0x52, 0xa6, 0x24, 0x54, 0xd6, 0xd5, 0xad, 0xf9, 0x7c, 0x5c, 0x55, 0x67, 0xe4, - 0x13, 0xa3, 0xe0, 0x4f, 0x02, 0x5c, 0x83, 0x3c, 0x0f, 0x25, 0x21, 0x16, 0xf7, 0x64, 0x61, 0x32, - 0x23, 0x45, 0x96, 0xdf, 0xc0, 0xc6, 0x99, 0x6f, 0xfd, 0xd9, 0xfc, 0x14, 0x39, 0xfa, 0x67, 0xf2, - 0x4f, 0x02, 0xe4, 0x79, 0x12, 0x63, 0xc8, 0x7a, 0x66, 0x3f, 0x61, 0x5b, 0x31, 0xe2, 0xf5, 0x35, - 0x33, 0x41, 0xb7, 0x9c, 0xc9, 0xec, 0x9d, 0x09, 0xb7, 0xbc, 0xb3, 0x1d, 0x58, 0x4e, 0x5f, 0x93, - 0x94, 0x8d, 0xb9, 0xee, 0xa7, 0x5c, 0xe9, 0x73, 0x92, 0xeb, 0xbc, 0xc0, 0x18, 0x97, 0xe2, 0xc7, - 0xb0, 0x96, 0xb6, 0xd5, 0x1b, 0x31, 0x12, 0x4a, 0x4b, 0x25, 0x54, 0x59, 0x35, 0xd2, 0x5e, 0x0f, - 0xa3, 0x1c, 0x3e, 0x81, 0x9c, 0x6b, 0xf6, 0x88, 0x1b, 0x4a, 0xb9, 0x92, 0x50, 0x29, 0xa8, 0x3b, - 0x0b, 0x77, 0x2d, 0x37, 0x63, 0x9c, 0xe6, 0xb1, 0x60, 0x64, 0x70, 0x92, 0xe2, 0x1e, 0x14, 0xa6, - 0xd2, 0x58, 0x04, 0xe1, 0x1d, 0x19, 0xf1, 0x61, 0x47, 0x4b, 0xbc, 0x01, 0x4b, 0x43, 0xd3, 0x1d, - 0x24, 0x43, 0x5e, 0x31, 0x92, 0x60, 0x3f, 0xb3, 0x8b, 0xca, 0x5f, 0x11, 0xc0, 0x64, 0x00, 0xf8, - 0x01, 0x80, 0x1f, 0xd0, 0xb7, 0xe4, 0x9c, 0x75, 0x1d, 0x8b, 0x33, 0xac, 0xf0, 0x4c, 0xc3, 0xc2, - 0xf7, 0x20, 0xc7, 0xcc, 0xc0, 0x26, 0x8c, 0x13, 0xf1, 0x08, 0xeb, 0xe3, 0x7e, 0x84, 0xb8, 0x9f, - 0xdd, 0x9b, 0x4c, 0xfd, 0x3f, 0xb7, 0x54, 0x25, 0x50, 0x98, 0x7a, 0x22, 0x78, 0x13, 0x24, 0xdd, - 0x68, 0x1f, 0x35, 0x9a, 0x5a, 0xb7, 0xf3, 0x4a, 0xd7, 0xba, 0x67, 0xad, 0x53, 0x5d, 0xab, 0x35, - 0x8e, 0x1a, 0x5a, 0x5d, 0xbc, 0x83, 0xf3, 0x20, 0xd4, 0xf4, 0x33, 0x11, 0xe1, 0x65, 0xc8, 0xbe, - 0x3c, 0x68, 0x36, 0xc5, 0x4c, 0xb4, 0x3a, 0xd6, 0x0e, 0x74, 0x51, 0xc0, 0x05, 0xc8, 0x77, 0x8e, - 0x0d, 0xed, 0xa0, 0x7e, 0x2a, 0x66, 0xf1, 0x3a, 0x40, 0xad, 0xdd, 0xea, 0x68, 0xad, 0x4e, 0xa3, - 0xdd, 0x12, 0x97, 0xd4, 0x1f, 0x19, 0xb8, 0xcb, 0xcf, 0x09, 0x4e, 0x49, 0x30, 0x74, 0xce, 0x09, - 0xfe, 0x8c, 0x60, 0x6d, 0xc6, 0x4e, 0xf0, 0xb3, 0xf9, 0x93, 0xb8, 0xce, 0x7f, 0x8a, 0x8b, 0x7f, - 0x71, 0xe5, 0xdd, 0x0f, 0xdf, 0xbe, 0x7f, 0xcc, 0xa8, 0xe5, 0x2d, 0x6e, 0xb0, 0xd1, 0x5d, 0x85, - 0xca, 0xe5, 0xe4, 0x29, 0xcb, 0x93, 0x2b, 0xbd, 0x4a, 0x1d, 0x38, 0xdc, 0x47, 0x55, 0xfc, 0x05, - 0xc1, 0xda, 0x8c, 0x01, 0x2c, 0x22, 0xf7, 0x3a, 0xc7, 0xb8, 0x89, 0xdc, 0xbd, 0x58, 0xee, 0xb6, - 0x5a, 0x89, 0xe4, 0x5e, 0xf2, 0x0a, 0x39, 0xb2, 0x84, 0x17, 0x63, 0xf1, 0xd5, 0xb1, 0x4c, 0xa5, - 0x7a, 0xb5, 0x9f, 0x5a, 0xca, 0x61, 0xfb, 0xf5, 0x09, 0x3f, 0xc6, 0xa6, 0xae, 0xe9, 0xd9, 0x32, - 0x0d, 0x6c, 0xc5, 0x26, 0x5e, 0xfc, 0x3d, 0xf2, 0x9f, 0x8f, 0xe9, 0x3b, 0xe1, 0xdf, 0x7f, 0x40, - 0xcf, 0x67, 0x12, 0xbd, 0x5c, 0x8c, 0xdc, 0xfe, 0x15, 0x00, 0x00, 0xff, 0xff, 0x83, 0x3f, 0xa6, - 0xd9, 0xb9, 0x06, 0x00, 0x00, + proto.RegisterFile("google/devtools/cloudprofiler/v2/profiler.proto", fileDescriptor_profiler_b0510bd0266730a7) +} + +var fileDescriptor_profiler_b0510bd0266730a7 = []byte{ + // 784 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0xcd, 0x6e, 0xe2, 0x56, + 0x14, 0xee, 0xc5, 0x04, 0xc2, 0x71, 0x48, 0xad, 0xab, 0xa8, 0xa2, 0x34, 0x6d, 0x2d, 0x57, 0x95, + 0x28, 0x6d, 0x6d, 0xc9, 0x51, 0xaa, 0xfc, 0x28, 0xaa, 0x08, 0x38, 0x0a, 0x2a, 0x01, 0xcb, 0x10, + 0x55, 0xed, 0x06, 0x19, 0x7c, 0x41, 0x6e, 0x8c, 0xed, 0xda, 0x06, 0x89, 0x56, 0x91, 0x46, 0xf3, + 0x0a, 0xb3, 0x99, 0xdd, 0x2c, 0x66, 0x31, 0xab, 0x79, 0x88, 0x79, 0x81, 0xd1, 0x48, 0xf3, 0x0a, + 0xf3, 0x20, 0x23, 0xdb, 0xd7, 0x04, 0x12, 0x22, 0xc8, 0x64, 0x76, 0xf7, 0xe7, 0x9c, 0x8f, 0xef, + 0x3b, 0xe7, 0xf8, 0xbb, 0x80, 0x34, 0x74, 0x9c, 0xa1, 0x45, 0x24, 0x83, 0x4c, 0x02, 0xc7, 0xb1, + 0x7c, 0xa9, 0x6f, 0x39, 0x63, 0xc3, 0xf5, 0x9c, 0x81, 0x69, 0x11, 0x4f, 0x9a, 0xc8, 0x52, 0xb2, + 0x16, 0x5d, 0xcf, 0x09, 0x1c, 0xcc, 0xc7, 0x09, 0x62, 0x92, 0x20, 0x2e, 0x24, 0x88, 0x13, 0xb9, + 0xb8, 0x4b, 0x21, 0x75, 0xd7, 0x94, 0x74, 0xdb, 0x76, 0x02, 0x3d, 0x30, 0x1d, 0xdb, 0x8f, 0xf3, + 0x8b, 0xdf, 0xd1, 0xdb, 0x68, 0xd7, 0x1b, 0x0f, 0x24, 0x63, 0xec, 0x45, 0x01, 0xf4, 0x9e, 0xbf, + 0x7d, 0x3f, 0x30, 0x89, 0x65, 0x74, 0x47, 0xba, 0x7f, 0x45, 0x23, 0xbe, 0xbf, 0x1d, 0x11, 0x98, + 0x23, 0xe2, 0x07, 0xfa, 0xc8, 0x8d, 0x03, 0x84, 0xb7, 0x08, 0x76, 0xaa, 0x1e, 0xd1, 0x03, 0xa2, + 0xc6, 0xb4, 0x34, 0xf2, 0xef, 0x98, 0xf8, 0x01, 0xfe, 0x0a, 0x32, 0xae, 0xee, 0x11, 0x3b, 0x28, + 0xa4, 0x79, 0x54, 0xca, 0x69, 0x74, 0x87, 0x1b, 0x00, 0x06, 0x71, 0x2d, 0x67, 0x3a, 0x0a, 0xef, + 0x10, 0x8f, 0x4a, 0xac, 0xfc, 0x8b, 0xb8, 0x4a, 0xa8, 0x58, 0x9b, 0xe5, 0x68, 0x73, 0xf9, 0x58, + 0x85, 0x2d, 0x1a, 0xd5, 0x0d, 0xa6, 0x2e, 0x29, 0xa4, 0x78, 0xa6, 0xb4, 0x2d, 0xff, 0xba, 0x1a, + 0x8f, 0xb2, 0xed, 0x4c, 0x5d, 0xa2, 0xb1, 0xee, 0xcd, 0x46, 0xf8, 0x0f, 0xbe, 0x89, 0xf5, 0xb4, + 0x06, 0x03, 0xcb, 0xb4, 0xef, 0x97, 0x85, 0x16, 0x64, 0x55, 0x21, 0x4b, 0x51, 0x0a, 0xa9, 0x48, + 0xd3, 0x4f, 0x6b, 0x73, 0xd0, 0x92, 0x4c, 0xe1, 0x39, 0x82, 0x9d, 0x4b, 0xd7, 0xb8, 0x5b, 0xcc, + 0x39, 0x74, 0xf4, 0xa9, 0xe8, 0xf8, 0x18, 0xd8, 0x71, 0x04, 0x1e, 0x35, 0x98, 0xd2, 0x2c, 0x26, + 0x40, 0x49, 0x87, 0xc5, 0xb3, 0x70, 0x06, 0x2e, 0x74, 0xff, 0x4a, 0x83, 0x38, 0x3c, 0x5c, 0x0b, + 0x2f, 0x19, 0xc8, 0x52, 0x44, 0x8c, 0x21, 0x6d, 0xeb, 0x23, 0x42, 0x2b, 0x10, 0xad, 0x97, 0x34, + 0x02, 0x3d, 0xae, 0x11, 0xb7, 0x06, 0x85, 0x79, 0xe4, 0xa0, 0xec, 0xc3, 0x66, 0x32, 0xfc, 0xd1, + 0x40, 0xb2, 0xf2, 0xd7, 0x77, 0x94, 0xd7, 0x68, 0x80, 0x36, 0x0b, 0xc5, 0x3f, 0x40, 0x3e, 0x91, + 0xd5, 0x9b, 0x06, 0xc4, 0x2f, 0x6c, 0xf0, 0xa8, 0xb4, 0xa5, 0x25, 0x5a, 0x4f, 0xc3, 0x33, 0x7c, + 0x01, 0x19, 0x4b, 0xef, 0x11, 0xcb, 0x2f, 0x64, 0x78, 0xa6, 0xc4, 0xca, 0xfb, 0x6b, 0xab, 0x16, + 0x1b, 0x51, 0x9e, 0x62, 0x07, 0xde, 0x54, 0xa3, 0x20, 0xc5, 0x43, 0x60, 0xe7, 0x8e, 0x31, 0x07, + 0xcc, 0x15, 0x99, 0xd2, 0x62, 0x87, 0x4b, 0xbc, 0x03, 0x1b, 0x13, 0xdd, 0x1a, 0xc7, 0x45, 0xce, + 0x69, 0xf1, 0xe6, 0x28, 0x75, 0x80, 0x84, 0x77, 0x08, 0xe0, 0xa6, 0x00, 0xf8, 0x5b, 0x00, 0xd7, + 0x73, 0xfe, 0x21, 0xfd, 0xa0, 0x6b, 0x1a, 0x14, 0x21, 0x47, 0x4f, 0xea, 0x46, 0x38, 0xcb, 0x81, + 0xee, 0x0d, 0x49, 0x40, 0x81, 0xe8, 0x0e, 0xab, 0x33, 0x3d, 0x4c, 0xa4, 0xe7, 0xe0, 0x21, 0x55, + 0xff, 0xcc, 0x92, 0xca, 0x4f, 0x10, 0xb0, 0x73, 0x33, 0x82, 0x77, 0xa1, 0xa0, 0x6a, 0xad, 0xb3, + 0x7a, 0x43, 0xe9, 0x76, 0xfe, 0x52, 0x95, 0xee, 0x65, 0xb3, 0xad, 0x2a, 0xd5, 0xfa, 0x59, 0x5d, + 0xa9, 0x71, 0x5f, 0xe0, 0x2c, 0x30, 0x55, 0xf5, 0x92, 0x43, 0x78, 0x13, 0xd2, 0x7f, 0x56, 0x1a, + 0x0d, 0x2e, 0x15, 0xae, 0xce, 0x95, 0x8a, 0xca, 0x31, 0x98, 0x85, 0x6c, 0xe7, 0x5c, 0x53, 0x2a, + 0xb5, 0x36, 0x97, 0xc6, 0xdb, 0x00, 0xd5, 0x56, 0xb3, 0xa3, 0x34, 0x3b, 0xf5, 0x56, 0x93, 0xdb, + 0xc0, 0x79, 0xc8, 0xa9, 0x4a, 0xe5, 0x8f, 0x6e, 0x14, 0x9b, 0xc1, 0x00, 0x99, 0x4a, 0xa3, 0xd1, + 0xaa, 0xb6, 0xb9, 0xac, 0xfc, 0x2a, 0x0d, 0x5f, 0x52, 0x0a, 0x5e, 0x9b, 0x78, 0x13, 0xb3, 0x4f, + 0xf0, 0x0b, 0x04, 0xf9, 0x05, 0xdf, 0xc3, 0xbf, 0xad, 0xae, 0xd2, 0x32, 0xa3, 0x2c, 0xae, 0xff, + 0x29, 0x0b, 0x3f, 0x3f, 0x7d, 0xff, 0xe1, 0x59, 0xea, 0x47, 0x81, 0x0f, 0xdf, 0x8a, 0xff, 0x63, + 0xe7, 0x39, 0xa1, 0xfd, 0xf4, 0xa5, 0xf2, 0x75, 0xf2, 0x7e, 0xf8, 0x47, 0xa8, 0x8c, 0xdf, 0xcc, + 0x9c, 0x79, 0xd1, 0xc9, 0xf0, 0xc9, 0xba, 0x44, 0x97, 0x3a, 0xe0, 0x43, 0xf8, 0xfe, 0x1e, 0xf1, + 0x3d, 0x14, 0xc4, 0x95, 0x7c, 0xfb, 0xf3, 0x3f, 0x78, 0x34, 0xb3, 0xac, 0xd7, 0x08, 0xf2, 0x0b, + 0x86, 0xb8, 0x4e, 0x95, 0x97, 0x39, 0xe8, 0x43, 0x58, 0x1f, 0x46, 0xac, 0xf7, 0xe4, 0x52, 0xcc, + 0x9a, 0x7e, 0xa9, 0xa1, 0xcb, 0xcd, 0x71, 0x9f, 0x51, 0x97, 0xca, 0xd7, 0x33, 0xbe, 0xa7, 0xad, + 0xbf, 0x2f, 0xe8, 0xcf, 0x0c, 0x1d, 0x4b, 0xb7, 0x87, 0xa2, 0xe3, 0x0d, 0xa5, 0x21, 0xb1, 0x23, + 0x8b, 0xa1, 0xcf, 0xbf, 0xee, 0x9a, 0xfe, 0xfd, 0x7f, 0x01, 0x8e, 0x17, 0x0e, 0x7a, 0x99, 0x28, + 0x73, 0xef, 0x63, 0x00, 0x00, 0x00, 0xff, 0xff, 0x3f, 0xfe, 0x98, 0x6a, 0x3b, 0x08, 0x00, 0x00, } -- GitLab