File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,11 @@ service ProfilerService {
1717 rpc Terminate (TerminateRequest ) returns (TerminateResponse ) {}
1818 // Collects profiling data and returns user-friendly metrics.
1919 rpc Monitor (MonitorRequest ) returns (MonitorResponse ) {}
20+ // Starts a continuous profiling session.
21+ rpc ContinuousProfiling (ProfileRequest )
22+ returns (ContinuousProfilingResponse ) {}
23+ // Gets a snapshot of an ongoing profiling session.
24+ rpc GetSnapShot (GetSnapShotRequest ) returns (ProfileResponse ) {}
2025}
2126
2227message ToolRequestOptions {
@@ -99,6 +104,10 @@ message TerminateRequest {
99104
100105message TerminateResponse {}
101106
107+ message GetSnapShotRequest {}
108+
109+ message ContinuousProfilingResponse {}
110+
102111// Next-ID: 4
103112message MonitorRequest {
104113 // Duration for which to profile between each update.
You can’t perform that action at this time.
0 commit comments