add stats scripts

This commit is contained in:
Daniel Micay 2023-07-08 01:03:22 -04:00
parent 5d07b89e77
commit 3400e1f481
2 changed files with 39 additions and 0 deletions

20
connection-stats Executable file
View File

@ -0,0 +1,20 @@
#!/bin/bash
set -o errexit -o nounset -o pipefail
[[ $# -ge 1 ]] || exit 1
user=root
. hosts.sh
declare -n hosts=hosts_$1
shift
for host in ${hosts[@]}; do
echo $host
echo
ssh $user@$host ss -s
echo
done

19
nginx-stats Executable file
View File

@ -0,0 +1,19 @@
#!/bin/bash
set -o errexit -o nounset -o pipefail
[[ $# -ge 1 ]] || exit 1
user=root
. hosts.sh
declare -n hosts=hosts_$1
shift
for host in ${hosts[@]}; do
echo $host
echo
ssh $user@$host curl -sS --unix-socket /run/nginx/status.sock http://localhost/
echo
done