Files
aza/AzA march 2026 - Kopie (3)/deploy/test-telemetry.ps1
2026-03-30 07:59:11 +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