Skip to content
This repository was archived by the owner on May 20, 2026. It is now read-only.

Commit 0109b58

Browse files
authored
Change OTLP endpoint from gRPC to HTTP
Updated the OTLP endpoint from gRPC to HTTP and modified the related configuration settings.
1 parent 9e668cb commit 0109b58

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

docs/monitoring/agent_monitoring.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ The fastest way to see Copilot Chat traces locally — no cloud account required
1818
```bash
1919
docker run --rm -d \
2020
-p 18888:18888 \
21-
-p 4317:18889 \
21+
-p 4318:18890 \
2222
--name aspire-dashboard \
2323
mcr.microsoft.com/dotnet/aspire-dashboard:latest
2424
```
2525

26-
This exposes the dashboard UI on port `18888` and an OTLP (gRPC) endpoint on port `4317`.
26+
This exposes the dashboard UI on port `18888` and an OTLP (HTTP) endpoint on port `4318`.
2727

2828
### 2. Configure VS Code
2929

@@ -32,8 +32,7 @@ Open **Settings** (`Ctrl+,`) and add:
3232
```json
3333
{
3434
"github.copilot.chat.otel.enabled": true,
35-
"github.copilot.chat.otel.exporterType": "otlp-grpc",
36-
"github.copilot.chat.otel.otlpEndpoint": "http://localhost:4317"
35+
"github.copilot.chat.otel.captureContent": true
3736
}
3837
```
3938

0 commit comments

Comments
 (0)