diff --git a/pkg/container/wellknown_attributes.go b/pkg/container/wellknown_attributes.go new file mode 100644 index 0000000..143be14 --- /dev/null +++ b/pkg/container/wellknown_attributes.go @@ -0,0 +1,11 @@ +package container + +const ( + // AttrName is an attribute key that is commonly used to denote + // human-friendly name. + AttrName = "Name" + + // AttrTimestamp is an attribute key that is commonly used to denote + // user-defined local time of container creation in Unix Timestamp format. + AttrTimestamp = "Timestamp" +)