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
Go implementation of AWS CloudWatch [Embedded Metric Format](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Embedded_Metric_Format_Specification.html)
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
-
It's aim is to simplify reporting metrics to CloudWatch:
8
+
The aim is to simplify reporting metrics to CloudWatch:
9
9
10
10
- using EMF avoids additional HTTP API calls to CloudWatch as metrics are logged in JSON format to stdout
11
11
- no need for additional dependencies in your services (or mocks in tests) to report metrics from inside your code
@@ -16,21 +16,32 @@ Supports namespaces, setting dimensions and properties as well as different cont
16
16
## Installation
17
17
18
18
```shell
19
-
go get github.com/prozz/aws-embedded-metrics-golang
19
+
go get github.com/gaeste/aws-embedded-metrics-golang
0 commit comments