public sealed class ProfilerServiceClientImpl : ProfilerServiceClient
Reference documentation and code samples for the Cloud Profiler v2 API class ProfilerServiceClientImpl.
ProfilerService client wrapper implementation, for convenient use.
Namespace
Google.Cloud.Profiler.V2Assembly
Google.Cloud.Profiler.V2.dll
Remarks
Manage the collection of continuous profiling data provided by profiling agents running in the cloud or by an offline provider of profiling data.
The APIs listed in this service are intended for use within our profiler agents only.
Constructors
ProfilerServiceClientImpl(ProfilerServiceClient, ProfilerServiceSettings, ILogger)
public ProfilerServiceClientImpl(ProfilerService.ProfilerServiceClient grpcClient, ProfilerServiceSettings settings, ILogger logger)
Constructs a client wrapper for the ProfilerService service, with the specified gRPC client and settings.
Parameters | |
---|---|
Name | Description |
grpcClient | ProfilerServiceProfilerServiceClient The underlying gRPC client. |
settings | ProfilerServiceSettings The base ProfilerServiceSettings used within this client. |
logger | ILogger Optional ILogger to use within this client. |
Properties
GrpcClient
public override ProfilerService.ProfilerServiceClient GrpcClient { get; }
The underlying gRPC ProfilerService client
Property Value | |
---|---|
Type | Description |
ProfilerServiceProfilerServiceClient |
Methods
CreateOfflineProfile(CreateOfflineProfileRequest, CallSettings)
public override Profile CreateOfflineProfile(CreateOfflineProfileRequest request, CallSettings callSettings = null)
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.
Direct use of this API is discouraged, please use a supported profiler agent instead for profile collection.
Parameters | |
---|---|
Name | Description |
request | CreateOfflineProfileRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Profile | The RPC response. |
CreateOfflineProfileAsync(CreateOfflineProfileRequest, CallSettings)
public override Task<Profile> CreateOfflineProfileAsync(CreateOfflineProfileRequest request, CallSettings callSettings = null)
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.
Direct use of this API is discouraged, please use a supported profiler agent instead for profile collection.
Parameters | |
---|---|
Name | Description |
request | CreateOfflineProfileRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskProfile | A Task containing the RPC response. |
CreateProfile(CreateProfileRequest, CallSettings)
public override Profile CreateProfile(CreateProfileRequest request, CallSettings callSettings = null)
CreateProfile creates a new profile resource in the online mode.
Direct use of this API is discouraged, please use a supported profiler agent instead for profile collection.
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".
Parameters | |
---|---|
Name | Description |
request | CreateProfileRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Profile | The RPC response. |
CreateProfileAsync(CreateProfileRequest, CallSettings)
public override Task<Profile> CreateProfileAsync(CreateProfileRequest request, CallSettings callSettings = null)
CreateProfile creates a new profile resource in the online mode.
Direct use of this API is discouraged, please use a supported profiler agent instead for profile collection.
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".
Parameters | |
---|---|
Name | Description |
request | CreateProfileRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskProfile | A Task containing the RPC response. |
UpdateProfile(UpdateProfileRequest, CallSettings)
public override Profile UpdateProfile(UpdateProfileRequest request, CallSettings callSettings = null)
UpdateProfile updates the profile bytes and labels on the profile resource 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.
Direct use of this API is discouraged, please use a supported profiler agent instead for profile collection.
Parameters | |
---|---|
Name | Description |
request | UpdateProfileRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Profile | The RPC response. |
UpdateProfileAsync(UpdateProfileRequest, CallSettings)
public override Task<Profile> UpdateProfileAsync(UpdateProfileRequest request, CallSettings callSettings = null)
UpdateProfile updates the profile bytes and labels on the profile resource 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.
Direct use of this API is discouraged, please use a supported profiler agent instead for profile collection.
Parameters | |
---|---|
Name | Description |
request | UpdateProfileRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskProfile | A Task containing the RPC response. |