microsoft/openvmm

Public

mirrored fromhttps://github.com/microsoft/openvmmAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
9e5737afd1aae54061680f23ef2b406886185c11

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

openhcl/azure_profiler_proto/src/profile.proto

18lines · modecode

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