Packages

Elixir-native LangChain, LangGraph, and DeepAgents for traceable LLM apps: OTP workflows, tools, memory, human-in-the-loop, streaming, custom clients/adapters, minimal deps, and WeaveScope tracing.

Current section

Files

Jump to
beam_weaver lib beam_weaver graph execution telemetry.ex
Raw

lib/beam_weaver/graph/execution/telemetry.ex

defmodule BeamWeaver.Graph.Execution.Telemetry do
@moduledoc false
@spec execute(atom(), map(), map()) :: :ok
def execute(event, measurements, metadata) do
if Code.ensure_loaded?(:telemetry) do
:telemetry.execute([:beam_weaver, :graph, event], measurements, metadata)
end
:ok
end
end