wrap-cli
wrap-cli copied to clipboard
SigNoz tracing
Based on #1042 Resolves #1048
Features
- added SigNoz trace exporter, confirmed working with browser, node, e2e tests
- added SigNoz docker-compose module to cli, run
npx polywrap infra up -m tracer - improved trace label for uri resolution
- added tracer configuration
export interface TracerConfig {
tracingLevel: TracingLevel;
consoleEnabled: boolean;
consoleDetailed: boolean;
httpEnabled: boolean;
httpUrl: string;
}
Docs
- run
npx polywrap infra up -m tracer - open SigNoz UI at localhost:3301
- init client with
new PolywrapClient({tracerConfig: {httpEnabled: true}})