summaryrefslogtreecommitdiff
path: root/loolstat
blob: 2c0e3f2a38a8be38ce9ad589e9b9da931f846867 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#!/bin/bash

# utilities
TR='tr'
WC='wc'
PS='ps'
SED='sed'
TOP='top'
GREP='grep'
PSTREE='pstree'

# print error message
log_failure_msg () {
  if [ -n "${1:-}" ]; then
    /bin/echo "$@" || true
  fi
}

# checking ... print lines matching a pattern utility
if ! echo a | $GREP -E '(a|b)' >/dev/null 2>&1; then
  log_failure_msg "$0: error: $GREP utility not found."
fi

# checking ... word count utility
if ! $WC --version >/dev/null 2>&1; then
  log_failure_msg "$0: error: $WC utility not found."
fi

# checking ... stream editor utility
if ! $SED --version >/dev/null 2>&1; then
  log_failure_msg "$0: error: $SED utility not found."
fi

# checking ... delete characters utility
if ! $TR --version >/dev/null 2>&1; then
  log_failure_msg "$0: error: $TR utility not found."
fi

# checking ... display a tree of processes utility
if ! $PSTREE --version >/dev/null 2>&1; then
  log_failure_msg "$0: error: $PSTREE utility not found."
fi

# checking ... report a snapshot of the current processes utility.
if ! $PS --version >/dev/null 2>&1; then
  log_failure_msg "$0: error: $PS utility not found."
fi

# checking ... display Linux processes utility.
if ! $TOP -v >/dev/null 2>&1; then
  log_failure_msg "$0: error: $TOP utility not found."
fi

# get the loolwsd process id.
LOOLWSD_PID=`pgrep loolwsd$`;

# checking if loolwsd is running.
if ! $PS -p $LOOLWSD_PID > /dev/null; then
	log_failure_msg "$0: error: loolwsd is not running."
	exit 1;
fi

# display a tree of processes.
$PSTREE -a -c -h -A -p $LOOLWSD_PID;

# get the number of running processes.
PROCESS=$($PSTREE -a -h -A -p $LOOLWSD_PID | $SED -e "s/\`//g" | $TR -d ' |-' | $GREP -E '^loolwsd|^loolforkit|^loolkit' | $WC -l);

# get the number of running threads.
THREADS=$($PSTREE -a -h -A -p $LOOLWSD_PID | $GREP -o '{.*}' | $WC -l);

# get the number of running client socket.
LOOLWSD_CLIENT=$($PSTREE -a -h -A -p $LOOLWSD_PID | $GREP -o '{client_socket}' | $WC -l);

# get the number of running prision socket.
LOOLWSD_PRISIONER=$($PSTREE -a -h -A -p $LOOLWSD_PID | $GREP -o '{prision_socket}' | $WC -l);

# get the number of processes swapped out.
SWAPPEDOUT=$($PSTREE -a -h -A -p $LOOLWSD_PID | $GREP -o '(.*)' | $WC -l);

# display report stats
printf "\n %-10s\n" "LOOLWSD STATS";
printf "==========================\n";
printf " %-10s %d\n" "Running process:" "$PROCESS";
printf " %-10s %d\n" "Running threads:" "$THREADS";
printf " %-10s %d\n" "Process swapped out:" "$SWAPPEDOUT";
printf " %-10s %d\n" "Socket Client   threads:" "$LOOLWSD_CLIENT";
printf " %-10s %d\n" "Socket Prision  threads:" "$LOOLWSD_PRISIONER";
$TOP -bn 1 | $GREP -E 'loolwsd|COMMAND'