65 releases (21 stable)

new 1.21.1 Apr 23, 2024
1.18.0 Mar 26, 2024
1.9.0 Dec 21, 2023
1.3.0 Nov 27, 2023
0.0.0 May 7, 2021

#2320 in Network programming

Download history 111/week @ 2023-12-31 16/week @ 2024-01-07 33/week @ 2024-01-21 192/week @ 2024-01-28 43/week @ 2024-02-04 3/week @ 2024-02-11 232/week @ 2024-02-18 184/week @ 2024-02-25 22/week @ 2024-03-03 231/week @ 2024-03-10 42/week @ 2024-03-17 129/week @ 2024-03-24 99/week @ 2024-03-31 213/week @ 2024-04-07 29/week @ 2024-04-14

475 downloads per month

Apache-2.0

1.5MB
19K SLoC

aws-sdk-pi

Amazon RDS Performance Insights enables you to monitor and explore different dimensions of database load based on data captured from a running DB instance. The guide provides detailed information about Performance Insights data types, parameters and errors.

When Performance Insights is enabled, the Amazon RDS Performance Insights API provides visibility into the performance of your DB instance. Amazon CloudWatch provides the authoritative source for Amazon Web Services service-vended monitoring metrics. Performance Insights offers a domain-specific view of DB load.

DB load is measured as average active sessions. Performance Insights provides the data to API consumers as a two-dimensional time-series dataset. The time dimension provides DB load data for each time point in the queried time range. Each time point decomposes overall load in relation to the requested dimensions, measured at that time point. Examples include SQL, Wait event, User, and Host.

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-pi to your project, add the following to your Cargo.toml file:

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

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

use aws_sdk_pi as pi;

#[::tokio::main]
async fn main() -> Result<(), pi::Error> {
    let config = aws_config::load_from_env().await;
    let client = aws_sdk_pi::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

~8–20MB
~268K SLoC