summaryrefslogtreecommitdiffstats
path: root/ipfs-api/examples/get_stats.rs
blob: 3895de68aa2bd93101e9d7cc9cc6739900e83773 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Copyright 2017 rust-ipfs-api Developers
//
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
// http://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.
//

extern crate ipfs_api;
extern crate tokio_core;

use ipfs_api::IpfsClient;
use tokio_core::reactor::Core;

// Creates an Ipfs client, and gets some stats about the Ipfs server.
//
fn main() {
    println!("connecting to localhost:5001...");

    let mut core = Core::new().expect("expected event loop");
    let client = IpfsClient::default(&core.handle());

    let bitswap_stats = client.stats_bitswap();
    let bitswap_stats = core.run(bitswap_stats).expect("expected a valid response");

    let bw_stats = client.stats_bw();
    let bw_stats = core.run(bw_stats).expect("expected a valid response");

    let repo_stats = client.stats_repo();
    let repo_stats = core.run(repo_stats).expect("expected a valid response");

    println!("bitswap stats:");
    println!("  blocks recv: {}", bitswap_stats.blocks_received);
    println!("  data   recv: {}", bitswap_stats.data_received);
    println!("  blocks sent: {}", bitswap_stats.blocks_sent);
    println!("  data   sent: {}", bitswap_stats.data_sent);
    println!(
        "  peers:       {}",
        bitswap_stats.peers.join("\n               ")
    );
    println!(
        "  wantlist:    {}",
        bitswap_stats.wantlist.join("\n               ")
    );
    println!("");
    println!("bandwidth stats:");
    println!("  total    in: {}", bw_stats.total_in);
    println!("  total   out: {}", bw_stats.total_out);
    println!("  rate     in: {}", bw_stats.rate_in);
    println!("  rate    out: {}", bw_stats.rate_out);
    println!("");
    println!("repo stats:");
    println!("  num    objs: {}", repo_stats.num_objects);
    println!("  repo   size: {}", repo_stats.repo_size);
    println!("  repo   path: {}", repo_stats.repo_path);
    println!("  version    : {}", repo_stats.version);
}