summaryrefslogtreecommitdiff
path: root/vendor/github.com/Microsoft/hcsshim/internal/logfields/fields.go
blob: a1527d70601ce8834016a9bbc713d71b5f89cdf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package logfields

const (
	// Identifiers

	ContainerID = "cid"
	UVMID       = "uvm-id"
	ProcessID   = "pid"

	// Common Misc

	// Timeout represents an operation timeout.
	Timeout = "timeout"
	JSON    = "json"

	// Keys/values

	Field         = "field"
	OCIAnnotation = "oci-annotation"
	Value         = "value"

	// Golang type's

	ExpectedType = "expected-type"
	Bool         = "bool"
	Uint32       = "uint32"
	Uint64       = "uint64"

	// HCS

	HCSOperation       = "hcs-op"
	HCSOperationResult = "hcs-op-result"

	// runhcs

	VMShimOperation = "vmshim-op"
)