- 边缘: Prometheus 改为 vmagent,统一 docker-compose.yml,内存+磁盘缓存 - 边缘脚本: 合并为 deploy.sh [--local],删除 run-edge-local、quick-setup、run-edge-with-cache - 配置: 合并为 update-configs.sh,统一 targets.csv,生成 target-onvif/target-ping/target-topology - 删除 topology-editor、旧格式 devices.csv/ping-targets.csv、setup-remote-write、test-connection - 文档: 更新 EDGE_CACHE、TIANDITU(瓦片改 4090 直连 tile-cache) Made-with: Cursor
30 lines
1.1 KiB
Plaintext
30 lines
1.1 KiB
Plaintext
# 中央Prometheus服务器地址 (支持IP或域名)
|
||
# 本机同机部署时使用: host.docker.internal(容器访问宿主机)
|
||
CENTRAL_SERVER_HOST=192.168.1.10
|
||
# 或者使用域名: CENTRAL_SERVER_HOST=prometheus.company.com
|
||
# 本机同机: CENTRAL_SERVER_HOST=host.docker.internal
|
||
|
||
# 中央服务器端口
|
||
CENTRAL_SERVER_PORT=8428
|
||
# 常用端口说明:
|
||
# 8428 - VictoriaMetrics (推荐)
|
||
# 9090 - Prometheus
|
||
# 8080 - 自定义端口
|
||
|
||
# 边缘节点标识
|
||
EDGE_NODE_ID=workernode_1
|
||
|
||
# 远程写入配置
|
||
# 边缘节点会将数据推送到中央服务器的VictoriaMetrics
|
||
# 格式: http://域名或IP:端口/api/v1/write
|
||
# 默认端口: 8428 (VictoriaMetrics)
|
||
|
||
# 边缘缓存:docker-compose.yaml 使用 vmagent,含内存+磁盘缓存,详见 doc/EDGE_CACHE.md
|
||
|
||
# 注意:ONVIF 设备在 config/targets.csv 中配置(每行 ip、username、password 等)
|
||
|
||
# ONVIF Exporter 镜像(仅在使用 --profile onvif 时需要)
|
||
# 公共 registry 无现成镜像,需自建或使用第三方镜像,参见 doc/ONVIF_ALTERNATIVES.md
|
||
# ONVIF_EXPORTER_IMAGE=localhost/onvif-exporter:local
|
||
|