statistics.go 668 B

12345678910111213141516171819202122232425262728293031
  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. package hcsschema
  10. import (
  11. "time"
  12. )
  13. // Runtime statistics for a container
  14. type Statistics struct {
  15. Timestamp time.Time `json:"Timestamp,omitempty"`
  16. ContainerStartTime time.Time `json:"ContainerStartTime,omitempty"`
  17. Uptime100ns int32 `json:"Uptime100ns,omitempty"`
  18. Processor *ProcessorStats `json:"Processor,omitempty"`
  19. Memory *MemoryStats `json:"Memory,omitempty"`
  20. Storage *StorageStats `json:"Storage,omitempty"`
  21. }