constants.go 755 B

123456789101112131415161718192021222324252627282930
  1. package cloudwatch
  2. var cloudwatchUnitMappings = map[string]string{
  3. "Seconds": "s",
  4. "Microseconds": "µs",
  5. "Milliseconds": "ms",
  6. "Bytes": "bytes",
  7. "Kilobytes": "kbytes",
  8. "Megabytes": "mbytes",
  9. "Gigabytes": "gbytes",
  10. //"Terabytes": "",
  11. "Bits": "bits",
  12. //"Kilobits": "",
  13. //"Megabits": "",
  14. //"Gigabits": "",
  15. //"Terabits": "",
  16. "Percent": "percent",
  17. //"Count": "",
  18. "Bytes/Second": "Bps",
  19. "Kilobytes/Second": "KBs",
  20. "Megabytes/Second": "MBs",
  21. "Gigabytes/Second": "GBs",
  22. //"Terabytes/Second": "",
  23. "Bits/Second": "bps",
  24. "Kilobits/Second": "Kbits",
  25. "Megabits/Second": "Mbits",
  26. "Gigabits/Second": "Gbits",
  27. //"Terabits/Second": "",
  28. //"Count/Second": "",
  29. }