Files
aza/AzA march 2026/AZA_PRE_RELEASE_BACKUP_20260612_233039/deploy/test-telemetry.ps1
2026-06-13 22:47:31 +02:00

12 lines
255 B
PowerShell

$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