mirror of
https://github.com/bolucat/Archive.git
synced 2026-04-23 00:17:16 +08:00
53 lines
1.8 KiB
Bash
Executable File
53 lines
1.8 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright (C) 2022 mieru authors
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
function print_mieru_client_log() {
|
|
echo "========== BEGIN OF MIERU CLIENT LOG =========="
|
|
cat $HOME/.cache/mieru/*.log
|
|
echo "========== END OF MIERU CLIENT LOG =========="
|
|
}
|
|
|
|
function delete_mieru_client_log() {
|
|
rm -rf $HOME/.cache/mieru/*.log
|
|
}
|
|
|
|
function print_mieru_server_thread_dump() {
|
|
echo "========== BEGIN OF MIERU SERVER THREAD DUMP =========="
|
|
./mita get thread-dump
|
|
echo "========== END OF MIERU SERVER THREAD DUMP =========="
|
|
}
|
|
|
|
function print_mieru_client_thread_dump() {
|
|
echo "========== BEGIN OF MIERU CLIENT THREAD DUMP =========="
|
|
./mieru get thread-dump
|
|
echo "========== END OF MIERU CLIENT THREAD DUMP =========="
|
|
}
|
|
|
|
function print_mieru_client_metrics() {
|
|
echo "========== BEGIN OF MIERU CLIENT METRICS =========="
|
|
./mieru get metrics
|
|
./mieru get memory-statistics
|
|
echo "========== END OF MIERU CLIENT METRICS =========="
|
|
}
|
|
|
|
function print_mieru_server_metrics() {
|
|
echo "========== BEGIN OF MIERU SERVER METRICS =========="
|
|
./mita get metrics
|
|
./mita get memory-statistics
|
|
echo "========== END OF MIERU SERVER METRICS =========="
|
|
}
|