feat: add signoz-mcp-server

This commit is contained in:
Sun-ZhenXing
2026-07-16 13:53:25 +08:00
parent 35404c3674
commit 0351b31cf6
43 changed files with 263 additions and 62 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
GLOBAL_REGISTRY=
# Redis version
REDIS_VERSION=8.4.0-alpine3.23
REDIS_VERSION=8.8.0-alpine3.23
# Password for Redis authentication (leave empty for no password)
REDIS_PASSWORD=
+1 -1
View File
@@ -19,7 +19,7 @@ docker compose up -d
| Variable Name | Description | Default Value |
| -------------------------- | -------------------------------------------------------- | ------------------ |
| `GLOBAL_REGISTRY` | Global registry prefix for all images | `""` |
| `REDIS_VERSION` | Redis image version | `8.2.1-alpine3.22` |
| `REDIS_VERSION` | Redis image version | `8.8.0-alpine3.23` |
| `REDIS_PASSWORD` | Password for Redis authentication (empty = no auth) | `""` |
| `REDIS_PORT_OVERRIDE` | Host port mapping (maps to Redis port 6379 in container) | `6379` |
| `TZ` | Timezone | `UTC` |
+1 -1
View File
@@ -19,7 +19,7 @@ docker compose up -d
| 变量名 | 说明 | 默认值 |
| -------------------------- | -------------------------------------------- | ------------------ |
| `GLOBAL_REGISTRY` | 全局镜像仓库前缀 | `""` |
| `REDIS_VERSION` | Redis 镜像版本 | `8.2.1-alpine3.22` |
| `REDIS_VERSION` | Redis 镜像版本 | `8.8.0-alpine3.23` |
| `REDIS_PASSWORD` | Redis 认证密码(留空表示不启用认证) | `""` |
| `REDIS_PORT_OVERRIDE` | 主机端口映射(映射到容器内 Redis 端口 6379 | `6379` |
| `TZ` | 时区 | `UTC` |
+1 -1
View File
@@ -9,7 +9,7 @@ x-defaults: &defaults
services:
redis:
<<: *defaults
image: ${GLOBAL_REGISTRY:-}redis:${REDIS_VERSION:-8.4.0-alpine3.23}
image: ${GLOBAL_REGISTRY:-}redis:${REDIS_VERSION:-8.8.0-alpine3.23}
ports:
- '${REDIS_PORT_OVERRIDE:-6379}:6379'
volumes: