...

Source file src/github.com/Microsoft/hcsshim/internal/hcs/schema2/statistics.go

Documentation: github.com/Microsoft/hcsshim/internal/hcs/schema2

     1  /*
     2   * HCS API
     3   *
     4   * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
     5   *
     6   * API version: 2.1
     7   * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
     8   */
     9  
    10  package hcsschema
    11  
    12  import (
    13  	"time"
    14  )
    15  
    16  //  Runtime statistics for a container
    17  type Statistics struct {
    18  	Timestamp time.Time `json:"Timestamp,omitempty"`
    19  
    20  	ContainerStartTime time.Time `json:"ContainerStartTime,omitempty"`
    21  
    22  	Uptime100ns uint64 `json:"Uptime100ns,omitempty"`
    23  
    24  	Processor *ProcessorStats `json:"Processor,omitempty"`
    25  
    26  	Memory *MemoryStats `json:"Memory,omitempty"`
    27  
    28  	Storage *StorageStats `json:"Storage,omitempty"`
    29  }
    30  

View as plain text