- Renamed auth-service to iam-service across various files for consistency. - Updated deployment workflows, database migration scripts, and documentation to reflect the service name change. - Enhanced bilingual documentation for clarity on the new service structure and usage. - Removed outdated references to auth-service in scripts and configuration files to streamline the project structure.
17 lines
340 B
Markdown
17 lines
340 B
Markdown
# @goodgo/tracing
|
|
|
|
OpenTelemetry tracing setup for distributed tracing.
|
|
|
|
## Usage
|
|
|
|
```typescript
|
|
import { initTracing } from '@goodgo/tracing';
|
|
|
|
// Initialize tracing at application startup
|
|
initTracing({
|
|
serviceName: 'iam-service',
|
|
jaegerEndpoint: process.env.JAEGER_ENDPOINT,
|
|
enabled: process.env.TRACING_ENABLED === 'true',
|
|
});
|
|
```
|