OpenInference Haystack Instrumentation
Python auto-instrumentation library for LLM applications implemented with Haystack.
Haystack Pipelines and Components (ex. PromptBuilder, OpenAIGenerator, etc.) are fully OpenTelemetry-compatible and can be sent to an OpenTelemetry collector for monitoring, such as Arize Phoenix or Arize AX.
Installation
pip install openinference-instrumentation-haystack
Quickstart
This quickstart shows you how to instrument your Haystack-orchestrated LLM application
Through your terminal, install required packages.
pip install openinference-instrumentation-haystack haystack-ai arize-phoenix opentelemetry-sdk opentelemetry-exporter-otlp
You can install Phoenix and start it with the following terminal commands:
pip install arize-phoenix
python -m phoenix.server.main serve
Start Phoenix in the background as a collector. By default, it listens on http://localhost:6006. You can visit the app via a browser at the same address. (Phoenix does not send data over the internet. It only operates locally on your machine.)
Try the following in a Python file.
Set up HaystackInstrumentor to trace your application and sends the traces to Phoenix at the endpoint defined below.
from openinference.instrumentation.haystack import HaystackInstrumentor
from opentelemetry import trace as trace_api
from opentelemetry.exporter.otlp.proto.http.trace_exporter import OTLPSpanExporter
from opentelemetry.sdk import trace as trace_sdk
from opentelemetry.sdk.trace.export import SimpleSpanProcessor
import os
# Set your OpenAI API key
os.environ["OPENAI_API_KEY"] = "YOUR_KEY_HERE"
# Set up the tracer, using Arize Phoenix as the endpoint
endpoint = "http://127.0.0.1:6006/v1/traces"
tracer_provider = trace_sdk.TracerProvider()
trace_api.set_tracer_provider(tracer_provider)
tracer_provider.add_span_processor(SimpleSpanProcessor(OTLPSpanExporter(endpoint)))
# Instrument the Haystack application
HaystackInstrumentor().instrument()
Set up a simple Pipeline with a template using OpenAIGenerator.
from haystack import Pipeline
from haystack.components.generators import OpenAIGenerator
# Initialize the pipeline
pipeline = Pipeline()
# Initialize the OpenAI generator component
llm = OpenAIGenerator(model="gpt-3.5-turbo")
# Add the generator component to the pipeline
pipeline.add_component("llm", llm)
# Define the question
question = "What is the location of the Hanging Gardens of Babylon?"
# Run the pipeline with the question
response = pipeline.run({"llm": {"prompt": question}})
print(response)
Now, on the Phoenix UI on your browser, you should see the traces from your Haystack application. Specifically, you can see attributes from the execution of the OpenAIGenerator.
More Info
Release files for openinference-instrumentation-haystack 0.1.41
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| openinference_instrumentation_haystack-0.1.41.tar.gz | 16.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| openinference_instrumentation_haystack-0.1.41-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 34.3 kB
Release files / openinference_instrumentation_haystack-0.1.41.tar.gz
| Download URL | openinference_instrumentation_haystack-0.1.41.tar.gz |
|---|---|
| Size | 16.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
c0e2bdae2123606df56f47ba57772cafeb9c94ca341e70d5f719d773358c60bc
|
|
BLAKE2b-256 checksum How to use checksums |
d2c1dd81a0475b27852fbd8a4d0ad736cfe02963b6f547b68cccdf71237b2811
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency logRelease files / openinference_instrumentation_haystack-0.1.41-py3-none-any.whl
| Download URL | openinference_instrumentation_haystack-0.1.41-py3-none-any.whl |
|---|---|
| Size | 18.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
f959ae269ab4c0280d83d16a8d9d2a4ad83219b3176c65524395a9503b0e5df3
|
|
BLAKE2b-256 checksum How to use checksums |
c6a1f79227687b523e83b9dd0b29f8c1dc8d766c0adb3eabff0004ed48169b46
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency log