mirror of
https://github.com/grafana/grafana.git
synced 2024-11-30 04:34:23 -06:00
31 lines
755 B
Go
31 lines
755 B
Go
package cloudwatch
|
|
|
|
var cloudwatchUnitMappings = map[string]string{
|
|
"Seconds": "s",
|
|
"Microseconds": "µs",
|
|
"Milliseconds": "ms",
|
|
"Bytes": "bytes",
|
|
"Kilobytes": "kbytes",
|
|
"Megabytes": "mbytes",
|
|
"Gigabytes": "gbytes",
|
|
//"Terabytes": "",
|
|
"Bits": "bits",
|
|
//"Kilobits": "",
|
|
//"Megabits": "",
|
|
//"Gigabits": "",
|
|
//"Terabits": "",
|
|
"Percent": "percent",
|
|
//"Count": "",
|
|
"Bytes/Second": "Bps",
|
|
"Kilobytes/Second": "KBs",
|
|
"Megabytes/Second": "MBs",
|
|
"Gigabytes/Second": "GBs",
|
|
//"Terabytes/Second": "",
|
|
"Bits/Second": "bps",
|
|
"Kilobits/Second": "Kbits",
|
|
"Megabits/Second": "Mbits",
|
|
"Gigabits/Second": "Gbits",
|
|
//"Terabits/Second": "",
|
|
//"Count/Second": "",
|
|
}
|