sentry-debug-images 0.24.0

Sentry integration that adds the list of loaded libraries to events.
docs.rs failed to build sentry-debug-images-0.24.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: sentry-debug-images-0.32.3

Sentry Rust SDK: sentry-debug-images

The Sentry Debug Images integration.

The [DebugImagesIntegration] adds metadata about the loaded shared libraries to Sentry Events.

This Integration only works on Unix-like OSes right now. Support for Windows will be added in the future.

Configuration

The integration by default attaches this information to all Events, but a custom filter can be defined as well.

use sentry_core::Level;
let integration = sentry_debug_images::DebugImagesIntegration::new()
    .filter(|event| event.level >= Level::Warning);

Resources

License: Apache-2.0