CloudWatch Logging

The CloudWatch Logging crate provides a simple and efficient way to log to Amazon CloudWatch.

Features

Installation

Add the following dependency to your Cargo.toml file:

toml [dependencies] cloudwatch-logging = "1.0.0"

Usage

```rust use cloudwatch_logging::prelude::*;

async fn example() -> Result<(), LoggerError> { let logger = LoggerHandle::setup( "test-group", // log group "test-stream", // log stream 20, // batch size Duration::from_secs(5), // flush interval ).await?;

logger.info("Hello, world!".to_string()).await?;
logger.error("Something went wrong!".to_string()).await

}

cloudwatchlogging::doctest!(example); ```

Logging Panics

```rust use cloudwatch_logging::prelude::*;

async fn example() -> Result<(), LoggerError> { let logger = LoggerHandle::setup( "test-group", // log group "test-stream", // log stream 20, // batch size Duration::from_secs(5), // flush interval ).await?;

logger.log_panics();  // future panics will be logged to cloudwatch

panic!("This will be logged to cloudwatch!");

Ok(())

}

cloudwatchlogging::doctest_panics!(example, "This will be logged to cloudwatch!"); ```

singleton Feature

```rust use cloudwatch_logging::prelude::*;

[cfg(feature = "singleton")]

async fn example() -> Result<(), LoggerError> { let logger = LoggerHandle::getorsetup( // will only setup once "test-group", // log group "test-stream", // log stream 20, // batch size Duration::from_secs(5), // flush interval ).await?;

logger.info("Hello, world!".to_string()).await?;
logger.error("Something went wrong!".to_string()).await

}

[cfg(feature = "singleton")]

cloudwatchlogging::doctest!(example); ```

singleton Feature: initializing with environment variables

```rust use cloudwatch_logging::prelude::*; use std::env;

[cfg(feature = "singleton")]

async fn example() -> Result<(), LoggerError> { env::setvar("TESTGROUP", "test-group"); env::setvar("TESTSTREAM", "test-stream");

let logger = LoggerHandle::get_or_setup_with_env(
    "TEST_GROUP",   // log group env var
    "TEST_STREAM",  // log stream env var
    20,             // batch size
    Duration::from_secs(5),  // flush interval
).await?;

logger.info("Hello, world!".to_string()).await?;
logger.error("Something went wrong!".to_string()).await

}

[cfg(feature = "singleton")]

cloudwatchlogging::doctest!(example); ```

Documentation

For more information, please refer to the current documentation.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Version 1.0.0 (Stable)

cloudwatch_logging is officially stable! While new features will be added, the api will remain the same.

Upcoming Features

Previous Breaking Changes

Version 0.2.0

The api is now stable and will not change unless there is a major version bump. Migrating to the new version requires very little effort, everything remained the same outside the entry point.

Acknowledgements

We'd like to acknowledge the incredible work of the Rusoto community for their AWS SDK, their thoughtful implementation of Smithy, and their dedication to the Rust community.

Rusoto & Official AWS SDK for Rust

Rusoto is no longer maintained, although, it is still appropriate for and used in production environments. Once the official AWS SDK for Rust is stable, this crate will be updated to use it instead.

Testing Considerations:

  1. AWS API Calls: The tests in this library interact directly with the AWS API. Ensure that your AWS credentials are correctly set up before running tests.
  2. AWS Charges: Some tests are designed to stress test the library, this can yield charges to your AWS account. Before running any tests, please be aware of potential AWS charges. Omena Inc. is not liable for any costs incurred.
  3. Log Groups and Streams: Tests target a specific log group and stream (referenced in the examples). Any resources created during testing will be automatically cleaned up.
  4. Parallel Execution: Avoid running tests in parallel, as they all interact with the same log group and stream. Concurrent runs will cause assertions to fail.

Running Tests: - Standard Tests: bash cargo test --features "doc_tests" -- --test-threads=1