no idea- added loki and other stuff to market-data-gateway, also added config lib

This commit is contained in:
Bojan Kucera 2025-06-03 11:37:58 -04:00
parent b957fb99aa
commit 1b71fc87ab
72 changed files with 6178 additions and 153 deletions

View file

@ -68,7 +68,7 @@ switch ($Action) {
"logs" {
if ($Service) {
Write-Host "📋 Logs for $Service:" -ForegroundColor Cyan
Write-Host "📋 Logs for ${Service}:" -ForegroundColor Cyan
Invoke-Expression "docker-compose $ComposeFiles logs -f $Service"
} else {
Write-Host "📋 All service logs:" -ForegroundColor Cyan
@ -99,18 +99,17 @@ switch ($Action) {
Write-Host " PgAdmin: http://localhost:8080"
Write-Host " Email: admin@tradingbot.local"
Write-Host " Password: admin123"
}
"monitoring" {
} "monitoring" {
Write-Host "📊 Starting monitoring stack..." -ForegroundColor Green
Invoke-Expression "docker-compose $ComposeFiles --profile monitoring up -d"
Invoke-Expression "docker-compose $ComposeFiles up -d prometheus grafana loki"
Write-Host "✅ Monitoring started!" -ForegroundColor Green
Write-Host ""
Write-Host "🔗 Monitoring Access:" -ForegroundColor Cyan
Write-Host " Prometheus: http://localhost:9090"
Write-Host " Grafana: http://localhost:3000"
Write-Host " Username: admin"
Write-Host " Password: admin123"
Write-Host " Password: admin"
Write-Host " Loki: http://localhost:3100"
}
"help" {