Project

General

Profile

ActionsLike0

Feature #19056

closed

Introduce `Fiber.annotation` for attaching messages to fibers.

Added by ioquatix (Samuel Williams) over 2 years ago. Updated 12 months ago.

Status:
Closed
Target version:
-
[ruby-core:110293]

Description

It's useful to know what a fiber is doing especially when they have a temporal execution (i.e. sockets connecting vs connected, binding vs accepting, queue popping, etc)

Let's introduce Fiber.annotate and Fiber#annotation for logging a short message attached to Fibers.

Fiber.annotate "Counting to 10"
10.times{|I| puts I}

# Fiber.current.annotation => "Counting to 10"

Pull Request: https://github.com/ruby/ruby/pull/6554


Files

clipboard-202210160132-n7lzp.png (865 KB) clipboard-202210160132-n7lzp.png ioquatix (Samuel Williams), 10/15/2022 12:32 PM
#1

Updated by ioquatix (Samuel Williams) over 2 years ago

  • Tracker changed from Bug to Feature
  • Backport deleted (2.7: UNKNOWN, 3.0: UNKNOWN, 3.1: UNKNOWN)
#2

Updated by ioquatix (Samuel Williams) over 2 years ago

  • Description updated (diff)

Updated by ioquatix (Samuel Williams) over 2 years ago

#13

Updated by hsbt (Hiroshi SHIBATA) about 1 year ago

  • Status changed from Open to Assigned

Updated by ioquatix (Samuel Williams) 12 months ago

  • Status changed from Assigned to Closed
ActionsLike0

Also available in: Atom PDF