- 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.
@goodgo/tracing
OpenTelemetry tracing setup for distributed tracing.
Usage
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',
});