File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 14
14
DEFAULT_NAMESPACE = "aws-embedded-metrics"
15
15
MAX_DIMENSIONS = 9
16
16
MAX_METRICS_PER_EVENT = 100
17
+
18
+ # Units
19
+ SECONDS = "Seconds"
20
+ MICROSECONDS = "Microseconds"
21
+ MILLISECONDS = "Milliseconds"
22
+ BYTES = "Bytes"
23
+ KILOBYTES = "Kilobytes"
24
+ MEGABYTES = "Megabytes"
25
+ GIGABYTES = "Gigabytes"
26
+ TERABYTES = "Terabytes"
27
+ BITS = "Bits"
28
+ KILOBITS = "Kilobits"
29
+ MEGABITS = "Megabits"
30
+ GIGABITS = "Gigabits"
31
+ TERABITS = "Terabits"
32
+ PERCENT = "Percent"
33
+ COUNT = "Count"
34
+ BYTES_PER_SECOND = "Bytes/Second"
35
+ KILOBYTES_PER_SECOND = "Kilobytes/Second"
36
+ MEGABYTES_PER_SECOND = "Megabytes/Second"
37
+ GIGABYTES_PER_SECOND = "Gigabytes/Second"
38
+ TERABYTES_PER_SECOND = "Terabytes/Second"
39
+ BITS_PER_SECOND = "Bits/Second"
40
+ KILOBITS_PER_SECOND = "Kilobits/Second"
41
+ MEGABITS_PER_SECOND = "Megabits/Second"
42
+ GIGABITS_PER_SECOND = "Gigabits/Second"
43
+ TERABITS_PER_SECOND = "Terabits/Second"
44
+ COUNT_PER_SECOND = "Count/Second"
You can’t perform that action at this time.
0 commit comments