mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-08-11 23:26:12 +02:00
Open WebUI: add optional OpenTelemetry package install (#16415)
This commit is contained in:
+8
-1
@@ -114,7 +114,14 @@ EOF
|
||||
|
||||
msg_info "Updating Open WebUI via uv"
|
||||
PYTHON_VERSION="3.12" setup_uv
|
||||
$STD uv tool install --force --python 3.12 --constraint <(echo "numba>=0.60") open-webui[all]
|
||||
OWUI_PYTHON="/root/.local/share/uv/tools/open-webui/bin/python3.12"
|
||||
OTEL_ARGS=()
|
||||
if [[ -x "$OWUI_PYTHON" ]]; then
|
||||
while IFS= read -r pkg; do
|
||||
OTEL_ARGS+=(--with "$pkg")
|
||||
done < <(uv pip list --python "$OWUI_PYTHON" --format freeze 2>/dev/null | grep -i '^opentelemetry-' | cut -d= -f1)
|
||||
fi
|
||||
$STD uv tool install --force --python 3.12 --constraint <(echo "numba>=0.60") "${OTEL_ARGS[@]}" open-webui[all]
|
||||
systemctl restart open-webui
|
||||
msg_ok "Updated Open WebUI"
|
||||
msg_ok "Updated successfully!"
|
||||
|
||||
@@ -25,8 +25,28 @@ setup_hwaccel
|
||||
|
||||
PYTHON_VERSION="3.12" setup_uv
|
||||
|
||||
OTEL_ARGS=()
|
||||
read -r -p "${TAB3}Would you like to install OpenTelemetry instrumentation packages (requires manual .env configuration)? <y/N> " prompt
|
||||
if [[ ${prompt,,} =~ ^(y|yes)$ ]]; then
|
||||
for pkg in \
|
||||
opentelemetry-api \
|
||||
opentelemetry-sdk \
|
||||
opentelemetry-exporter-otlp \
|
||||
opentelemetry-exporter-otlp-proto-http \
|
||||
opentelemetry-instrumentation-fastapi \
|
||||
opentelemetry-instrumentation-aiohttp-client \
|
||||
opentelemetry-instrumentation-httpx \
|
||||
opentelemetry-instrumentation-sqlalchemy \
|
||||
opentelemetry-instrumentation-requests \
|
||||
opentelemetry-instrumentation-logging \
|
||||
opentelemetry-instrumentation-redis \
|
||||
opentelemetry-instrumentation-system-metrics; do
|
||||
OTEL_ARGS+=(--with "$pkg")
|
||||
done
|
||||
fi
|
||||
|
||||
msg_info "Installing Open WebUI"
|
||||
$STD uv tool install --python 3.12 --constraint <(echo "numba>=0.60") open-webui[all]
|
||||
$STD uv tool install --python 3.12 --constraint <(echo "numba>=0.60") "${OTEL_ARGS[@]}" open-webui[all]
|
||||
msg_ok "Installed Open WebUI"
|
||||
|
||||
read -r -p "${TAB3}Would you like to add Ollama? <y/N> " prompt
|
||||
|
||||
Reference in New Issue
Block a user