Skip to content

Commit

Permalink
docs(console): update screenshots in README (#421)
Browse files Browse the repository at this point in the history
The screenshots in the README, which are also used in in the
`tokio-console` page on docs.rs were a bit outdated. The UI has changed
a bit since they were created.

This change updates the screenshots to be based on the latest UI from
the `main` branch.

All previous versions of `tokio-console` on docs.rs reference the images
on the main branch, so it is important that they remain unchanged. The
new screenshots have been added to a sub-directory of the `assets`
directory named after the next version: `tokio-console-0.1.8`.
  • Loading branch information
hds committed May 9, 2023
1 parent 7b86f7f commit f4d3213
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/tokio-console-0.1.8/resources_list.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/tokio-console-0.1.8/task_details.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/tokio-console-0.1.8/tasks_list.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 7 additions & 7 deletions tokio-console/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,20 +100,20 @@ See [here][cli-ref] for a complete list of all command-line arguments.
When the console CLI is launched, it displays a list of all [asynchronous tasks]
in the program:

![tasks list](https://github.com/tokio-rs/console/main/assets/tasks_list.png)
![tasks list](https://github.com/tokio-rs/console/main/assets/tokio-console-0.1.8/tasks_list.png)

Using the <kbd>&#8593;</kbd> and <kbd>&#8595;</kbd> arrow keys, an individual task can be highlighted.
Pressing<kbd>enter</kbd> while a task is highlighted displays details about that
task:

![task details](https://github.com/tokio-rs/console/main/assets/details2.png)
![task details](https://github.com/tokio-rs/console/main/assets/tokio-console-0.1.8/task_details.png)

Pressing the <kbd>escape</kbd> key returns to the task list.

The <kbd>r</kbd> key switches from the list of tasks to a list of [resources],
such as synchronization primitives, I/O resources, et cetera:

![resource list](https://github.com/tokio-rs/console/main/assets/resources.png)
![resource list](https://github.com/tokio-rs/console/main/assets/tokio-console-0.1.8/resources_list.png)


Pressing the <kbd>t</kbd> key switches the view back to the task list.
Expand All @@ -122,13 +122,13 @@ Like the task list view, the resource list view can be navigated using the
<kbd>&#8593;</kbd> and <kbd>&#8595;</kbd> arrow keys. Pressing <kbd>enter</kbd>
while a resource is highlighted displays details about that resource:

![resource details --- oneshot](https://github.com/tokio-rs/console/main/assets/resource_details1.png)
![resource details --- sleep](https://github.com/tokio-rs/console/main/assets/tokio-console-0.1.8/resource_details_sleep.png)

The resource details view lists the tasks currently waiting on that resource.
This may be a single task, as in the [`tokio::sync::oneshot`] channel above, or
a large number of tasks, such as this [`tokio::sync::Semaphore`]:
This may be a single task, as in the [`tokio::time::Sleep`] above, or
a large number of tasks, such as this private `tokio::sync::batch_semaphore::Semaphore`:

![resource details --- semaphore](https://github.com/tokio-rs/console/main/assets/resource_details2.png)
![resource details --- semaphore](https://github.com/tokio-rs/console/main/assets/tokio-console-0.1.8/resource_details_semaphore.png)

Like the task details view, pressing the <kbd>escape</kbd> key while viewing a resource's details
returns to the resource list.
Expand Down

0 comments on commit f4d3213

Please sign in to comment.