summaryrefslogtreecommitdiffstats
path: root/examples/top.rs
blob: 5fc42297b3920c3a313f7d912ab3d0f7772dfc07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use shiplift::Docker;
use std::env;
use tokio::prelude::Future;

fn main() {
    let docker = Docker::new();
    let id = env::args()
        .nth(1)
        .expect("Usage: cargo run --example top -- <container>");
    let fut = docker
        .containers()
        .get(&id)
        .top(Default::default())
        .map(|top| println!("{:#?}", top))
        .map_err(|e| eprintln!("Error: {}", e));
    tokio::run(fut);
}