Skip to content
Open
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
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,17 @@ accessible by making an HTTP request to either "/stats/prometheus" or "/metrics"

- XDS Connection terminations (`istio_xds_connection_terminations_total`)

#### Tokio metrics

Metrics for the data plane worker pool Tokio runtime.

- Number of worker threads (`tokio_num_workers`)
- Tasks in global queue (`tokio_global_queue_depth`)
- Alive tasks (`tokio_num_alive_tasks`)
- Worker busy duration (`tokio_worker_total_busy_duration_seconds`): Per-worker counter with `worker` label
- Worker park count (`tokio_worker_park_count`): Per-worker counter with `worker` label
- Worker park/unpark count (`tokio_worker_park_unpark_count`): Per-worker counter with `worker` label

## Logging

Ztunnel exposes a variety of logs, both operational and "access logs".
Expand Down
Loading