...

Source file src/github.com/Microsoft/hcsshim/internal/hcs/schema2/process_details.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  //  Information about a process running in a container
    17  type ProcessDetails struct {
    18  	ProcessId int32 `json:"ProcessId,omitempty"`
    19  
    20  	ImageName string `json:"ImageName,omitempty"`
    21  
    22  	CreateTimestamp time.Time `json:"CreateTimestamp,omitempty"`
    23  
    24  	UserTime100ns int32 `json:"UserTime100ns,omitempty"`
    25  
    26  	KernelTime100ns int32 `json:"KernelTime100ns,omitempty"`
    27  
    28  	MemoryCommitBytes int32 `json:"MemoryCommitBytes,omitempty"`
    29  
    30  	MemoryWorkingSetPrivateBytes int32 `json:"MemoryWorkingSetPrivateBytes,omitempty"`
    31  
    32  	MemoryWorkingSetSharedBytes int32 `json:"MemoryWorkingSetSharedBytes,omitempty"`
    33  }
    34  

View as plain text