docker-stats 0.3.0

Visualize container stats with beautiful, real-time charts directly in your terminal.
Documentation
1
2
3
4
5
6
7
8
9
10
use clap::{arg, Command};

pub fn args() -> Command {
    Command::new("ds")
        .about("Think \"docker stats\" but with beautiful, real-time charts. 📊")
        .arg_required_else_help(false)
        .arg(arg!(<CONTAINER> ... "The container to show stats for.").required(false))
        .arg(arg!(-c - -compact "Enable a simpler, more compact view."))
        .arg(arg!(-f - -full "Enable a more detailed view."))
}