Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 910 Bytes

how-to-use-tokio-console.md

File metadata and controls

30 lines (19 loc) · 910 Bytes

How to use tokio-console in GreptimeDB

This document introduces how to use the tokio-console in GreptimeDB.

First, build GreptimeDB with feature cmd/tokio-console. Also the tokio_unstable cfg must be enabled:

RUSTFLAGS="--cfg tokio_unstable" cargo build -F cmd/tokio-console

Then start GreptimeDB with tokio console binding address config: --tokio-console-addr. Remember to run with the tokio_unstable cfg. For example:

RUSTFLAGS="--cfg tokio_unstable" greptime --tokio-console-addr="127.0.0.1:6669" standalone start

Now you can use tokio-console to connect to GreptimeDB's tokio console subscriber:

tokio-console [TARGET_ADDR]

"TARGET_ADDR" defaults to "http://127.0.0.1:6669".

::: tip Note

You can refer to tokio-console to see the installation of tokio-console.

:::