mirror of
https://github.com/davidkaya/aryx.git
synced 2026-07-27 23:18:46 +02:00
Add OTLP export wiring for the sidecar and dev scripts to launch the standalone Aspire Dashboard during development. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
10 lines
360 B
TypeScript
10 lines
360 B
TypeScript
import { startAspireDashboard } from './aspireDashboard';
|
|
|
|
const dashboard = await startAspireDashboard();
|
|
|
|
console.log(
|
|
`${dashboard.startedByScript ? 'Started' : 'Reusing'} Aspire Dashboard at ${dashboard.dashboardUrl}`,
|
|
);
|
|
console.log(`OTLP/gRPC receiver: ${dashboard.otlpGrpcEndpoint}`);
|
|
console.log(`OTLP/HTTP receiver: ${dashboard.otlpHttpEndpoint}`);
|