microsoft/openvmm
Publicmirrored fromhttps://github.com/microsoft/openvmmAvailable
openhcl/azure_profiler_proto/src/profile.proto
18lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | syntax = "proto3"; |
| 5 | |
| 6 | package profile; |
| 7 | |
| 8 | import "google/protobuf/empty.proto"; |
| 9 | |
| 10 | service AzureProfiler { |
| 11 | rpc Profile(ProfileRequest) returns (google.protobuf.Empty); |
| 12 | } |
| 13 | |
| 14 | message ProfileRequest { |
| 15 | uint64 conn = 1; |
| 16 | uint64 duration = 2; |
| 17 | repeated string profiler_args = 3; |
| 18 | } |
| 19 | |