learning_ai_common_plat/services/monitoring/package.json
saravanakumardb1 c97e697097 feat(services): add monitoring (Loki + Grafana config, health-check)
- Copied as-is from learning_voice_ai_agent/services/monitoring
- Grafana dashboards + provisioning for Loki datasource
- health-check.ts for service health polling
- Updated pnpm-workspace.yaml to include services/*
2026-02-12 11:39:24 -08:00

17 lines
377 B
JSON

{
"name": "@lysnrai/monitoring",
"version": "0.1.0",
"private": true,
"description": "Health check and monitoring for all LysnrAI services",
"type": "module",
"scripts": {
"check": "tsx health-check.ts",
"serve": "tsx health-check.ts --serve"
},
"devDependencies": {
"@types/node": "^22.12.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}