mirror of
https://github.com/containers/podman.git
synced 2025-08-06 19:44:14 +08:00

Ran a `go get -u` and bumped K8s deps to 1.15.0. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
13 lines
274 B
Go
13 lines
274 B
Go
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"
|
|
)
|