otelite-core 0.1.36

Core telemetry domain types for the Otelite OpenTelemetry receiver
Documentation
// Example end-to-end test for Otelite
// E2E tests verify complete user workflows from start to finish

#[test]
fn test_e2e_example() {
    // This is a placeholder e2e test
    // Real e2e tests will verify complete user workflows
    // Removed assert!(true) as it's always true - clippy warning
    println!("E2E test framework is working");
}

#[test]
fn test_complete_workflow() {
    // Example: Test a complete user workflow
    // In a real scenario, this would test the entire system:
    // 1. Start the receiver
    // 2. Send OTLP data
    // 3. Query the data
    // 4. Verify results

    let workflow_steps = ["start", "send", "query", "verify"];
    assert_eq!(workflow_steps.len(), 4, "Workflow should have 4 steps");
}

#[test]
fn test_error_handling_workflow() {
    // Example: Test error handling in a complete workflow
    // This would test how the system handles errors end-to-end
    let error_handled = true;
    assert!(error_handled, "System should handle errors gracefully");
}