Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기audit-ops
스타3
포크1
업데이트2026년 5월 30일 01:17
Is it running?
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Is it running?
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Application programming interface.
Does CI work?
Did it work?
Is everything okay?
Does this meet standards?
Does it work well?
| name | audit-ops |
| description | Is it running? |
| license | MIT |
| metadata | {"author":"vant","version":"1.0"} |
Is it running?
Is it up? Is it working?
# Is it up?
curl -s -o /dev/null -w "%{http_code}" /health
# or
curl localhost:3000/health
| Check | Response |
|---|---|
| 200 | OK |
| 500 | BROKEN |
| Timeout | DOWN |
# Common endpoints
/readyz
/healthz
/metrics
| Metric | What It Shows |
|---|---|
| Memory | Under OOM? |
| CPU | Under load? |
| Requests | Traffic |
| Errors | Failures |
# Check errors
tail -100 logs/app.log | grep -i error
| Check | Look For |
|---|---|
| Errors | ERROR, FATAL |
| Warnings | WARN |
| Slow | > 1s |
# Is there capacity?
df -h # disk
free -h # memory
uptime # load
| Check | Limit |
|---|---|
| Disk | < 80% |
| Memory | < 80% |
| CPU | < 80% |
## Ops Audit - [system]
### Health
- [UP/DOWN] Status: [code]
- [UP/DOWN] /readyz: [code]
### Metrics
- Requests: [count/hr]
- Errors: [count/hr]
- Latency: P[95]ms
### Resources
- CPU: [x]%
- Memory: [x]%
- Disk: [x]%
### Issues
- [list]
| Severity | Meaning | Action |
|---|---|---|
| DOWN | Not working | Fix now |
| DEGRADED | Partially working | Fix soon |
| WARNING | Risk | Monitor |
Role: Ops Auditor
Input: System
Output: Is it running?
Keep it running.