...

Source file src/github.com/Microsoft/hcsshim/internal/logfields/fields.go

Documentation: github.com/Microsoft/hcsshim/internal/logfields

     1  package logfields
     2  
     3  const (
     4  	// Identifiers
     5  
     6  	Name      = "name"
     7  	Namespace = "namespace"
     8  	Operation = "operation"
     9  
    10  	ID          = "id"
    11  	SandboxID   = "sid"
    12  	ContainerID = "cid"
    13  	ExecID      = "eid"
    14  	ProcessID   = "pid"
    15  	TaskID      = "tid"
    16  	UVMID       = "uvm-id"
    17  
    18  	// networking and IO
    19  
    20  	File  = "file"
    21  	Path  = "path"
    22  	Bytes = "bytes"
    23  	Pipe  = "pipe"
    24  
    25  	// Common Misc
    26  
    27  	Attempt = "attemptNo"
    28  	JSON    = "json"
    29  
    30  	// Time
    31  
    32  	StartTime = "startTime"
    33  	EndTime   = "endTime"
    34  	Duration  = "duration"
    35  	Timeout   = "timeout"
    36  
    37  	// Keys/values
    38  
    39  	Field         = "field"
    40  	Key           = "key"
    41  	OCIAnnotation = "oci-annotation"
    42  	Value         = "value"
    43  	Options       = "options"
    44  
    45  	// Golang type's
    46  
    47  	ExpectedType = "expected-type"
    48  	Bool         = "bool"
    49  	Uint32       = "uint32"
    50  	Uint64       = "uint64"
    51  
    52  	// runhcs
    53  
    54  	VMShimOperation = "vmshim-op"
    55  
    56  	// logging and tracing
    57  
    58  	TraceID      = "traceID"
    59  	SpanID       = "spanID"
    60  	ParentSpanID = "parentSpanID"
    61  )
    62  

View as plain text