Files

12 lines
255 B
PowerShell
Raw Permalink Normal View History

2026-03-25 13:42:48 +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