Crates.io | ckb-sentry-debug-images |
lib.rs | ckb-sentry-debug-images |
version | 0.21.0 |
source | src |
created_at | 2020-12-16 05:24:53.334993 |
updated_at | 2020-12-16 05:24:53.334993 |
description | Sentry integration that adds the list of loaded libraries to events. |
homepage | |
repository | https://github.com/nervosnetwork/sentry-rust |
max_upload_size | |
id | 323489 |
size | 8,706 |
The Sentry Debug Images Integration.
The [DebugImagesIntegration
] adds metadata about the loaded shared
libraries to Sentry Event
s.
This Integration only works on Unix-like OSs right now. Support for Windows will be added in the future.
The integration by default attaches this information to all Event
s, 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);
License: Apache-2.0