Skip to content
Merged
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
10 changes: 8 additions & 2 deletions docs/manuals/spaces/howtos/self-hosted/space-observability.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,18 @@ To configure how Upbound exports, review the `spacesCollector` value in your Spa
```yaml
observability:
spacesCollector:
env:
- name: API_KEY
valueFrom:
secretKeyRef:
name: my-secret
key: api-key
config:
exporters:
otlphttp:
endpoint: "<your-endpoint>"
headers:
api-key: YOUR_API_KEY
api-key: ${env:API_KEY}
exportPipeline:
logs:
- otlphttp
Expand All @@ -66,7 +72,7 @@ provider-kubernetes.
### Router metrics

The Spaces router component uses Envoy as a reverse proxy and exposes detailed
metrics about request handling, circuit breakers, and connection pooling.
metrics about request handling, circuit breakers, and connection pooling.
Upbound collects these metrics in your Space after you enable Space-level
observability.

Expand Down