#!/usr/bin/env bash # # admin-status.sh — Authentik system health and version info # # Usage: admin-status.sh [-f format] [-a instance] # # Options: # -f format Output format: table (default), json # -a instance Authentik instance name (e.g. usc, mosaic) # -h Show this help set -euo pipefail MOSAIC_HOME="${MOSAIC_HOME:-$HOME/.config/mosaic}" SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" source "$MOSAIC_HOME/tools/_lib/credentials.sh" FORMAT="table" AK_INSTANCE="" while getopts "f:a:h" opt; do case $opt in f) FORMAT="$OPTARG" ;; a) AK_INSTANCE="$OPTARG" ;; h) head -13 "$0" | grep "^#" | sed 's/^# \?//'; exit 0 ;; *) echo "Usage: $0 [-f format] [-a instance]" >&2; exit 1 ;; esac done if [[ -n "$AK_INSTANCE" ]]; then load_credentials "authentik-${AK_INSTANCE}" else load_credentials authentik fi TOKEN=$("$SCRIPT_DIR/auth-token.sh" -q ${AK_INSTANCE:+-a "$AK_INSTANCE"}) response=$(curl -sk -w "\n%{http_code}" \ -H "Authorization: Bearer $TOKEN" \ "${AUTHENTIK_URL}/api/v3/admin/system/") http_code=$(echo "$response" | tail -n1) body=$(echo "$response" | sed '$d') if [[ "$http_code" != "200" ]]; then echo "Error: Failed to get system status (HTTP $http_code)" >&2 exit 1 fi if [[ "$FORMAT" == "json" ]]; then echo "$body" | jq '.' exit 0 fi echo "Authentik System Status" echo "=======================" echo "$body" | jq -r ' " URL: \(.http_host // "unknown")\n" + " Version: \(.runtime.authentik_version // "unknown")\n" + " Python: \(.runtime.python_version // "unknown")\n" + " Workers: \(.runtime.gunicorn_workers // "unknown")\n" + " Build Hash: \(.runtime.build_hash // "unknown")\n" + " Embedded Outpost: \(.embedded_outpost_host // "unknown")" '