Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit f146e1b

Browse files
authored
fix: bitswap.stat docs (#355)
License: MIT Signed-off-by: Alan Shaw <alan@tableflip.io>
1 parent 2904a7e commit f146e1b

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

SPEC/BITSWAP.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,19 @@ ipfs.bitswap.wantlist(peerId, (err, list) => console.log(list))
3232

3333
#### `bitswap.stat`
3434

35-
> Adds an IPFS object to the pinset and also stores it to the IPFS repo. pinset is the set of hashes currently pinned (not gc'able).
35+
> Show diagnostic information on the bitswap agent.
3636
3737
##### `Go` **WIP**
3838

3939
##### `JavaScript` - ipfs.bitswap.stat([callback])
4040

41-
`stats.bitswap` and `bitswap.stat` can be used interchangeably.
41+
Note: `bitswap.stat` and `stats.bitswap` can be used interchangeably.
4242

4343
`callback` must follow `function (err, stats) {}` signature, where `err` is an error if the operation was not successful. `stats` is an Object containing the following keys:
4444

4545
- `provideBufLen` is an integer.
46-
- `wantlist` (array)
47-
- `peers` (array)
46+
- `wantlist` (array of CIDs)
47+
- `peers` (array of peer IDs)
4848
- `blocksReceived` is a [Big Int][1]
4949
- `dataReceived` is a [Big Int][1]
5050
- `blocksSent` is a [Big Int][1]
@@ -57,10 +57,10 @@ If no `callback` is passed, a promise is returned.
5757
**Example:**
5858

5959
```JavaScript
60-
ipfs.stats.bitswap((err, stats) => console.log(stats))
60+
ipfs.bitswap.stat((err, stats) => console.log(stats))
6161

6262
// { provideBufLen: 0,
63-
// wantlist: null,
63+
// wantlist: [ { '/': 'QmSoLPppuBtQSGwKDZT2M73ULpjvfd3aZ6ha4oFGL1KrGM' } ],
6464
// peers:
6565
// [ 'QmSoLPppuBtQSGwKDZT2M73ULpjvfd3aZ6ha4oFGL1KrGM',
6666
// 'QmSoLSafTMBsPKadTEgaXctDQVcqN88CNLHXMkTNwMKPnu',

SPEC/STATS.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,15 @@
88

99
#### `stats.bitswap`
1010

11-
`stats.bitswap` and `bitswap.stat` can be used interchangeably. See [`bitswap.stat`](./BITSWAP.md#stat) for more details.
11+
> Show diagnostic information on the bitswap agent.
12+
13+
Note: `stats.bitswap` and `bitswap.stat` can be used interchangeably. See [`bitswap.stat`](./BITSWAP.md#bitswapstat) for more details.
1214

1315
#### `stats.repo`
1416

15-
`stats.repo` and `repo.stat` can be used interchangeably. See [`repo.stat`](./REPO.md#stat) for more details.
17+
> Get stats for the currently used repo.
18+
19+
Note: `stats.repo` and `repo.stat` can be used interchangeably. See [`repo.stat`](./REPO.md#repostat) for more details.
1620

1721
#### `stats.bw`
1822

0 commit comments

Comments
 (0)