v0.11.2 containers/common

Signed-off-by: Qi Wang <qiwan@redhat.com>
This commit is contained in:
Qi Wang
2020-05-11 16:31:45 -04:00
parent 0ec2610f04
commit b79a37ead9
169 changed files with 28217 additions and 679 deletions

12
vendor/github.com/docker/go-metrics/unit.go generated vendored Normal file
View File

@@ -0,0 +1,12 @@
package metrics
// Unit represents the type or precision of a metric that is appended to
// the metrics fully qualified name
type Unit string
const (
Nanoseconds Unit = "nanoseconds"
Seconds Unit = "seconds"
Bytes Unit = "bytes"
Total Unit = "total"
)