refactor: 🎨 improved logging to console
CI / Build and Push (push) Successful in 4s

This commit is contained in:
2026-01-31 15:34:58 +00:00
parent f9b3fb3dec
commit b7e9f9a02d
2 changed files with 8 additions and 3 deletions
+1 -1
View File
@@ -3,4 +3,4 @@ WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
EXPOSE 5000
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "app:app", "--log-level", "warning"]
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "app:app", "--log-level", "info", "--capture-output", "--enable-stdio-inheritance"]
+7 -2
View File
@@ -24,7 +24,10 @@ for name, value in [("LOKI_URL", LOKI_URL), ("LOKI_USERNAME", LOKI_USERNAME), ("
PUSH_URL = f"{LOKI_URL.rstrip('/')}/loki/api/v1/push"
AUTH = (LOKI_USERNAME, LOKI_PASSWORD)
logging.basicConfig(level=logging.WARNING)
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s %(levelname)s %(name)s: %(message)s",
)
logger = logging.getLogger(__name__)
app = Flask(__name__)
@@ -82,6 +85,7 @@ def push_to_loki(log_lines: list[str]) -> None:
timeout=30,
)
resp.raise_for_status()
logger.info("Sent %d line(s) to Loki, status=%d", len(log_lines), resp.status_code)
@app.route("/health")
@@ -114,10 +118,11 @@ def webhook():
if not log_lines:
return "", 400
logger.info("Webhook received, extracted %d line(s)", len(log_lines))
try:
push_to_loki(log_lines)
except requests.RequestException as e:
logger.exception("Loki push failed: %s", e)
logger.exception("Failed to send %d line(s) to Loki: %s", len(log_lines), e)
return "", 502
return "", 204