fields.go 564 B

12345678910111213141516171819202122232425262728293031323334353637
  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. // HCS
  21. HCSOperation = "hcs-op"
  22. HCSOperationResult = "hcs-op-result"
  23. // runhcs
  24. VMShimOperation = "vmshim-op"
  25. )