| Crates.io | avl-observability |
| lib.rs | avl-observability |
| version | 0.1.0 |
| created_at | 2025-11-23 08:16:18.61363+00 |
| updated_at | 2025-11-23 08:16:18.61363+00 |
| description | AVL Observability - Complete observability stack (metrics, logs, traces) for AVL Cloud |
| homepage | https://avila.cloud |
| repository | https://github.com/avilaops/arxis |
| max_upload_size | |
| id | 1946284 |
| size | 53,596 |
Complete Observability Stack for AVL Cloud Platform
🏛️ Complete Visibility | ⚙️ Real-Time Monitoring | 📈 Metrics, Logs, Traces
use avl_observability::{metrics, tracing};
#[tokio::main]
async fn main() {
// Initialize observability
avl_observability::init().await?;
// Record metrics
metrics::counter!("requests_total", 1);
metrics::gauge!("memory_usage_bytes", 1024*1024);
// Structured logging
tracing::info!(
user_id = "user123",
action = "login",
"User logged in successfully"
);
// Distributed tracing
let span = tracing::span!(tracing::Level::INFO, "process_order");
let _enter = span.enter();
// ... process order
}
🏛️ Built by Avila - Part of AVL Cloud Platform