Skip to content

Commit 7da3ff4

Browse files
committed
feat: add doc for Bandwhich
1 parent f08f93d commit 7da3ff4

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

docs/bandwhich.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
title: Bandwhich
3+
description: Bandwidth is a CLI utility for monitoring network bandwidth usage in real-time.
4+
slug: /bandwhich
5+
sidebar_position: 15
6+
---
7+
8+
import Tabs from '@theme/Tabs';
9+
import TabItem from '@theme/TabItem';
10+
11+
<Tabs className="type-tabs" groupId="type" queryString>
12+
<TabItem value="linux" label="🐧 Linux Command Line">
13+
14+
### Install Bandwhich
15+
16+
```bash
17+
dnf copr enable atim/bandwhich
18+
dnf install bandwhich
19+
```
20+
21+
### Usage
22+
23+
```bash
24+
# Run bandwhich
25+
bandwhich
26+
27+
# Monitor a specific interface
28+
bandwhich -i eth0
29+
30+
# Monitor Remote Host
31+
bandwhich -a
32+
33+
# Monitor cumulative bandwidth usage for remote host
34+
bandwhich -at
35+
```
36+
37+
</TabItem>
38+
</Tabs>

0 commit comments

Comments
 (0)