add config for sentry stacktraces

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-07-10 20:27:17 +00:00
parent e73aa2aa21
commit db3c718ddc
3 changed files with 7 additions and 0 deletions

View file

@ -57,6 +57,9 @@
# Defaults to 0.15
#sentry_traces_sample_rate = 0.15
# Whether to attach a stacktrace to Sentry reports.
#sentry_attach_stacktrace = false
### Database configuration

View file

@ -356,6 +356,8 @@ pub struct Config {
pub sentry_send_server_name: bool,
#[serde(default = "default_sentry_traces_sample_rate")]
pub sentry_traces_sample_rate: f32,
#[serde(default)]
pub sentry_attach_stacktrace: bool,
#[serde(default)]
pub tokio_console: bool,
@ -819,6 +821,7 @@ impl fmt::Display for Config {
("Sentry.io send server_name in logs", &self.sentry_send_server_name.to_string()),
#[cfg(feature = "sentry_telemetry")]
("Sentry.io tracing sample rate", &self.sentry_traces_sample_rate.to_string()),
("Sentry.io attach stacktrace", &self.sentry_attach_stacktrace.to_string()),
(
"Well-known server name",
self.well_known

View file

@ -28,6 +28,7 @@ fn options(config: &Config) -> ClientOptions {
debug: cfg!(debug_assertions),
release: sentry::release_name!(),
user_agent: conduit::version::user_agent().into(),
attach_stacktrace: config.sentry_attach_stacktrace,
before_send: Some(Arc::new(before_send)),
before_breadcrumb: Some(Arc::new(before_breadcrumb)),
..Default::default()