Send data to a specific project
A space in Arize groups different projects together. Inside a space you can have multiple project names.
The lowest level logical separation of traces in Arize is currently done by the project_name
.
# Import open-telemetry dependencies
from arize.otel import register
# Setup OTel via our convenience function
tracer_provider = register(
space_id = "your-space-id", # in app space settings page
api_key = "your-api-key", # in app space settings page
project_name = "your-project-name", # name this to whatever you would like
)
The space ID can be found in the space settings tab.

The the spaces can be added or changed at the top of the page.

The project_name
maps to a use-case which can be selected by clicking on projects in the left navigation bar.

Last updated
Was this helpful?