fields.go 485 B

123456789101112131415161718192021222324252627282930313233
  1. package logfields
  2. const (
  3. // Identifiers
  4. ContainerID = "cid"
  5. UVMID = "uvm-id"
  6. ProcessID = "pid"
  7. // Common Misc
  8. // Timeout represents an operation timeout.
  9. Timeout = "timeout"
  10. JSON = "json"
  11. // Keys/values
  12. Field = "field"
  13. OCIAnnotation = "oci-annotation"
  14. Value = "value"
  15. // Golang type's
  16. ExpectedType = "expected-type"
  17. Bool = "bool"
  18. Uint32 = "uint32"
  19. Uint64 = "uint64"
  20. // runhcs
  21. VMShimOperation = "vmshim-op"
  22. )