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

Commit 220483f

Browse files
hacdiasdaviddias
authored andcommitted
feat: add stats spec
1 parent 56a0e8e commit 220483f

File tree

3 files changed

+227
-0
lines changed

3 files changed

+227
-0
lines changed

SPEC/STATS.md

+114
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
Stats API
2+
=======
3+
4+
#### `bitswap`
5+
6+
> 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).
7+
8+
##### `Go` **WIP**
9+
10+
##### `JavaScript` - ipfs.stats.bitswap([callback])
11+
12+
`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:
13+
14+
- `provideBufLen`
15+
- `wantlist` (array)
16+
- `peers` (array)
17+
- `blocksReceived`
18+
- `dataReceived`
19+
- `blocksSent`
20+
- `dataSent`
21+
- `dupBlksReceived`
22+
- `dupDataReceived`
23+
24+
If no `callback` is passed, a promise is returned.
25+
26+
**Example:**
27+
28+
```JavaScript
29+
ipfs.stats.bitswap((err, stats) => console.log(stats))
30+
31+
// { provideBufLen: 0,
32+
// wantlist: null,
33+
// peers:
34+
// [ 'QmSoLPppuBtQSGwKDZT2M73ULpjvfd3aZ6ha4oFGL1KrGM',
35+
// 'QmSoLSafTMBsPKadTEgaXctDQVcqN88CNLHXMkTNwMKPnu',
36+
// 'QmSoLer265NRgSp2LA3dPaeykiS1J6DifTC88f5uVQKNAd' ],
37+
// blocksReceived: 0,
38+
// dataReceived: 0,
39+
// blocksSent: 0,
40+
// dataSent: 0,
41+
// dupBlksReceived: 0,
42+
// dupDataReceived: 0 }
43+
```
44+
45+
#### `bw`
46+
47+
> 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).
48+
49+
##### `Go` **WIP**
50+
51+
##### `JavaScript` - ipfs.stats.bw([options, callback])
52+
53+
Where:
54+
55+
- `options` is an opcional object that might contain the following keys:
56+
- `peer` specifies a peer to print bandwidth for.
57+
- `proto` specifies a protocol to print bandwidth for.
58+
- `poll` is used to print bandwidth at an interval.
59+
- `interval` is the time interval to wait between updating output, if `poll` is true.
60+
61+
`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:
62+
63+
- `totalIn`
64+
- `totalOut`
65+
- `rateIn`
66+
- `rateOut`
67+
68+
If no `callback` is passed, a promise is returned.
69+
70+
**Example:**
71+
72+
```JavaScript
73+
ipfs.stats.bw((err, stats) => console.log(stats))
74+
75+
// { totalIn: 15456,
76+
// totalOut: 15420,
77+
// rateIn: 905.0873512246716,
78+
// rateOut: 893.7400053359125 }
79+
```
80+
81+
#### `stat`
82+
83+
> Get stats for the currently used repo.
84+
85+
##### `Go` **WIP**
86+
87+
##### `JavaScript` - ipfs.repo.stat([options, callback])
88+
89+
Where:
90+
91+
- `options` is an object that contains following properties
92+
- `human` a Boolean value to output `repoSize` in MiB.
93+
94+
`callback` must follow `function (err, stats) {}` signature, where `err` is an Error if the operation was not successful and `stats` is an object containing the following keys:
95+
96+
- `numObjects`
97+
- `repoSize`
98+
- `repoPath`
99+
- `version`
100+
- `storageMax`
101+
102+
If no `callback` is passed, a promise is returned.
103+
104+
**Example:**
105+
106+
```JavaScript
107+
ipfs.repo.stat((err, stats) => console.log(stats))
108+
109+
// { numObjects: 15,
110+
// repoSize: 64190,
111+
// repoPath: 'C:\\Users\\henri\\AppData\\Local\\Temp\\ipfs_687c6eb3da07d3b16fe3c63ce17560e9',
112+
// version: 'fs-repo@6',
113+
// storageMax: 10000000000 }
114+
```

src/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ exports.dht = require('./dht')
1212
exports.dag = require('./dag')
1313
exports.pubsub = require('./pubsub')
1414
exports.key = require('./key')
15+
exports.stats = require('./stats')

