]> git.proxmox.com Git - ceph.git/blame - ceph/qa/workunits/mgr/test_per_module_finisher.sh
update ceph source to reef 18.1.2
[ceph.git] / ceph / qa / workunits / mgr / test_per_module_finisher.sh
CommitLineData
1e59de90
TL
1#!/usr/bin/env bash
2set -ex
3
4# This testcase tests the per module finisher stats for enabled modules
5# using check counter (qa/tasks/check_counter.py).
6
7# 'balancer' commands
8ceph balancer pool ls
9
10# 'crash' commands
11ceph crash ls
12ceph crash ls-new
13
14# 'device' commands
15ceph device query-daemon-health-metrics mon.a
16
17# 'iostat' command
18ceph iostat &
19pid=$!
20sleep 3
21kill -SIGTERM $pid
22
23# 'pg_autoscaler' command
24ceph osd pool autoscale-status
25
26# 'progress' command
27ceph progress
28ceph progress json
29
30# 'status' commands
31ceph fs status
32ceph osd status
33
34# 'telemetry' commands
35ceph telemetry status
36ceph telemetry diff
37
38echo OK