github.com/demonoid81/containerd@v1.3.4/api/types/metrics.proto (about)

     1  syntax = "proto3";
     2  
     3  package containerd.types;
     4  
     5  import weak "gogoproto/gogo.proto";
     6  import "google/protobuf/any.proto";
     7  import "google/protobuf/timestamp.proto";
     8  
     9  option go_package = "github.com/containerd/containerd/api/types;types";
    10  
    11  message Metric {
    12  	google.protobuf.Timestamp timestamp = 1 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false];
    13  	string id = 2;
    14  	google.protobuf.Any data = 3;
    15  }