otelite-tui 0.1.7

Terminal User Interface for Otelite OpenTelemetry receiver
Documentation
use std::time::Duration;

/// Application configuration
#[derive(Debug, Clone)]
pub struct Config {
    /// Otelite API base URL
    pub api_url: String,

    /// Refresh interval for polling data
    pub refresh_interval: Duration,

    /// Initial view to display
    pub initial_view: String,

    /// Enable debug logging (will be used when debug mode is implemented)
    #[allow(dead_code)]
    pub debug: bool,

    /// Version string to display in the help screen (e.g. "0.1.0 (abc1234)")
    pub version: String,
}

impl Default for Config {
    fn default() -> Self {
        Self {
            api_url: "http://localhost:3000".to_string(),
            refresh_interval: Duration::from_secs(2),
            initial_view: "logs".to_string(),
            debug: false,
            version: concat!(
                env!("CARGO_PKG_VERSION"),
                " (",
                env!("OTELITE_GIT_SHA"),
                ")"
            )
            .to_string(),
        }
    }
}