Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions tsl/profiler/protobuf/profiler_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ service ProfilerService {
// Starts a continuous profiling session.
rpc StartContinuousProfiling(ProfileRequest)
returns (ContinuousProfilingResponse) {}
// Stops an ongoing continuous profiling session.
rpc StopContinuousProfiling(StopContinuousProfilingRequest)
returns (StopContinuousProfilingResponse) {}
// Gets a snapshot of an ongoing profiling session.
rpc GetSnapshot(GetSnapshotRequest) returns (ProfileResponse) {}
}
Expand Down Expand Up @@ -108,6 +111,10 @@ message GetSnapshotRequest {}

message ContinuousProfilingResponse {}

message StopContinuousProfilingRequest {}

message StopContinuousProfilingResponse {}

// Next-ID: 4
message MonitorRequest {
// Duration for which to profile between each update.
Expand Down
Loading