Method: Sentry.capture_check_in
- Defined in:
- lib/sentry-ruby.rb
permalink .capture_check_in(slug, status, **options) ⇒ String?
Captures a check-in and sends it to Sentry via the currently active hub.
487 488 489 490 |
# File 'lib/sentry-ruby.rb', line 487 def capture_check_in(slug, status, **) return unless initialized? get_current_hub.capture_check_in(slug, status, **) end |