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.
This commit is contained in:
Yury Kossakovsky
2025-05-12 12:14:14 -06:00
parent 97492aa158
commit 257656d53e

View File

@@ -65,13 +65,6 @@ if is_profile_active "n8n"; then
echo "Host: ${N8N_HOSTNAME:-<hostname_not_set>}"
fi
if is_profile_active "langfuse"; then
echo
echo "================================= Langfuse ============================"
echo
echo "Host: ${LANGFUSE_HOSTNAME:-<hostname_not_set>}"
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:-<not_set_in_env>}"
fi
if is_profile_active "langfuse"; then
echo
echo "================================= Langfuse ============================"
echo
echo "Host: ${LANGFUSE_HOSTNAME:-<hostname_not_set>}"
echo "User: ${LANGFUSE_INIT_USER_EMAIL:-<not_set_in_env>}"
echo "Password: ${LANGFUSE_INIT_USER_PASSWORD:-<not_set_in_env>}"
fi
if is_profile_active "monitoring"; then
echo
echo "================================= Grafana ============================="