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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Temporarily skip VRT driver in GDALg to avoid https://github.com/OSGeo/gdal/issues/12645
- Consistent naming of behavior field
- Made all python tests comply with mypy strict validation
- Improved documentation about access to grafana

## [0.7.13] - 2025-11-04

Expand Down
21 changes: 18 additions & 3 deletions docs/observability.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,8 @@ helm install eoapi eoapi/eoapi \
--set monitoring.prometheus.enabled=true \
--set observability.grafana.enabled=true

# Access Grafana (get password)
kubectl get secret eoapi-grafana -n eoapi \
-o jsonpath="{.data.admin-password}" | base64 -d
# Access Grafana (see "Accessing Grafana" section below for credentials)
kubectl port-forward -n eoapi svc/eoapi-obs-grafana 3000:80
```

### Using Configuration Files
Expand Down Expand Up @@ -213,6 +212,22 @@ Minimum resource requirements (actual usage varies by cluster size and metrics v

## Operations

### Accessing Grafana

```bash
# Get Grafana admin username (usually 'admin')
kubectl get secret -n eoapi -l app.kubernetes.io/name=grafana \
-o jsonpath="{.items[0].data.admin-user}" | base64 --decode

# Get Grafana admin password
kubectl get secret -n eoapi -l app.kubernetes.io/name=grafana \
-o jsonpath="{.items[0].data.admin-password}" | base64 --decode

# Port-forward to access Grafana UI
kubectl port-forward -n eoapi svc/eoapi-obs-grafana 3000:80
# Access at http://localhost:3000
```

### Verification Commands

```bash
Expand Down