7 lines
236 B
Bash
Executable File
7 lines
236 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
curl -sS http://127.0.0.1:8765/api/state | python3 -m json.tool
|
|
curl -sS http://127.0.0.1:8765/api/analytics | python3 -m json.tool
|
|
curl -sS http://127.0.0.1:8765/api/health | python3 -m json.tool
|