Skip to content

Commit d87b743

Browse files
jen-wjaredcnance
authored andcommitted
1 parent 91e1d26 commit d87b743

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

aws_embedded_metrics/constants.py

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,31 @@
1414
DEFAULT_NAMESPACE = "aws-embedded-metrics"
1515
MAX_DIMENSIONS = 9
1616
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"

0 commit comments

Comments
 (0)