#metrics #cloud-watch #aws

metrics_cloudwatch

CloudWatch emitter for the metrics crate

28 releases (2 stable)

2.0.1 Aug 24, 2023
2.0.0 Feb 3, 2023
1.0.1 Jan 9, 2023
0.15.0 Aug 25, 2022
0.4.0 Mar 18, 2020

#430 in Network programming

Download history 18/week @ 2023-12-14 7/week @ 2023-12-21 38/week @ 2023-12-28 333/week @ 2024-01-04 153/week @ 2024-01-11 261/week @ 2024-01-18 361/week @ 2024-01-25 355/week @ 2024-02-01 315/week @ 2024-02-08 202/week @ 2024-02-15 241/week @ 2024-02-22 318/week @ 2024-02-29 273/week @ 2024-03-07 295/week @ 2024-03-14 245/week @ 2024-03-21 229/week @ 2024-03-28

1,110 downloads per month

MIT/Apache

48KB
1K SLoC

metrics_cloudwatch

Docs Build status

Purpose

Provide a backend for the metrics facade crate, pushing metrics to CloudWatch.

How to use

Credentials for AWS needs to be available in the environment, see AWS docs on setting up AWS credentials

cargo add -s metrics metrics_cloudwatch
fn main() {
    // Initialize the backend
    metrics_cloudwatch::builder()
        .cloudwatch_namespace("my-namespace")
        .init_thread()
        .unwrap();

    metrics::counter!("requests", 1);
}

Any labels specified will map to Cloudwatch dimensions

metrics::histogram!("histogram", 100.0, "dimension_name" => "dimension_value");

Specifying the empty string for the value will remove the default dimension of the same name from the metric.

metrics::histogram!("histogram", 100.0, "dimension_name" => "");

The special @unit label accepts a metrics_cloudwatch::Unit which specifies the unit for the metric (the unit can also be specified when registering the metric). Other @ prefixed labels are ignored.

metrics::histogram!("histogram", 100.0, "@unit" => metrics_cloudwatch::Unit::Seconds);

Limitations

The CloudWatch metrics API imposes some limitations.

  • Max 30 labels (dimensions) per metric
  • Max 150 unique histogram values (used by timing!() and value!()) per API call. Going beyond this works but will incur one API call per batch of 150 unique values. Could be a good idea to measure timing in milliseconds rather than nanoseconds, to keep down the number of unique values.

Dependencies

~23MB
~397K SLoC