1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-08 16:46:17 +02:00
youki/src/commands/events.rs
2021-10-22 21:55:16 +02:00

30 lines
838 B
Rust

use clap::Clap;
use std::path::PathBuf;
use anyhow::{Context, Result};
use crate::commands::load_container;
/// Show resource statistics for the container
#[derive(Clap, Debug)]
pub struct Events {
/// Sets the stats collection interval in seconds (default: 5s)
#[clap(long, default_value = "5")]
pub interval: u32,
/// Display the container stats only once
#[clap(long)]
pub stats: bool,
/// Name of the container instance
#[clap(required = true)]
pub container_id: String,
}
impl Events {
pub fn exec(&self, root_path: PathBuf) -> Result<()> {
let mut container = load_container(root_path, &self.container_id)?;
container
.events(self.interval, self.stats)
.with_context(|| format!("failed to get events from container {}", self.container_id))
}
}