otelite-api 0.1.0

Lightweight web dashboard for visualizing OpenTelemetry logs, traces, and metrics
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Otelite Dashboard - Lightweight web UI for OpenTelemetry visualization
//!
//! This crate provides a web-based dashboard for viewing logs, traces, and metrics
//! collected by Otelite. The dashboard is designed to be lightweight, fast, and
//! embedded within the main Otelite binary.

pub mod api;
pub mod cache;
pub mod config;
pub mod server;
pub mod static_files;

pub use config::DashboardConfig;
pub use server::DashboardServer;

/// Dashboard version
pub const VERSION: &str = env!("CARGO_PKG_VERSION");