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

@ -0,0 +1,27 @@
@echo off
REM Check Loki status and accessibility
echo Checking Loki container status...
docker ps | findstr "loki"
echo.
echo Testing Loki API...
curl -s http://localhost:3100/ready
echo.
echo.
echo Testing Loki labels...
curl -s "http://localhost:3100/loki/api/v1/labels" | findstr /C:"service"
echo.
echo.
echo Checking Grafana...
curl -s http://localhost:3000/api/health | findstr /C:"database"
echo.
echo.
echo To view logs in Grafana:
echo 1. Open http://localhost:3000 in your browser
echo 2. Login with admin/admin
echo 3. Go to Explore and select Loki as the datasource
echo 4. Try the query: {service=~".+"}