src/stats.js

+112
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
/* eslint-env mocha */
2+
/* eslint max-nested-callbacks: ["error", 8] */
3+
4+
'use strict'
5+
6+
const chai = require('chai')
7+
const dirtyChai = require('dirty-chai')
8+
const expect = chai.expect
9+
chai.use(dirtyChai)
10+
11+
module.exports = (common) => {
12+
describe('.stats', () => {
13+
let ipfs
14+
15+
before(function (done) {
16+
// CI takes longer to instantiate the daemon, so we need to increase the
17+
// timeout for the before step
18+
this.timeout(60 * 1000)
19+
20+
common.setup((err, factory) => {
21+
expect(err).to.not.exist()
22+
factory.spawnNode((err, node) => {
23+
expect(err).to.not.exist()
24+
ipfs = node
25+
done()
26+
})
27+
})
28+
})
29+
30+
after((done) => {
31+
common.teardown(done)
32+
})
33+
34+
it('.bitswap', (done) => {
35+
ipfs.stats.bitswap((err, res) => {
36+
expect(err).to.not.exist()
37+
expect(res).to.exist()
38+
expect(res).to.have.a.property('provideBufLen')
39+
expect(res).to.have.a.property('wantlist')
40+
expect(res).to.have.a.property('peers')
41+
expect(res).to.have.a.property('blocksReceived')
42+
expect(res).to.have.a.property('dataReceived')
43+
expect(res).to.have.a.property('blocksSent')
44+
expect(res).to.have.a.property('dataSent')
45+
expect(res).to.have.a.property('dupBlksReceived')
46+
expect(res).to.have.a.property('dupDataReceived')
47+
done()
48+
})
49+
})
50+
51+
it('.bitswap Promise', () => {
52+
return ipfs.stats.bitswap().then((res) => {
53+
expect(res).to.exist()
54+
expect(res).to.have.a.property('provideBufLen')
55+
expect(res).to.have.a.property('wantlist')
56+
expect(res).to.have.a.property('peers')
57+
expect(res).to.have.a.property('blocksReceived')
58+
expect(res).to.have.a.property('dataReceived')
59+
expect(res).to.have.a.property('blocksSent')
60+
expect(res).to.have.a.property('dataSent')
61+
expect(res).to.have.a.property('dupBlksReceived')
62+
expect(res).to.have.a.property('dupDataReceived')
63+
})
64+
})
65+
66+
it('.bw', (done) => {
67+
ipfs.stats.bw((err, res) => {
68+
expect(err).to.not.exist()
69+
expect(res).to.exist()
70+
expect(res).to.have.a.property('totalIn')
71+
expect(res).to.have.a.property('totalOut')
72+
expect(res).to.have.a.property('rateIn')
73+
expect(res).to.have.a.property('rateOut')
74+
done()
75+
})
76+
})
77+
78+
it('.bw Promise', () => {
79+
return ipfs.stats.bw().then((res) => {
80+
expect(res).to.exist()
81+
expect(res).to.have.a.property('totalIn')
82+
expect(res).to.have.a.property('totalOut')
83+
expect(res).to.have.a.property('rateIn')
84+
expect(res).to.have.a.property('rateOut')
85+
})
86+
})
87+
88+
it('.repo', (done) => {
89+
ipfs.stats.repo((err, res) => {
90+
expect(err).to.not.exist()
91+
expect(res).to.exist()
92+
expect(res).to.have.a.property('numObjects')
93+
expect(res).to.have.a.property('repoSize')
94+
expect(res).to.have.a.property('repoPath')
95+
expect(res).to.have.a.property('version')
96+
expect(res).to.have.a.property('storageMax')
97+
done()
98+
})
99+
})
100+
101+
it('.repo Promise', () => {
102+
return ipfs.stats.repo().then((res) => {
103+
expect(res).to.exist()
104+
expect(res).to.have.a.property('numObjects')
105+
expect(res).to.have.a.property('repoSize')
106+
expect(res).to.have.a.property('repoPath')
107+
expect(res).to.have.a.property('version')
108+
expect(res).to.have.a.property('storageMax')
109+
})
110+
})
111+
})
112+
}

0 commit comments

Comments
 (0)