61 releases (17 stable)

new 1.18.0 Mar 26, 2024
1.15.0 Feb 27, 2024
1.9.0 Dec 21, 2023
1.3.0 Nov 27, 2023
0.0.0 May 7, 2021

#2430 in Network programming

Download history 6/week @ 2023-12-07 2/week @ 2023-12-14 3/week @ 2023-12-21 4/week @ 2024-01-11 4/week @ 2024-01-18 7/week @ 2024-01-25 3/week @ 2024-02-08 150/week @ 2024-02-15 261/week @ 2024-02-22 42/week @ 2024-02-29 66/week @ 2024-03-07 236/week @ 2024-03-14 64/week @ 2024-03-21

491 downloads per month

Apache-2.0

1.5MB
24K SLoC

aws-sdk-synthetics

You can use Amazon CloudWatch Synthetics to continually monitor your services. You can create and manage canaries, which are modular, lightweight scripts that monitor your endpoints and APIs from the outside-in. You can set up your canaries to run 24 hours a day, once per minute. The canaries help you check the availability and latency of your web services and troubleshoot anomalies by investigating load time data, screenshots of the UI, logs, and metrics. The canaries seamlessly integrate with CloudWatch ServiceLens to help you trace the causes of impacted nodes in your applications. For more information, see Using ServiceLens to Monitor the Health of Your Applications in the Amazon CloudWatch User Guide.

Before you create and manage canaries, be aware of the security considerations. For more information, see Security Considerations for Synthetics Canaries.

Getting Started

Examples are available for many services and operations, check out the examples folder in GitHub.

The SDK provides one crate per AWS service. You must add Tokio as a dependency within your Rust project to execute asynchronous code. To add aws-sdk-synthetics to your project, add the following to your Cargo.toml file:

[dependencies]
aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
aws-sdk-synthetics = "1.18.0"
tokio = { version = "1", features = ["full"] }

Then in code, a client can be created with the following:

use aws_sdk_synthetics as synthetics;

#[::tokio::main]
async fn main() -> Result<(), synthetics::Error> {
    let config = aws_config::load_from_env().await;
    let client = aws_sdk_synthetics::Client::new(&config);

    // ... make some calls with the client

    Ok(())
}

See the client documentation for information on what calls can be made, and the inputs and outputs for each of those calls.

Using the SDK

Until the SDK is released, we will be adding information about using the SDK to the Developer Guide. Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do.

Getting Help

License

This project is licensed under the Apache-2.0 License.

Dependencies

~7–20MB
~257K SLoC