sentry-ruby-sdk
Audited by Runlayer on Feb 28, 2026
Malicious tool definition detected
Malicious tool definition detected
## Upserting Monitor Configuration Pass `monitor_config` in the initial check-in to create or update the monitor definition programmatically (no manual setup in Sentry UI required): ```ruby monitor_config = Sentry::Cron::MonitorConfig.from_crontab( "5 * * * *", # runs at :05 every hour checkin_margin: 5, max_runtime: 15, timezone: "Europe/Berlin" ) check_in_id = Sentry.capture_check_in( "hourly-sync", :in_progress, monitor_config: monitor_config ) # ...
Malicious tool definition detected
## Filtering Logs ```ruby config.before_send_log = lambda do |log| # Drop debug-level logs in production return nil if log.level == :debug # Scrub sensitive content log.message = log.message.gsub(/token=\S+/, "token=[FILTERED]") log end ``` ## Breadcrumb Loggers Breadcrumbs are different from Sentry Logs — they are attached to the next error event, not sent independently.
Tool passed security scan
Tool passed security scan
Tool passed security scan
Passed Files (2)Click to expand
Tool passed security scan
Tool passed security scan