From 257656d53e442f1203fbf16ce50081a4e2f2e841 Mon Sep 17 00:00:00 2001 From: Yury Kossakovsky Date: Mon, 12 May 2025 12:14:14 -0600 Subject: [PATCH] Refactor langfuse profile output in final report script - Moved the langfuse profile output section to ensure it includes user email and password details, enhancing the clarity and completeness of the final report. --- scripts/06_final_report.sh | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/scripts/06_final_report.sh b/scripts/06_final_report.sh index c9d6bde..038c4bb 100755 --- a/scripts/06_final_report.sh +++ b/scripts/06_final_report.sh @@ -65,13 +65,6 @@ if is_profile_active "n8n"; then echo "Host: ${N8N_HOSTNAME:-}" fi -if is_profile_active "langfuse"; then - echo - echo "================================= Langfuse ============================" - echo - echo "Host: ${LANGFUSE_HOSTNAME:-}" -fi - if is_profile_active "open-webui"; then echo echo "================================= WebUI ===============================" @@ -106,6 +99,15 @@ if is_profile_active "supabase"; then echo "Password: ${POSTGRES_PASSWORD:-}" fi +if is_profile_active "langfuse"; then + echo + echo "================================= Langfuse ============================" + echo + echo "Host: ${LANGFUSE_HOSTNAME:-}" + echo "User: ${LANGFUSE_INIT_USER_EMAIL:-}" + echo "Password: ${LANGFUSE_INIT_USER_PASSWORD:-}" +fi + if is_profile_active "monitoring"; then echo echo "================================= Grafana ============================="