mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Add small .sh for easier report while investigating problem (#741)
* Add small .sh for easier report while investigating problem * renamed: clickhouse_report.sh -> report/clickhouse_report.sh * fix new path
This commit is contained in:
parent
0787bd66ff
commit
cb890e26b9
20
utils/report/clickhouse_report.sh
Executable file
20
utils/report/clickhouse_report.sh
Executable file
@ -0,0 +1,20 @@
|
||||
#!/bin/sh -x
|
||||
# Usages:
|
||||
# ./clickhouse_report.sh > ch.`hostname`.`date '+%Y%M%''d%H%M%''S'`.dmp 2>&1
|
||||
# curl https://raw.githubusercontent.com/yandex/ClickHouse/master/utils/report/clickhouse_report.sh | sh > ch.`hostname`.`date '+%Y%M%''d%H%M%''S'`.dmp 2>&1
|
||||
|
||||
clickhouse --client -q 'SELECT * FROM system.events FORMAT Pretty'
|
||||
clickhouse --client -q 'SELECT * FROM system.metrics FORMAT Pretty'
|
||||
clickhouse --client -q 'SELECT * FROM system.asynchronous_metrics FORMAT Pretty'
|
||||
clickhouse --client -q 'SELECT * FROM system.build_options FORMAT Pretty'
|
||||
clickhouse --client -q 'SELECT * FROM system.processes FORMAT Pretty'
|
||||
clickhouse --client -q 'SELECT * FROM system.merges FORMAT Pretty'
|
||||
clickhouse --client -q 'SELECT * FROM system.parts FORMAT Pretty'
|
||||
clickhouse --client -q 'SELECT * FROM system.replication_queue FORMAT Pretty'
|
||||
clickhouse --client -q 'SELECT * FROM system.dictionaries FORMAT Pretty'
|
||||
ps auxw
|
||||
df -h
|
||||
top -bn1
|
||||
tail -n200 /var/log/clickhouse-server/clickhouse-server.err.log
|
||||
tail -n200 /var/log/clickhouse-server/clickhouse-server.log
|
||||
tail -n100 /var/log/clickhouse-server/stderr
|
Loading…
Reference in New Issue
Block a user