We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 540ea1e commit 7dfc1e2Copy full SHA for 7dfc1e2
datadog-crashtracker/src/crash_info/error_data.rs
@@ -20,7 +20,11 @@ pub struct ErrorData {
20
impl ErrorData {
21
pub fn normalize_ips(&mut self, pid: u32) -> anyhow::Result<()> {
22
let mut errors = 0;
23
- let normalizer = blazesym::normalize::Normalizer::new();
+ let normalizer = blazesym::normalize::Normalizer::builder()
24
+ .enable_vma_caching(true)
25
+ .enable_build_ids(true)
26
+ .enable_build_id_caching(true)
27
+ .build();
28
let pid = pid.into();
29
self.stack
30
.normalize_ips(&normalizer, pid)
0 commit comments