You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-1Lines changed: 14 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,7 @@
6
6
Go implementation of AWS CloudWatch [Embedded Metric Format](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Embedded_Metric_Format_Specification.html)
7
7
8
8
It's aim is to simplify reporting metrics to CloudWatch:
9
+
9
10
- using EMF avoids additional HTTP API calls to CloudWatch as metrics are logged in JSON format to stdout
10
11
- no need for additional dependencies in your services (or mocks in tests) to report metrics from inside your code
11
12
- built in support for default dimensions and properties for Lambda functions
@@ -14,27 +15,38 @@ It's aim is to simplify reporting metrics to CloudWatch:
14
15
Supports namespaces, setting dimensions and properties as well as different contexts (at least partially).
Copy file name to clipboardExpand all lines: emf/emf.go
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
// Spec available here: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Embedded_Metric_Format_Specification.html
1
+
// Package emf implements the spec available here: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Embedded_Metric_Format_Specification.html
2
2
package emf
3
3
4
4
// Metadata struct as defined in AWS Embedded Metrics Format spec.
0 commit comments