7 lines
372 B
Bash
Executable File
7 lines
372 B
Bash
Executable File
#!/bin/bash
|
|
# V27 V89 scale - Opus WIRE continue - Skill: http-latency
|
|
# Description: HTTP latency to WTP
|
|
# Whitelist-safe timeout 8s
|
|
set -e
|
|
timeout 8 bash -c 'curl -sk -o /dev/null -w '{"latency_ms":%{time_total}}' --max-time 5 https://weval-consulting.com/weval-technology-platform.html' 2>&1 || echo "{\"skill\":\"http-latency\",\"error\":\"timeout_or_missing_tool\"}"
|