mirror of
https://github.com/golang/go
synced 2024-11-06 08:26:12 -07:00
20 lines
668 B
Go
20 lines
668 B
Go
|
// Copyright 2019 The Go Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a BSD-style
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
|
// Package unit holds the definitions for the units you can use in telemetry.
|
||
|
package unit
|
||
|
|
||
|
// Unit is used to specify the units for a given measure.
|
||
|
// This is can used for display purposes.
|
||
|
type Unit string
|
||
|
|
||
|
const (
|
||
|
// UnitDimensionless indicates that a measure has no specified units.
|
||
|
Dimensionless = "1"
|
||
|
// UnitBytes indicates that that a measure is recording number of bytes.
|
||
|
Bytes = "By"
|
||
|
// UnitMilliseconds indicates that a measure is recording a duration in milliseconds.
|
||
|
Milliseconds = "ms"
|
||
|
)
|