Follow these steps to start tracing your application with HoneyHive.

1

Navigate to the projects page

Navigate to the projects page.

2

Create a project

Follow the steps as shown in the interactive guide below to create a project.

3

Get your API key

Click on the organization name in the top right corner of the screen, then click Copy API Key from the dropdown

4

Installation

To install our SDKs, run the following commands in the shell.

pip install honeyhive
5

Initialize the tracer

Initializing the HoneyHiveTracer marks the beginning of your session and allows you to begin tracing your program.

from honeyhive import HoneyHiveTracer

# place the code below at the beginning of your application execution
HoneyHiveTracer.init(
    api_key="MY_HONEYHIVE_API_KEY", # paste your API key here
    project="MY_HONEYHIVE_PROJECT_NAME", # paste your project name here
)