Module: Bitfab

Defined in:
lib/bitfab.rb,
lib/bitfab/client.rb,
lib/bitfab/replay.rb,
lib/bitfab/version.rb,
lib/bitfab/constants.rb,
lib/bitfab/serialize.rb,
lib/bitfab/traceable.rb,
lib/bitfab/db_snapshot.rb,
lib/bitfab/http_client.rb,
lib/bitfab/span_context.rb,
lib/bitfab/replay_environment.rb

Defined Under Namespace

Modules: DbSnapshot, Replay, ReplayContext, Serialize, SpanContext, TraceState, Traceable Classes: BitfabFunction, Client, CurrentSpan, CurrentTrace, HttpClient, NoOpCurrentSpan, NoOpCurrentTrace, ReplayEnvironment

Constant Summary collapse

NO_OP_SPAN =
NoOpCurrentSpan.new.freeze
NO_OP_TRACE =
NoOpCurrentTrace.new.freeze
MOCK_STRATEGIES =

Replay mock strategies. Mirrors the Python and TypeScript SDKs.

  • “none” — every child span runs real code (default)

  • “all” — every child span returns its historical output

  • “marked” — only spans declared with mock_on_replay: true return historical

    output; everything else runs real code
    
%w[none all marked].freeze
VERSION =
"0.17.0"
DEFAULT_SERVICE_URL =
"https://bitfab.ai"
REPLAY_CONTEXT_KEY =
:__bitfab_replay_context

Class Method Summary collapse

Class Method Details

._run_in_background(&block) ⇒ Object

Run a block in a background thread with tracking. Returns the thread for callers that need to join on it.



197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
# File 'lib/bitfab/http_client.rb', line 197

def _run_in_background(&block)
  thread = Thread.new do
    block.call
  rescue => e
    begin
      warn "Bitfab: Failed to send request: #{e.message}"
    rescue
      # Never crash the host app
    end
  ensure
    @pending_threads_mutex.synchronize { @pending_threads.delete(Thread.current) }
  end

  @pending_threads_mutex.synchronize { @pending_threads << thread }
  thread
end

.clientObject

Returns the global client, raising if not configured.



64
65
66
# File 'lib/bitfab.rb', line 64

def client
  @client or raise "Bitfab not configured. Call Bitfab.configure(api_key: '...') first."
end

.configure(api_key:, service_url: nil, enabled: true) ⇒ Object

Configure the global Bitfab client.

Examples:

Bitfab.configure(api_key: ENV["BITFAB_API_KEY"])

Parameters:

  • api_key (String)

    API key for authentication

  • service_url (String, nil) (defaults to: nil)

    base URL (default: bitfab.ai)



59
60
61
# File 'lib/bitfab.rb', line 59

def configure(api_key:, service_url: nil, enabled: true)
  @client = Client.new(api_key:, service_url:, enabled:)
end

.current_spanCurrentSpan, NoOpCurrentSpan

Get a handle to the current active span.

Call this from inside a traced method to get a span handle that allows setting metadata at runtime.

Returns:



79
80
81
82
83
84
# File 'lib/bitfab.rb', line 79

def current_span
  entry = SpanContext.current
  return NO_OP_SPAN unless entry

  CurrentSpan.new(entry)
end

.current_traceCurrentTrace, NoOpCurrentTrace

Get a handle to the current active trace.

Call this from inside a traced method to get a trace handle that allows setting trace-level context at runtime.

Returns:



92
93
94
95
96
97
# File 'lib/bitfab.rb', line 92

def current_trace
  entry = SpanContext.current
  return NO_OP_TRACE unless entry

  CurrentTrace.new(entry[:trace_id])
end

.flush_traces(timeout: 30) ⇒ Object

Wait for all pending background threads to complete.



215
216
217
218
# File 'lib/bitfab/http_client.rb', line 215

def flush_traces(timeout: 30)
  threads = @pending_threads_mutex.synchronize { @pending_threads.dup }
  threads.each { |t| t.join(timeout) }
end

.reset!Object

Reset the global client (primarily for testing).



69
70
71
# File 'lib/bitfab.rb', line 69

def reset!
  @client = nil
end