rust_mobile_telemetry 0.1.0

Observability instrumentation (tracing + metrics) for mobile-backend applications or embedded / edge services.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
$ErrorActionPreference = "Stop"

Write-Host "1. Running Unit and Integration Tests..." -ForegroundColor Cyan
cargo test
if ($LASTEXITCODE -ne 0) { 
    Write-Error "Tests failed!" 
    exit 1 
}
Write-Host "Tests passed!" -ForegroundColor Green

Write-Host "`n2. Running Example Application (basic_usage)..." -ForegroundColor Cyan
cargo run --example basic_usage
if ($LASTEXITCODE -ne 0) { 
    Write-Error "Example failed to run!" 
    exit 1 
}
Write-Host "Example finished successfully!" -ForegroundColor Green