Files
Edu/services/msg
SpecialX 566060fade feat(infra): p6 hardening - observability and deploy compose
- 5 NestJS services add /metrics endpoint via app.getHttpAdapter()
- prometheus.yml scales to 8 services with rule_files and alertmanager
- monitoring compose replaces blackbox with Loki+Promtail
- Grafana datasource adds Loki
- docker-compose.deploy.yml scales to 11 services
- deploy.env.example completes Neo4j/ES/ClickHouse/LLM vars
- teacher-bff adds health.controller
- CI removes continue-on-error on lint step
- teacher-portal lint script changed to eslint src
2026-07-09 10:21:06 +08:00
..

Msg 消息通知服务

版本0.1P5 骨架) 端口3007

职责

消息通知限界上下文,管理通知的多渠道分发(站内信、邮件、短信、推送)。 消费 Kafka 事件,写入 MySQL + Elasticsearch调用 Push Gateway 实时推送。

技术栈

  • NestJS 10 + TypeScript 5
  • Drizzle ORM + MySQL 8
  • Elasticsearch 8全文检索
  • Kafka事件消费骨架
  • pino + prom-client + OpenTelemetry

开发

pnpm install
pnpm dev   # http://localhost:3007

API

方法 路径 说明
POST /notifications 发送通知
GET /notifications 查询用户通知列表
POST /notifications/:id/read 标记已读
GET /notifications/search?q= 全文检索通知

健康检查

端点 用途 鉴权
GET /healthz 存活探针liveness仅返回进程状态不检查依赖
GET /readyz 就绪探针readiness检查 DB 连接,失败返回 503

实现见 src/shared/health/health.controller.ts5 个 NestJS 服务iam/core-edu/content/msg/classes一致。

环境变量

变量 默认值 说明
PORT 3007 服务端口
DATABASE_URL - MySQL 连接串
KAFKA_BROKERS localhost:9092 Kafka broker 列表
ES_URL http://localhost:9200 Elasticsearch 地址
JWT_SECRET - JWT 密钥