...
1 package logfields
2
3 const (
4
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
19
20 File = "file"
21 Path = "path"
22 Bytes = "bytes"
23 Pipe = "pipe"
24
25
26
27 Attempt = "attemptNo"
28 JSON = "json"
29
30
31
32 StartTime = "startTime"
33 EndTime = "endTime"
34 Duration = "duration"
35 Timeout = "timeout"
36
37
38
39 Field = "field"
40 Key = "key"
41 OCIAnnotation = "oci-annotation"
42 Value = "value"
43 Options = "options"
44
45
46
47 ExpectedType = "expected-type"
48 Bool = "bool"
49 Uint32 = "uint32"
50 Uint64 = "uint64"
51
52
53
54 VMShimOperation = "vmshim-op"
55
56
57
58 TraceID = "traceID"
59 SpanID = "spanID"
60 ParentSpanID = "parentSpanID"
61 )
62
View as plain text