feat: 新增告警、成本、配额、微信模块及缓存服务
All checks were successful
continuous-integration/drone/push Build is passing

- 新增告警模块 (alerts): 告警规则配置与触发
- 新增成本管理模块 (cost): 成本统计与分析
- 新增配额模块 (quota): 配额管理与限制
- 新增微信模块 (wechat): 微信相关功能接口
- 新增缓存服务 (cache): Redis 缓存封装
- 新增请求日志中间件 (request_logger)
- 新增异常处理和链路追踪中间件
- 更新 dashboard 前端展示
- 更新 SDK stats_client 功能
This commit is contained in:
111
2026-01-24 16:53:47 +08:00
parent eab2533c36
commit 6c6c48cf71
29 changed files with 4607 additions and 41 deletions

View File

@@ -5,18 +5,19 @@ server {
root /usr/share/nginx/html;
index index.html;
# Docker 内部 DNS 解析器
resolver 127.0.0.11 valid=30s;
# Vue Router history mode
location / {
try_files $uri $uri/ /index.html;
}
# API 代理到后端
# 使用宿主机网关地址(Docker 默认网桥)
# 如果 172.18.0.1 不可用,可能需要调整为实际的 Docker 网桥地址
set $backend_host 172.18.0.1;
# 使用 Docker 容器名称,通过 Docker DNS 解析
location /api/ {
proxy_pass http://$backend_host:8001/api/;
set $backend platform-backend-test:8000;
proxy_pass http://$backend/api/;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;