Module: Langfuse
- Defined in:
- lib/langfuse.rb,
lib/langfuse.rb,
lib/langfuse/types.rb,
lib/langfuse/client.rb,
lib/langfuse/config.rb,
lib/langfuse/masking.rb,
lib/langfuse/version.rb,
lib/langfuse/sampling.rb,
lib/langfuse/trace_id.rb,
lib/langfuse/api_client.rb,
lib/langfuse/evaluation.rb,
lib/langfuse/otel_setup.rb,
lib/langfuse/item_result.rb,
lib/langfuse/propagation.rb,
lib/langfuse/span_filter.rb,
lib/langfuse/cache_warmer.rb,
lib/langfuse/observations.rb,
lib/langfuse/prompt_cache.rb,
lib/langfuse/score_client.rb,
lib/langfuse/dataset_client.rb,
lib/langfuse/span_processor.rb,
lib/langfuse/cache_constants.rb,
lib/langfuse/experiment_item.rb,
lib/langfuse/otel_attributes.rb,
lib/langfuse/prompt_renderer.rb,
lib/langfuse/timestamp_parser.rb,
lib/langfuse/traced_execution.rb,
lib/langfuse/experiment_result.rb,
lib/langfuse/experiment_runner.rb,
lib/langfuse/chat_prompt_client.rb,
lib/langfuse/text_prompt_client.rb,
lib/langfuse/dataset_item_client.rb,
lib/langfuse/prompt_cache_events.rb,
lib/langfuse/prompt_fetch_result.rb,
lib/langfuse/rails_cache_adapter.rb,
lib/langfuse/stale_while_revalidate.rb,
lib/langfuse/prompt_cache_coordinator.rb
Overview
rubocop:disable Metrics/ModuleLength
Defined Under Namespace
Modules: CacheBackend, CacheSource, CacheStatus, Masking, ModelSetters, OtelAttributes, OtelSetup, PromptCacheEvents, Propagation, Sampling, StaleWhileRevalidate, TimestampParser, TraceId, TracedExecution, Types Classes: Agent, ApiClient, ApiError, BaseObservation, CacheWarmer, CacheWarmingError, Chain, ChatPromptClient, Client, Config, ConfigurationError, DatasetClient, DatasetItemClient, Embedding, Error, Evaluation, Evaluator, Event, ExperimentItem, ExperimentResult, ExperimentRunner, Generation, Guardrail, ItemResult, NotFoundError, PromptCache, PromptCacheCoordinator, PromptCacheKey, PromptFetchResult, PromptRenderer, RailsCacheAdapter, Retriever, ScoreClient, Span, SpanProcessor, TextPromptClient, Tool, UnauthorizedError
Constant Summary collapse
- FLUSH_TIMEOUT =
Default timeout (in seconds) for flushing traces during experiment runs.
5- OBSERVATION_TYPE_REGISTRY =
Registry mapping observation type strings to their wrapper classes
{ OBSERVATION_TYPES[:generation] => Generation, OBSERVATION_TYPES[:embedding] => Embedding, OBSERVATION_TYPES[:event] => Event, OBSERVATION_TYPES[:agent] => Agent, OBSERVATION_TYPES[:tool] => Tool, OBSERVATION_TYPES[:chain] => Chain, OBSERVATION_TYPES[:retriever] => Retriever, OBSERVATION_TYPES[:evaluator] => Evaluator, OBSERVATION_TYPES[:guardrail] => Guardrail, OBSERVATION_TYPES[:span] => Span }.freeze
- VERSION =
"0.10.1"- LANGFUSE_TRACER_NAME =
Instrumentation scope name used by module-level Langfuse tracing.
"langfuse-rb"- KNOWN_LLM_INSTRUMENTATION_SCOPE_PREFIXES =
Conservative allowlist of instrumentation scope prefixes that clearly belong to LLM workflows.
[ LANGFUSE_TRACER_NAME, "agent_framework", "ai", "haystack", "langsmith", "litellm", "openinference", "opentelemetry.instrumentation.anthropic", "strands-agents", "vllm" ].freeze
- OBSERVATION_TYPES =
Observation type constants
{ span: "span", generation: "generation", embedding: "embedding", event: "event", agent: "agent", tool: "tool", chain: "chain", retriever: "retriever", evaluator: "evaluator", guardrail: "guardrail" }.freeze
Class Attribute Summary collapse
-
.configuration ⇒ Config
Returns the global configuration object.
Class Method Summary collapse
-
.client ⇒ Client
Returns the global singleton client.
-
.configure {|Config| ... } ⇒ Config
Configure Langfuse globally.
-
.create_score(name:, value:, id: nil, trace_id: nil, session_id: nil, observation_id: nil, comment: nil, metadata: nil, environment: nil, data_type: :numeric, dataset_run_id: nil, config_id: nil) ⇒ void
Create a score event and queue it for batching.
-
.create_trace_id(seed: nil) ⇒ String
Generate a trace ID (deterministic when seeded, random otherwise).
-
.default_export_span?(span) ⇒ Boolean
(also: is_default_export_span)
Return whether a span should be exported when no custom filter is configured.
-
.flush_scores ⇒ void
Force flush all queued score events.
-
.force_flush(timeout: 30) ⇒ void
Force flush all pending traces.
-
.genai_span?(span) ⇒ Boolean
(also: is_genai_span)
Return whether the span contains ‘gen_ai.*` attributes.
-
.known_llm_instrumentor?(span) ⇒ Boolean
(also: is_known_llm_instrumentor)
Return whether the span came from a known LLM instrumentation scope.
-
.langfuse_span?(span) ⇒ Boolean
(also: is_langfuse_span)
Return whether the span was created by Langfuse’s tracer.
-
.observe(name, attrs = {}, as_type: :span, trace_id: nil, **kwargs) {|observation| ... } ⇒ BaseObservation, Object
User-facing convenience method for creating root observations.
-
.propagate_attributes(user_id: nil, session_id: nil, metadata: nil, version: nil, tags: nil, as_baggage: false) { ... } ⇒ Object
Propagate trace-level attributes to all spans created within this context.
-
.reset! ⇒ void
Reset global configuration and client (useful for testing).
-
.score_active_observation(name:, value:, comment: nil, metadata: nil, data_type: :numeric) ⇒ void
Create a score for the currently active observation (from OTel span).
-
.score_active_trace(name:, value:, comment: nil, metadata: nil, data_type: :numeric) ⇒ void
Create a score for the currently active trace (from OTel span).
-
.shutdown(timeout: 30) ⇒ void
Shutdown Langfuse and flush any pending traces and scores.
-
.start_observation(name, attrs = {}, as_type: :span, trace_id: nil, parent_span_context: nil, start_time: nil, skip_validation: false) ⇒ BaseObservation
Creates a new observation (root or child).
-
.tracer_provider ⇒ OpenTelemetry::SDK::Trace::TracerProvider
Return Langfuse’s internal tracer provider for explicit global OpenTelemetry installation.
Class Attribute Details
Class Method Details
.client ⇒ Client
Returns the global singleton client
107 108 109 |
# File 'lib/langfuse.rb', line 107 def client @client ||= Client.new(configuration) end |
.configure {|Config| ... } ⇒ Config
Configure Langfuse globally
99 100 101 102 |
# File 'lib/langfuse.rb', line 99 def configure yield(configuration) configuration end |
.create_score(name:, value:, id: nil, trace_id: nil, session_id: nil, observation_id: nil, comment: nil, metadata: nil, environment: nil, data_type: :numeric, dataset_run_id: nil, config_id: nil) ⇒ void
This method returns an undefined value.
Create a score event and queue it for batching
rubocop:disable Metrics/ParameterLists
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 |
# File 'lib/langfuse.rb', line 242 def create_score(name:, value:, id: nil, trace_id: nil, session_id: nil, observation_id: nil, comment: nil, metadata: nil, environment: nil, data_type: :numeric, dataset_run_id: nil, config_id: nil) client.create_score( name: name, value: value, id: id, trace_id: trace_id, session_id: session_id, observation_id: observation_id, comment: comment, metadata: , environment: environment, data_type: data_type, dataset_run_id: dataset_run_id, config_id: config_id ) end |
.create_trace_id(seed: nil) ⇒ String
Avoid PII or secrets as seeds. See Langfuse::TraceId.create for details.
Generate a trace ID (deterministic when seeded, random otherwise).
Use this to correlate Langfuse traces with external identifiers. The same seed always produces the same trace ID across the Ruby, Python, and JS SDKs (SHA-256 of the seed, first 16 bytes, as 32 hex chars).
339 340 341 |
# File 'lib/langfuse.rb', line 339 def create_trace_id(seed: nil) TraceId.create(seed: seed) end |
.default_export_span?(span) ⇒ Boolean Also known as: is_default_export_span
Return whether a span should be exported when no custom filter is configured.
65 66 67 |
# File 'lib/langfuse/span_filter.rb', line 65 def default_export_span?(span) langfuse_span?(span) || genai_span?(span) || known_llm_instrumentor?(span) end |
.flush_scores ⇒ void
This method returns an undefined value.
Force flush all queued score events
Sends all queued score events to the API immediately.
321 322 323 |
# File 'lib/langfuse.rb', line 321 def flush_scores client.flush_scores if @client end |
.force_flush(timeout: 30) ⇒ void
This method returns an undefined value.
Force flush all pending traces
153 154 155 |
# File 'lib/langfuse.rb', line 153 def force_flush(timeout: 30) OtelSetup.force_flush(timeout: timeout) end |
.genai_span?(span) ⇒ Boolean Also known as: is_genai_span
Return whether the span contains ‘gen_ai.*` attributes.
39 40 41 42 43 44 |
# File 'lib/langfuse/span_filter.rb', line 39 def genai_span?(span) attributes = span.attributes return false unless attributes attributes.keys.any? { |key| key.is_a?(String) && key.start_with?("gen_ai.") } end |
.known_llm_instrumentor?(span) ⇒ Boolean Also known as: is_known_llm_instrumentor
Return whether the span came from a known LLM instrumentation scope.
50 51 52 53 54 55 56 57 58 59 |
# File 'lib/langfuse/span_filter.rb', line 50 def known_llm_instrumentor?(span) scope_name = instrumentation_scope_name(span) return false unless scope_name return true if KNOWN_LLM_INSTRUMENTATION_SCOPE_PREFIXES.include?(scope_name) KNOWN_LLM_INSTRUMENTATION_SCOPE_DOTTED_PREFIXES.any? do |dotted_prefix| scope_name.start_with?(dotted_prefix) end end |
.langfuse_span?(span) ⇒ Boolean Also known as: is_langfuse_span
Return whether the span was created by Langfuse’s tracer.
31 32 33 |
# File 'lib/langfuse/span_filter.rb', line 31 def langfuse_span?(span) instrumentation_scope_name(span) == LANGFUSE_TRACER_NAME end |
.observe(name, attrs = {}, as_type: :span, trace_id: nil, **kwargs) {|observation| ... } ⇒ BaseObservation, Object
User-facing convenience method for creating root observations
436 437 438 439 440 441 442 |
# File 'lib/langfuse.rb', line 436 def observe(name, attrs = {}, as_type: :span, trace_id: nil, **kwargs, &block) merged_attrs = attrs.to_h.merge(kwargs) observation = start_observation(name, merged_attrs, as_type: as_type, trace_id: trace_id) return observation unless block observation.send(:run_in_context, &block) end |
.propagate_attributes(user_id: nil, session_id: nil, metadata: nil, version: nil, tags: nil, as_baggage: false) { ... } ⇒ Object
Propagate trace-level attributes to all spans created within this context.
This method sets attributes on the currently active span AND automatically propagates them to all new child spans created within the block. This is the recommended way to set trace-level attributes like user_id, session_id, and metadata dimensions that should be consistently applied across all observations in a trace.
IMPORTANT: Call this as early as possible within your trace/workflow. Only the currently active span and spans created after entering this context will have these attributes. Pre-existing spans will NOT be retroactively updated.
203 204 205 206 207 208 209 210 211 212 213 214 |
# File 'lib/langfuse.rb', line 203 def propagate_attributes(user_id: nil, session_id: nil, metadata: nil, version: nil, tags: nil, as_baggage: false, &) Propagation.propagate_attributes( user_id: user_id, session_id: session_id, metadata: , version: version, tags: , as_baggage: as_baggage, & ) end |
.reset! ⇒ void
This method returns an undefined value.
Reset global configuration and client (useful for testing)
346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/langfuse.rb', line 346 def reset! client.shutdown if @client OtelSetup.shutdown(timeout: 5) if OtelSetup.initialized? @configuration = nil @client = nil @noop_tracer = nil @tracing_disabled_warning_emitted = false rescue StandardError # Ignore shutdown errors during reset (e.g., in tests) @configuration = nil @client = nil @noop_tracer = nil @tracing_disabled_warning_emitted = false end |
.score_active_observation(name:, value:, comment: nil, metadata: nil, data_type: :numeric) ⇒ void
This method returns an undefined value.
Create a score for the currently active observation (from OTel span)
Extracts observation_id and trace_id from the active OpenTelemetry span.
277 278 279 280 281 282 283 284 285 |
# File 'lib/langfuse.rb', line 277 def score_active_observation(name:, value:, comment: nil, metadata: nil, data_type: :numeric) client.score_active_observation( name: name, value: value, comment: comment, metadata: , data_type: data_type ) end |
.score_active_trace(name:, value:, comment: nil, metadata: nil, data_type: :numeric) ⇒ void
This method returns an undefined value.
Create a score for the currently active trace (from OTel span)
Extracts trace_id from the active OpenTelemetry span.
303 304 305 306 307 308 309 310 311 |
# File 'lib/langfuse.rb', line 303 def score_active_trace(name:, value:, comment: nil, metadata: nil, data_type: :numeric) client.score_active_trace( name: name, value: value, comment: comment, metadata: , data_type: data_type ) end |
.shutdown(timeout: 30) ⇒ void
This method returns an undefined value.
Shutdown Langfuse and flush any pending traces and scores
Call this when shutting down your application to ensure all traces and scores are sent to Langfuse.
144 145 146 147 |
# File 'lib/langfuse.rb', line 144 def shutdown(timeout: 30) client.shutdown if @client OtelSetup.shutdown(timeout: timeout) end |
.start_observation(name, attrs = {}, as_type: :span, trace_id: nil, parent_span_context: nil, start_time: nil, skip_validation: false) ⇒ BaseObservation
Creates a new observation (root or child)
This is the module-level factory method that creates observations of any type. It can create root observations (when parent_span_context is nil) or child observations (when parent_span_context is provided).
rubocop:disable Metrics/ParameterLists
391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 |
# File 'lib/langfuse.rb', line 391 def start_observation(name, attrs = {}, as_type: :span, trace_id: nil, parent_span_context: nil, start_time: nil, skip_validation: false) parent_span_context = resolve_trace_context(trace_id, parent_span_context) type_str = as_type.to_s validate_observation_type!(as_type, type_str) unless skip_validation otel_tracer = otel_tracer() otel_span = create_otel_span( name: name, start_time: start_time, parent_span_context: parent_span_context, otel_tracer: otel_tracer ) apply_observation_attributes(otel_span, type_str, attrs) observation = wrap_otel_span(otel_span, type_str, otel_tracer) # Events auto-end immediately when created observation.end if type_str == OBSERVATION_TYPES[:event] observation end |
.tracer_provider ⇒ OpenTelemetry::SDK::Trace::TracerProvider
Return Langfuse’s internal tracer provider for explicit global OpenTelemetry installation.
123 124 125 126 127 128 129 130 131 |
# File 'lib/langfuse.rb', line 123 def tracer_provider unless tracing_config_ready? raise ConfigurationError, "Langfuse tracing is disabled until public_key, secret_key, and base_url are configured." end OtelSetup.setup(configuration) unless OtelSetup.initialized? OtelSetup.tracer_provider end |