-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
19 lines (17 loc) · 753 Bytes
/
.env.example
File metadata and controls
19 lines (17 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# ===========================================
# MCP Prometheus Agent - Variáveis de Ambiente
# ===========================================
# Copie este arquivo para .env e ajuste os valores:
# cp .env.example .env
#
# Docker Compose lê o .env automaticamente.
# Para execução local, exporte as variáveis ou use um loader (python-dotenv).
# ===========================================
# URL do Prometheus (obrigatória)
# - Local: http://localhost:9090
# - Docker acessando host: http://host.docker.internal:9090
# - Rede Docker: http://prometheus:9090 (nome do serviço)
PROMETHEUS_URL=http://localhost:9090
# Porta do servidor MCP (opcional; padrão no código: 7000)
# Altere em main.py (server.listen(port=...)) se precisar.
# MCP_PORT=7000