1
0
mirror of https://github.com/golang/go synced 2024-10-01 12:28:37 -06:00
go/internal/telemetry/unit/unit.go
Ian Cottrell 922a4ee32d internal/telemetry: extract units to their own package
This makes the code read slightly better, and more closely
aligns with the open telemetry code.

Change-Id: I87eaf7d08b802f7862f896f2654456ee6a7681e3
Reviewed-on: https://go-review.googlesource.com/c/tools/+/190404
Run-TryBot: Ian Cottrell <iancottrell@google.com>
Reviewed-by: Emmanuel Odeke <emm.odeke@gmail.com>
2019-08-15 21:28:32 +00:00

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"
)