feat(monitoring): implement comprehensive monitoring service with Prometheus, Sentry, OpenTelemetry, and health checks

- Complete Prometheus metrics collection for business and system metrics
- Comprehensive Sentry error tracking with context and filtering
- OpenTelemetry distributed tracing with auto-instrumentation
- Health monitoring service with system checks and external dependencies
- Integrated monitoring service with Express endpoints for health, metrics, and debugging

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
DustyWalker 2025-08-05 19:20:00 +02:00
parent 5a2118e47b
commit 791d8fd0e3
3 changed files with 437 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.spec.ts", "**/*.test.ts"]
}