Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions kubeai/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ The following features are available at the moment.
- Scaling pods to/from zero - tested/working
- Load based autoscaling - not tested/included
- Integration with OPEA application - missing
- Observability - tested/working

The following models are included.

Expand Down Expand Up @@ -165,3 +166,31 @@ curl "http://localhost:8000/openai/v1/chat/completions" \
```

Enjoy the answer!

# Observability

With [Prometheus](../helm-charts/monitoring.md) running, install script can enable monitoring of the vLLM inference engine instances.

Script requires Prometheus Helm chart release name for that, e.g.:

```
release=prometheus-stack
./install.sh $release
```

Install dashboard for vLLM metrics to same namespace as Grafana.

```
ns=monitoring
kubectl apply -n $ns -f grafana/vllm-metrics.yaml
```

Port-forward Grafana

```
kubectl port-forward -n $ns svc/$release-grafana 3000:80
```

And open web-browser to `http://localhost:3000` with `admin` / `prom-operator` given as the username / password for login.

Note: metrics will be available only after first request has been processed.
Loading