Files
aza/AzA march 2026/deploy/test-telemetry.ps1

12 lines
255 B
PowerShell
Raw Permalink Normal View History

2026-03-25 22:03:39 +01:00
$body = @{
event = "app_start"
version = "0.1.0"
platform = "windows"
} | ConvertTo-Json -Compress
Invoke-RestMethod `
-Method Post `
-Uri "http://localhost:8080/telemetry/ping" `
-ContentType "application/json" `
-Body $body