Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 55 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ If everything is working correctly, you should see logs similar to th
}
```

### Forwarding OTLP Data to Jaeger via LoongCollector
### (Optional) Forwarding OTLP Data to Jaeger via LoongCollector

#### Launch Jaeger

Expand Down Expand Up @@ -221,6 +221,60 @@ Access the Jaeger UI to view the collected trace data. You should no

![image.png](docs/_assets/img/quickstart-results.png)

### Using AgentScope Studio to View Tracing Data

[AgentScope Studio](https://github.com/agentscope-ai/agentscope-studio) provides a web-based interface for visualizing and analyzing tracing data from AgentScope applications.

#### Installation

Install AgentScope Studio:

```shell
pip install agentscope-studio
```

#### Launch AgentScope Studio

Start the AgentScope Studio server:

```shell
as_studio
```

AgentScope Studio will start and display the OTLP endpoint URL (typically `http://127.0.0.1:31415`).

#### Export AgentScope Data to AgentScope Studio

Configure your AgentScope application to export telemetry data to AgentScope Studio using OTLP. Use the endpoint URL displayed by AgentScope Studio when it starts:

```shell
loongsuite-instrument \
--traces_exporter otlp \
--metrics_exporter otlp \
--exporter_otlp_protocol http/protobuf \
--exporter_otlp_endpoint http://127.0.0.1:31415 \
--service_name demo \
python demo.py
```

Alternatively, you can use environment variables:

```shell
export OTEL_SERVICE_NAME=demo
export OTEL_EXPORTER_OTLP_PROTOCOL=http/protobuf
export OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=http://127.0.0.1:31415
export OTEL_EXPORTER_OTLP_METRICS_ENDPOINT=http://127.0.0.1:31415

loongsuite-instrument \
--traces_exporter otlp \
--metrics_exporter otlp \
python demo.py
```

The web interface will display the collected traces and metrics, allowing you to view and analyze the tracing data from your AgentScope applications.

For more details, please refer to the [AgentScope Studio documentation](https://github.com/agentscope-ai/agentscope-studio).

## Community

We are looking forward to your feedback and suggestions. You can join
Expand Down
Loading