Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

28 righe
1015 B

  1. // Copyright 2018, OpenCensus Authors
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. package metricdata
  15. // Unit is a string encoded according to the case-sensitive abbreviations from the
  16. // Unified Code for Units of Measure: http://unitsofmeasure.org/ucum.html
  17. type Unit string
  18. // Predefined units. To record against a unit not represented here, create your
  19. // own Unit type constant from a string.
  20. const (
  21. UnitDimensionless Unit = "1"
  22. UnitBytes Unit = "By"
  23. UnitMilliseconds Unit = "ms"
  24. )