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 · modepreview

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

syntax = "proto3";

package profile;

import "google/protobuf/empty.proto";

service AzureProfiler {
    rpc Profile(ProfileRequest) returns (google.protobuf.Empty);
}

message ProfileRequest {
    uint64 conn = 1;
    uint64 duration = 2;
    repeated string profiler_args = 3;
}