Skip to content
Open
Show file tree
Hide file tree
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
196 changes: 196 additions & 0 deletions api/services/microvm/v1alpha1/debug.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

152 changes: 152 additions & 0 deletions api/services/microvm/v1alpha1/debug.pb.gw.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions api/services/microvm/v1alpha1/debug.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
syntax = "proto3";

package microvm.services.api.v1alpha1;

import "google/api/annotations.proto";
import "google/protobuf/empty.proto";

option go_package = "github.com/weaveworks-liquidmetal/flintlock/api/services/microvm/v1alpha1";

// DebugInfo represents the debug information of a Flintlock server.
message DebugInfo {
int32 mvm_count = 1;
int32 iface_count = 2;
int32 total_vcpu = 3;
int32 total_memory_in_mb = 4;
}

service Debug {
rpc GetDebugInfo(google.protobuf.Empty) returns (DebugInfo) {
option (google.api.http) = {
get: "/debug"
};
}
}
Loading