7 lines
326 B
Bash
Executable File
7 lines
326 B
Bash
Executable File
#!/bin/bash
|
|
# V31 batch generator - Opus WIRE doctrine 13+7 - Skill: perf-context-switches
|
|
# Description: Context switches/sec
|
|
# Whitelist-safe timeout 8s
|
|
set +e
|
|
timeout 8 bash -c "vmstat 1 2 2>/dev/null | tail -1 | awk '{print $12}'" 2>&1 || echo "{\"skill\":\"perf-context-switches\",\"error\":\"timeout_or_missing_tool\"}"
|