2024-09-11T07:14:39.935 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-11T07:14:39.949 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-11T07:14:40.031 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/gabrioux-2024-09-11_06:53:43-orch:cephadm-wip-guits-quincy-2024-09-10-2008-quincy-distro-default-smithi/7901212 branch: wip-guits-quincy-2024-09-10-2008-quincy description: orch:cephadm/workunits/{0-distro/ubuntu_20.04 agent/off mon_election/classic task/test_host_drain} email: gabrioux@ibm.com first_in_suite: false job_id: '7901212' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: gabrioux-2024-09-11_06:53:43-orch:cephadm-wip-guits-quincy-2024-09-10-2008-quincy-distro-default-smithi no_nested_subset: false os_type: ubuntu os_version: '20.04' overrides: admin_socket: branch: wip-guits-quincy-2024-09-10-2008-quincy ceph: conf: global: mon election default strategy: 1 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: false mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) - MON_DOWN - mons down - mon down - out of quorum sha1: d0e6828a2016d48cf25ad84064e50742bb1c39b9 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: d0e6828a2016d48cf25ad84064e50742bb1c39b9 workunit: branch: wip-guits-quincy-2024-09-10-2008-quincy sha1: d0e6828a2016d48cf25ad84064e50742bb1c39b9 owner: scheduled_gabrioux@teuthology priority: 70 repo: https://git.ceph.com/ceph-ci.git roles: - - host.a - mon.a - mgr.a - osd.0 - osd.1 - - host.b - mon.b - mgr.b - osd.2 - osd.3 - - host.c - mon.c - osd.4 - osd.5 seed: 2282 sha1: d0e6828a2016d48cf25ad84064e50742bb1c39b9 sleep_before_teardown: 0 subset: 1/8 suite: orch:cephadm suite_branch: wip-guits-quincy-2024-09-10-2008-quincy suite_path: /home/teuthworker/src/git.ceph.com_ceph-c_d0e6828a2016d48cf25ad84064e50742bb1c39b9/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph-ci.git suite_sha1: d0e6828a2016d48cf25ad84064e50742bb1c39b9 targets: smithi115.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFyT/r7xuKfmg50w0OdQebr4A/ptJo1Zk6DyZNZNZM/q5rW+sznh+wvHqeT3e4YtCdZLaXyvMms8o8u8H5nXOYM= smithi150.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFyT/r7xuKfmg50w0OdQebr4A/ptJo1Zk6DyZNZNZM/q5rW+sznh+wvHqeT3e4YtCdZLaXyvMms8o8u8H5nXOYM= smithi181.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFyT/r7xuKfmg50w0OdQebr4A/ptJo1Zk6DyZNZNZM/q5rW+sznh+wvHqeT3e4YtCdZLaXyvMms8o8u8H5nXOYM= tasks: - install: null - cephadm: null - cephadm.shell: host.a: - "set -ex\nHOSTNAMES=$(ceph orch host ls --format json | jq -r '.[] | .hostname')\n\ for host in $HOSTNAMES; do\n # find the hostname for \"host.c\" which will\ \ have no mgr\n HAS_MGRS=$(ceph orch ps --hostname ${host} --format json |\ \ jq 'any(.daemon_type == \"mgr\")')\n if [ \"$HAS_MGRS\" == \"false\" ]; then\n\ \ HOST_C=\"${host}\"\n fi\ndone\n# now drain that host\nceph orch host drain\ \ $HOST_C --zap-osd-devices\n# wait for drain to complete\nHOST_C_DAEMONS=$(ceph\ \ orch ps --hostname $HOST_C)\nwhile [ \"$HOST_C_DAEMONS\" != \"No daemons reported\"\ \ ]; do\n sleep 15\n HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\ndone\n\ # we want to check the ability to remove the host from\n# the CRUSH map, so\ \ we should first verify the host is in\n# the CRUSH map.\nceph osd getcrushmap\ \ -o compiled-crushmap\ncrushtool -d compiled-crushmap -o crushmap.txt\nCRUSH_MAP=$(cat\ \ crushmap.txt)\nif ! grep -q \"$HOST_C\" <<< \"$CRUSH_MAP\"; then\n printf\ \ \"Expected to see $HOST_C in CRUSH map. Saw:\\n\\n$CRUSH_MAP\"\n exit 1\n\ fi\n# If the drain was successful, we should be able to remove the\n# host without\ \ force with no issues. If there are still daemons\n# we will get a response\ \ telling us to drain the host and a\n# non-zero return code\nceph orch host\ \ rm $HOST_C --rm-crush-entry\n# verify we've successfully removed the host\ \ from the CRUSH map\nsleep 30\nceph osd getcrushmap -o compiled-crushmap\n\ crushtool -d compiled-crushmap -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\n\ if grep -q \"$HOST_C\" <<< \"$CRUSH_MAP\"; then\n printf \"Saw $HOST_C in CRUSH\ \ map after it should have been removed.\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n" teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a timestamp: 2024-09-11_06:53:43 tube: smithi user: gabrioux verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.3401856 2024-09-11T07:14:40.031 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph-c_d0e6828a2016d48cf25ad84064e50742bb1c39b9/qa; will attempt to use it 2024-09-11T07:14:40.032 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph-c_d0e6828a2016d48cf25ad84064e50742bb1c39b9/qa/tasks 2024-09-11T07:14:40.033 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-11T07:14:40.034 INFO:teuthology.task.internal:Checking packages... 2024-09-11T07:14:40.055 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash 'd0e6828a2016d48cf25ad84064e50742bb1c39b9' 2024-09-11T07:14:40.056 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-11T07:14:40.056 INFO:teuthology.packaging:ref: None 2024-09-11T07:14:40.056 INFO:teuthology.packaging:tag: None 2024-09-11T07:14:40.056 INFO:teuthology.packaging:branch: wip-guits-quincy-2024-09-10-2008-quincy 2024-09-11T07:14:40.056 INFO:teuthology.packaging:sha1: d0e6828a2016d48cf25ad84064e50742bb1c39b9 2024-09-11T07:14:40.056 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F20.04%2Fx86_64&ref=wip-guits-quincy-2024-09-10-2008-quincy 2024-09-11T07:14:40.198 INFO:teuthology.task.internal:Found packages for ceph version 17.2.7-1623-gd0e6828a-1focal 2024-09-11T07:14:40.200 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-11T07:14:40.206 INFO:teuthology.task.internal:no buildpackages task found 2024-09-11T07:14:40.206 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-11T07:14:40.237 INFO:teuthology.task.internal:Saving configuration 2024-09-11T07:14:40.249 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-11T07:14:40.255 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-11T07:14:40.275 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi115.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/gabrioux-2024-09-11_06:53:43-orch:cephadm-wip-guits-quincy-2024-09-10-2008-quincy-distro-default-smithi/7901212', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '20.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-11 07:08:33.482421', 'locked_by': 'scheduled_gabrioux@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGETOy3xONfbx7kUFCNiUtRLNfkcrcEsWzPdq6Np/6Bw'} 2024-09-11T07:14:40.290 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi150.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/gabrioux-2024-09-11_06:53:43-orch:cephadm-wip-guits-quincy-2024-09-10-2008-quincy-distro-default-smithi/7901212', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '20.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-11 07:08:33.481459', 'locked_by': 'scheduled_gabrioux@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGETOy3xONfbx7kUFCNiUtRLNfkcrcEsWzPdq6Np/6Bw'} 2024-09-11T07:14:40.309 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi181.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/gabrioux-2024-09-11_06:53:43-orch:cephadm-wip-guits-quincy-2024-09-10-2008-quincy-distro-default-smithi/7901212', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '20.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-11 07:08:33.480289', 'locked_by': 'scheduled_gabrioux@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGETOy3xONfbx7kUFCNiUtRLNfkcrcEsWzPdq6Np/6Bw'} 2024-09-11T07:14:40.309 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-11T07:14:40.315 INFO:teuthology.task.internal:roles: ubuntu@smithi115.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-09-11T07:14:40.315 INFO:teuthology.task.internal:roles: ubuntu@smithi150.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-09-11T07:14:40.315 INFO:teuthology.task.internal:roles: ubuntu@smithi181.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-09-11T07:14:40.315 INFO:teuthology.run_tasks:Running task console_log... 2024-09-11T07:14:40.388 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7fd79900fac0>, signals=[15]) 2024-09-11T07:14:40.389 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-11T07:14:40.394 INFO:teuthology.task.internal:Opening connections... 2024-09-11T07:14:40.394 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi115.front.sepia.ceph.com 2024-09-11T07:14:40.395 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi115.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T07:14:40.482 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi150.front.sepia.ceph.com 2024-09-11T07:14:40.483 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi150.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T07:14:40.577 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi181.front.sepia.ceph.com 2024-09-11T07:14:40.578 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi181.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T07:14:40.663 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-11T07:14:40.669 DEBUG:teuthology.orchestra.run.smithi115:> uname -m 2024-09-11T07:14:40.675 INFO:teuthology.orchestra.run.smithi115.stdout:x86_64 2024-09-11T07:14:40.676 DEBUG:teuthology.orchestra.run.smithi115:> cat /etc/os-release 2024-09-11T07:14:40.722 INFO:teuthology.orchestra.run.smithi115.stdout:NAME="Ubuntu" 2024-09-11T07:14:40.722 INFO:teuthology.orchestra.run.smithi115.stdout:VERSION="20.04.4 LTS (Focal Fossa)" 2024-09-11T07:14:40.722 INFO:teuthology.orchestra.run.smithi115.stdout:ID=ubuntu 2024-09-11T07:14:40.722 INFO:teuthology.orchestra.run.smithi115.stdout:ID_LIKE=debian 2024-09-11T07:14:40.722 INFO:teuthology.orchestra.run.smithi115.stdout:PRETTY_NAME="Ubuntu 20.04.4 LTS" 2024-09-11T07:14:40.722 INFO:teuthology.orchestra.run.smithi115.stdout:VERSION_ID="20.04" 2024-09-11T07:14:40.722 INFO:teuthology.orchestra.run.smithi115.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-11T07:14:40.723 INFO:teuthology.orchestra.run.smithi115.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-11T07:14:40.723 INFO:teuthology.orchestra.run.smithi115.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-11T07:14:40.723 INFO:teuthology.orchestra.run.smithi115.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-11T07:14:40.723 INFO:teuthology.orchestra.run.smithi115.stdout:VERSION_CODENAME=focal 2024-09-11T07:14:40.723 INFO:teuthology.orchestra.run.smithi115.stdout:UBUNTU_CODENAME=focal 2024-09-11T07:14:40.723 INFO:teuthology.lock.ops:Updating smithi115.front.sepia.ceph.com on lock server 2024-09-11T07:14:40.741 DEBUG:teuthology.orchestra.run.smithi150:> uname -m 2024-09-11T07:14:40.748 INFO:teuthology.orchestra.run.smithi150.stdout:x86_64 2024-09-11T07:14:40.748 DEBUG:teuthology.orchestra.run.smithi150:> cat /etc/os-release 2024-09-11T07:14:40.795 INFO:teuthology.orchestra.run.smithi150.stdout:NAME="Ubuntu" 2024-09-11T07:14:40.795 INFO:teuthology.orchestra.run.smithi150.stdout:VERSION="20.04.4 LTS (Focal Fossa)" 2024-09-11T07:14:40.796 INFO:teuthology.orchestra.run.smithi150.stdout:ID=ubuntu 2024-09-11T07:14:40.796 INFO:teuthology.orchestra.run.smithi150.stdout:ID_LIKE=debian 2024-09-11T07:14:40.796 INFO:teuthology.orchestra.run.smithi150.stdout:PRETTY_NAME="Ubuntu 20.04.4 LTS" 2024-09-11T07:14:40.796 INFO:teuthology.orchestra.run.smithi150.stdout:VERSION_ID="20.04" 2024-09-11T07:14:40.796 INFO:teuthology.orchestra.run.smithi150.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-11T07:14:40.796 INFO:teuthology.orchestra.run.smithi150.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-11T07:14:40.796 INFO:teuthology.orchestra.run.smithi150.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-11T07:14:40.796 INFO:teuthology.orchestra.run.smithi150.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-11T07:14:40.796 INFO:teuthology.orchestra.run.smithi150.stdout:VERSION_CODENAME=focal 2024-09-11T07:14:40.796 INFO:teuthology.orchestra.run.smithi150.stdout:UBUNTU_CODENAME=focal 2024-09-11T07:14:40.796 INFO:teuthology.lock.ops:Updating smithi150.front.sepia.ceph.com on lock server 2024-09-11T07:14:40.816 DEBUG:teuthology.orchestra.run.smithi181:> uname -m 2024-09-11T07:14:40.823 INFO:teuthology.orchestra.run.smithi181.stdout:x86_64 2024-09-11T07:14:40.823 DEBUG:teuthology.orchestra.run.smithi181:> cat /etc/os-release 2024-09-11T07:14:40.873 INFO:teuthology.orchestra.run.smithi181.stdout:NAME="Ubuntu" 2024-09-11T07:14:40.873 INFO:teuthology.orchestra.run.smithi181.stdout:VERSION="20.04.4 LTS (Focal Fossa)" 2024-09-11T07:14:40.873 INFO:teuthology.orchestra.run.smithi181.stdout:ID=ubuntu 2024-09-11T07:14:40.873 INFO:teuthology.orchestra.run.smithi181.stdout:ID_LIKE=debian 2024-09-11T07:14:40.873 INFO:teuthology.orchestra.run.smithi181.stdout:PRETTY_NAME="Ubuntu 20.04.4 LTS" 2024-09-11T07:14:40.873 INFO:teuthology.orchestra.run.smithi181.stdout:VERSION_ID="20.04" 2024-09-11T07:14:40.874 INFO:teuthology.orchestra.run.smithi181.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-11T07:14:40.874 INFO:teuthology.orchestra.run.smithi181.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-11T07:14:40.874 INFO:teuthology.orchestra.run.smithi181.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-11T07:14:40.874 INFO:teuthology.orchestra.run.smithi181.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-11T07:14:40.874 INFO:teuthology.orchestra.run.smithi181.stdout:VERSION_CODENAME=focal 2024-09-11T07:14:40.874 INFO:teuthology.orchestra.run.smithi181.stdout:UBUNTU_CODENAME=focal 2024-09-11T07:14:40.874 INFO:teuthology.lock.ops:Updating smithi181.front.sepia.ceph.com on lock server 2024-09-11T07:14:40.891 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-11T07:14:40.899 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-11T07:14:40.905 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-11T07:14:40.906 DEBUG:teuthology.orchestra.run.smithi115:> test '!' -e /home/ubuntu/cephtest 2024-09-11T07:14:40.908 DEBUG:teuthology.orchestra.run.smithi150:> test '!' -e /home/ubuntu/cephtest 2024-09-11T07:14:40.910 DEBUG:teuthology.orchestra.run.smithi181:> test '!' -e /home/ubuntu/cephtest 2024-09-11T07:14:40.915 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-11T07:14:40.921 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-11T07:14:40.921 DEBUG:teuthology.orchestra.run.smithi115:> test -z $(ls -A /var/lib/ceph) 2024-09-11T07:14:40.954 DEBUG:teuthology.orchestra.run.smithi150:> test -z $(ls -A /var/lib/ceph) 2024-09-11T07:14:40.956 DEBUG:teuthology.orchestra.run.smithi181:> test -z $(ls -A /var/lib/ceph) 2024-09-11T07:14:40.976 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-11T07:14:41.037 INFO:teuthology.run_tasks:Running task kernel... 2024-09-11T07:14:41.115 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-11T07:14:41.115 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}, 'host.c': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-09-11T07:14:41.115 DEBUG:teuthology.orchestra.run.smithi115:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-11T07:14:41.116 DEBUG:teuthology.orchestra.run.smithi150:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-11T07:14:41.116 DEBUG:teuthology.orchestra.run.smithi181:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-11T07:14:41.121 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-11T07:14:41.122 DEBUG:teuthology.orchestra.run.smithi150:> uname -r 2024-09-11T07:14:41.122 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-11T07:14:41.123 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-11T07:14:41.123 DEBUG:teuthology.orchestra.run.smithi181:> uname -r 2024-09-11T07:14:41.124 DEBUG:teuthology.orchestra.run.smithi115:> uname -r 2024-09-11T07:14:41.129 INFO:teuthology.orchestra.run.smithi150.stdout:5.4.0-124-generic 2024-09-11T07:14:41.130 INFO:teuthology.task.kernel:Running kernel on smithi150: 5.4.0-124-generic 2024-09-11T07:14:41.130 DEBUG:teuthology.orchestra.run.smithi150:> sudo apt-get clean 2024-09-11T07:14:41.170 INFO:teuthology.orchestra.run.smithi115.stdout:5.4.0-124-generic 2024-09-11T07:14:41.170 INFO:teuthology.task.kernel:Running kernel on smithi115: 5.4.0-124-generic 2024-09-11T07:14:41.170 DEBUG:teuthology.orchestra.run.smithi115:> sudo apt-get clean 2024-09-11T07:14:41.173 INFO:teuthology.orchestra.run.smithi181.stdout:5.4.0-124-generic 2024-09-11T07:14:41.174 INFO:teuthology.task.kernel:Running kernel on smithi181: 5.4.0-124-generic 2024-09-11T07:14:41.174 DEBUG:teuthology.orchestra.run.smithi181:> sudo apt-get clean 2024-09-11T07:14:41.271 DEBUG:teuthology.orchestra.run.smithi115:> sudo apt-get update 2024-09-11T07:14:41.280 DEBUG:teuthology.orchestra.run.smithi150:> sudo apt-get update 2024-09-11T07:14:41.296 DEBUG:teuthology.orchestra.run.smithi181:> sudo apt-get update 2024-09-11T07:14:41.433 INFO:teuthology.orchestra.run.smithi150.stdout:Get:1 http://security.ubuntu.com/ubuntu focal-security InRelease [128 kB] 2024-09-11T07:14:41.466 INFO:teuthology.orchestra.run.smithi115.stdout:Hit:1 http://archive.ubuntu.com/ubuntu focal InRelease 2024-09-11T07:14:41.471 INFO:teuthology.orchestra.run.smithi181.stdout:Hit:1 http://archive.ubuntu.com/ubuntu focal InRelease 2024-09-11T07:14:41.471 INFO:teuthology.orchestra.run.smithi115.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal-updates InRelease [128 kB] 2024-09-11T07:14:41.485 INFO:teuthology.orchestra.run.smithi181.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal-updates InRelease [128 kB] 2024-09-11T07:14:41.527 INFO:teuthology.orchestra.run.smithi115.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal-backports InRelease [128 kB] 2024-09-11T07:14:41.542 INFO:teuthology.orchestra.run.smithi150.stdout:Hit:2 http://archive.ubuntu.com/ubuntu focal InRelease 2024-09-11T07:14:41.551 INFO:teuthology.orchestra.run.smithi181.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal-backports InRelease [128 kB] 2024-09-11T07:14:41.559 INFO:teuthology.orchestra.run.smithi115.stdout:Get:4 http://security.ubuntu.com/ubuntu focal-security InRelease [128 kB] 2024-09-11T07:14:41.580 INFO:teuthology.orchestra.run.smithi181.stdout:Get:4 http://security.ubuntu.com/ubuntu focal-security InRelease [128 kB] 2024-09-11T07:14:41.624 INFO:teuthology.orchestra.run.smithi150.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal-updates InRelease [128 kB] 2024-09-11T07:14:41.733 INFO:teuthology.orchestra.run.smithi150.stdout:Get:4 http://security.ubuntu.com/ubuntu focal-security/main i386 Packages [810 kB] 2024-09-11T07:14:41.844 INFO:teuthology.orchestra.run.smithi150.stdout:Get:5 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [3,182 kB] 2024-09-11T07:14:41.845 INFO:teuthology.orchestra.run.smithi115.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [3,550 kB] 2024-09-11T07:14:41.857 INFO:teuthology.orchestra.run.smithi181.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal-updates/main i386 Packages [1,027 kB] 2024-09-11T07:14:41.887 INFO:teuthology.orchestra.run.smithi150.stdout:Get:6 http://security.ubuntu.com/ubuntu focal-security/main Translation-en [470 kB] 2024-09-11T07:14:41.891 INFO:teuthology.orchestra.run.smithi150.stdout:Get:7 http://security.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [14.3 kB] 2024-09-11T07:14:41.891 INFO:teuthology.orchestra.run.smithi150.stdout:Get:8 http://security.ubuntu.com/ubuntu focal-security/restricted i386 Packages [38.3 kB] 2024-09-11T07:14:41.892 INFO:teuthology.orchestra.run.smithi150.stdout:Get:9 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [3,096 kB] 2024-09-11T07:14:41.912 INFO:teuthology.orchestra.run.smithi150.stdout:Get:10 http://security.ubuntu.com/ubuntu focal-security/restricted Translation-en [433 kB] 2024-09-11T07:14:41.915 INFO:teuthology.orchestra.run.smithi150.stdout:Get:11 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [548 B] 2024-09-11T07:14:41.915 INFO:teuthology.orchestra.run.smithi150.stdout:Get:12 http://security.ubuntu.com/ubuntu focal-security/universe i386 Packages [681 kB] 2024-09-11T07:14:41.920 INFO:teuthology.orchestra.run.smithi150.stdout:Get:13 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [1,011 kB] 2024-09-11T07:14:41.928 INFO:teuthology.orchestra.run.smithi150.stdout:Get:14 http://security.ubuntu.com/ubuntu focal-security/universe Translation-en [213 kB] 2024-09-11T07:14:41.930 INFO:teuthology.orchestra.run.smithi150.stdout:Get:15 http://security.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [21.2 kB] 2024-09-11T07:14:41.931 INFO:teuthology.orchestra.run.smithi150.stdout:Get:16 http://security.ubuntu.com/ubuntu focal-security/multiverse i386 Packages [7,204 B] 2024-09-11T07:14:41.931 INFO:teuthology.orchestra.run.smithi150.stdout:Get:17 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [24.8 kB] 2024-09-11T07:14:41.931 INFO:teuthology.orchestra.run.smithi150.stdout:Get:18 http://security.ubuntu.com/ubuntu focal-security/multiverse Translation-en [5,968 B] 2024-09-11T07:14:41.940 INFO:teuthology.orchestra.run.smithi150.stdout:Get:19 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [540 B] 2024-09-11T07:14:41.946 INFO:teuthology.orchestra.run.smithi181.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [3,550 kB] 2024-09-11T07:14:41.977 INFO:teuthology.orchestra.run.smithi150.stdout:Get:20 http://archive.ubuntu.com/ubuntu focal-backports InRelease [128 kB] 2024-09-11T07:14:41.981 INFO:teuthology.orchestra.run.smithi115.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main i386 Packages [1,027 kB] 2024-09-11T07:14:41.986 INFO:teuthology.orchestra.run.smithi181.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main Translation-en [548 kB] 2024-09-11T07:14:41.990 INFO:teuthology.orchestra.run.smithi181.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [17.7 kB] 2024-09-11T07:14:41.991 INFO:teuthology.orchestra.run.smithi181.stdout:Get:9 http://archive.ubuntu.com/ubuntu focal-updates/restricted i386 Packages [39.6 kB] 2024-09-11T07:14:41.991 INFO:teuthology.orchestra.run.smithi181.stdout:Get:10 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [3,215 kB] 2024-09-11T07:14:41.999 INFO:teuthology.orchestra.run.smithi115.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main Translation-en [548 kB] 2024-09-11T07:14:42.003 INFO:teuthology.orchestra.run.smithi115.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [17.7 kB] 2024-09-11T07:14:42.003 INFO:teuthology.orchestra.run.smithi115.stdout:Get:9 http://archive.ubuntu.com/ubuntu focal-updates/restricted i386 Packages [39.6 kB] 2024-09-11T07:14:42.004 INFO:teuthology.orchestra.run.smithi115.stdout:Get:10 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [3,215 kB] 2024-09-11T07:14:42.014 INFO:teuthology.orchestra.run.smithi181.stdout:Get:11 http://archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [450 kB] 2024-09-11T07:14:42.019 INFO:teuthology.orchestra.run.smithi181.stdout:Get:12 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [548 B] 2024-09-11T07:14:42.019 INFO:teuthology.orchestra.run.smithi181.stdout:Get:13 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1,230 kB] 2024-09-11T07:14:42.027 INFO:teuthology.orchestra.run.smithi181.stdout:Get:14 http://archive.ubuntu.com/ubuntu focal-updates/universe i386 Packages [807 kB] 2024-09-11T07:14:42.032 INFO:teuthology.orchestra.run.smithi115.stdout:Get:11 http://archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [450 kB] 2024-09-11T07:14:42.032 INFO:teuthology.orchestra.run.smithi181.stdout:Get:15 http://archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [295 kB] 2024-09-11T07:14:42.035 INFO:teuthology.orchestra.run.smithi115.stdout:Get:12 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [548 B] 2024-09-11T07:14:42.035 INFO:teuthology.orchestra.run.smithi115.stdout:Get:13 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1,230 kB] 2024-09-11T07:14:42.036 INFO:teuthology.orchestra.run.smithi181.stdout:Get:16 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [28.0 kB] 2024-09-11T07:14:42.036 INFO:teuthology.orchestra.run.smithi181.stdout:Get:17 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [27.1 kB] 2024-09-11T07:14:42.037 INFO:teuthology.orchestra.run.smithi181.stdout:Get:18 http://archive.ubuntu.com/ubuntu focal-updates/multiverse i386 Packages [8,440 B] 2024-09-11T07:14:42.037 INFO:teuthology.orchestra.run.smithi181.stdout:Get:19 http://archive.ubuntu.com/ubuntu focal-updates/multiverse Translation-en [7,936 B] 2024-09-11T07:14:42.040 INFO:teuthology.orchestra.run.smithi181.stdout:Get:20 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [616 B] 2024-09-11T07:14:42.040 INFO:teuthology.orchestra.run.smithi181.stdout:Get:21 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 Packages [45.7 kB] 2024-09-11T07:14:42.041 INFO:teuthology.orchestra.run.smithi181.stdout:Get:22 http://archive.ubuntu.com/ubuntu focal-backports/main i386 Packages [36.1 kB] 2024-09-11T07:14:42.043 INFO:teuthology.orchestra.run.smithi115.stdout:Get:14 http://archive.ubuntu.com/ubuntu focal-updates/universe i386 Packages [807 kB] 2024-09-11T07:14:42.050 INFO:teuthology.orchestra.run.smithi115.stdout:Get:15 http://archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [295 kB] 2024-09-11T07:14:42.052 INFO:teuthology.orchestra.run.smithi115.stdout:Get:16 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [28.0 kB] 2024-09-11T07:14:42.052 INFO:teuthology.orchestra.run.smithi115.stdout:Get:17 http://archive.ubuntu.com/ubuntu focal-updates/multiverse i386 Packages [8,440 B] 2024-09-11T07:14:42.053 INFO:teuthology.orchestra.run.smithi115.stdout:Get:18 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [27.1 kB] 2024-09-11T07:14:42.053 INFO:teuthology.orchestra.run.smithi115.stdout:Get:19 http://archive.ubuntu.com/ubuntu focal-updates/multiverse Translation-en [7,936 B] 2024-09-11T07:14:42.053 INFO:teuthology.orchestra.run.smithi115.stdout:Get:20 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [616 B] 2024-09-11T07:14:42.057 INFO:teuthology.orchestra.run.smithi181.stdout:Get:23 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 c-n-f Metadata [1,420 B] 2024-09-11T07:14:42.057 INFO:teuthology.orchestra.run.smithi181.stdout:Get:24 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [25.0 kB] 2024-09-11T07:14:42.058 INFO:teuthology.orchestra.run.smithi181.stdout:Get:25 http://archive.ubuntu.com/ubuntu focal-backports/universe i386 Packages [13.8 kB] 2024-09-11T07:14:42.058 INFO:teuthology.orchestra.run.smithi181.stdout:Get:26 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 c-n-f Metadata [880 B] 2024-09-11T07:14:42.070 INFO:teuthology.orchestra.run.smithi115.stdout:Get:21 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 Packages [45.7 kB] 2024-09-11T07:14:42.071 INFO:teuthology.orchestra.run.smithi115.stdout:Get:22 http://archive.ubuntu.com/ubuntu focal-backports/main i386 Packages [36.1 kB] 2024-09-11T07:14:42.071 INFO:teuthology.orchestra.run.smithi115.stdout:Get:23 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 c-n-f Metadata [1,420 B] 2024-09-11T07:14:42.071 INFO:teuthology.orchestra.run.smithi115.stdout:Get:24 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [25.0 kB] 2024-09-11T07:14:42.091 INFO:teuthology.orchestra.run.smithi115.stdout:Get:25 http://archive.ubuntu.com/ubuntu focal-backports/universe i386 Packages [13.8 kB] 2024-09-11T07:14:42.091 INFO:teuthology.orchestra.run.smithi115.stdout:Get:26 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 c-n-f Metadata [880 B] 2024-09-11T07:14:42.117 INFO:teuthology.orchestra.run.smithi150.stdout:Get:21 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [3,550 kB] 2024-09-11T07:14:42.173 INFO:teuthology.orchestra.run.smithi115.stdout:Get:27 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [3,182 kB] 2024-09-11T07:14:42.178 INFO:teuthology.orchestra.run.smithi181.stdout:Get:27 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [3,182 kB] 2024-09-11T07:14:42.499 INFO:teuthology.orchestra.run.smithi150.stdout:Get:22 http://archive.ubuntu.com/ubuntu focal-updates/main i386 Packages [1,027 kB] 2024-09-11T07:14:42.526 INFO:teuthology.orchestra.run.smithi150.stdout:Get:23 http://archive.ubuntu.com/ubuntu focal-updates/main Translation-en [548 kB] 2024-09-11T07:14:42.541 INFO:teuthology.orchestra.run.smithi150.stdout:Get:24 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [17.7 kB] 2024-09-11T07:14:42.541 INFO:teuthology.orchestra.run.smithi150.stdout:Get:25 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [3,215 kB] 2024-09-11T07:14:42.636 INFO:teuthology.orchestra.run.smithi150.stdout:Get:26 http://archive.ubuntu.com/ubuntu focal-updates/restricted i386 Packages [39.6 kB] 2024-09-11T07:14:42.636 INFO:teuthology.orchestra.run.smithi150.stdout:Get:27 http://archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [450 kB] 2024-09-11T07:14:42.646 INFO:teuthology.orchestra.run.smithi150.stdout:Get:28 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [548 B] 2024-09-11T07:14:42.652 INFO:teuthology.orchestra.run.smithi150.stdout:Get:29 http://archive.ubuntu.com/ubuntu focal-updates/universe i386 Packages [807 kB] 2024-09-11T07:14:42.659 INFO:teuthology.orchestra.run.smithi115.stdout:Get:28 http://security.ubuntu.com/ubuntu focal-security/main i386 Packages [810 kB] 2024-09-11T07:14:42.664 INFO:teuthology.orchestra.run.smithi181.stdout:Get:28 http://security.ubuntu.com/ubuntu focal-security/main i386 Packages [810 kB] 2024-09-11T07:14:42.673 INFO:teuthology.orchestra.run.smithi115.stdout:Get:29 http://security.ubuntu.com/ubuntu focal-security/main Translation-en [470 kB] 2024-09-11T07:14:42.677 INFO:teuthology.orchestra.run.smithi150.stdout:Get:30 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1,230 kB] 2024-09-11T07:14:42.679 INFO:teuthology.orchestra.run.smithi181.stdout:Get:29 http://security.ubuntu.com/ubuntu focal-security/main Translation-en [470 kB] 2024-09-11T07:14:42.681 INFO:teuthology.orchestra.run.smithi115.stdout:Get:30 http://security.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [14.3 kB] 2024-09-11T07:14:42.681 INFO:teuthology.orchestra.run.smithi115.stdout:Get:31 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [3,096 kB] 2024-09-11T07:14:42.687 INFO:teuthology.orchestra.run.smithi181.stdout:Get:30 http://security.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [14.3 kB] 2024-09-11T07:14:42.687 INFO:teuthology.orchestra.run.smithi181.stdout:Get:31 http://security.ubuntu.com/ubuntu focal-security/restricted i386 Packages [38.3 kB] 2024-09-11T07:14:42.687 INFO:teuthology.orchestra.run.smithi181.stdout:Get:32 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [3,096 kB] 2024-09-11T07:14:42.705 INFO:teuthology.orchestra.run.smithi150.stdout:Get:31 http://archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [295 kB] 2024-09-11T07:14:42.711 INFO:teuthology.orchestra.run.smithi150.stdout:Get:32 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [28.0 kB] 2024-09-11T07:14:42.711 INFO:teuthology.orchestra.run.smithi150.stdout:Get:33 http://archive.ubuntu.com/ubuntu focal-updates/multiverse i386 Packages [8,440 B] 2024-09-11T07:14:42.711 INFO:teuthology.orchestra.run.smithi150.stdout:Get:34 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [27.1 kB] 2024-09-11T07:14:42.744 INFO:teuthology.orchestra.run.smithi150.stdout:Get:35 http://archive.ubuntu.com/ubuntu focal-updates/multiverse Translation-en [7,936 B] 2024-09-11T07:14:42.744 INFO:teuthology.orchestra.run.smithi150.stdout:Get:36 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [616 B] 2024-09-11T07:14:42.744 INFO:teuthology.orchestra.run.smithi150.stdout:Get:37 http://archive.ubuntu.com/ubuntu focal-backports/main i386 Packages [36.1 kB] 2024-09-11T07:14:42.745 INFO:teuthology.orchestra.run.smithi150.stdout:Get:38 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 Packages [45.7 kB] 2024-09-11T07:14:42.769 INFO:teuthology.orchestra.run.smithi115.stdout:Get:32 http://security.ubuntu.com/ubuntu focal-security/restricted i386 Packages [38.3 kB] 2024-09-11T07:14:42.769 INFO:teuthology.orchestra.run.smithi115.stdout:Get:33 http://security.ubuntu.com/ubuntu focal-security/restricted Translation-en [433 kB] 2024-09-11T07:14:42.776 INFO:teuthology.orchestra.run.smithi181.stdout:Get:33 http://security.ubuntu.com/ubuntu focal-security/restricted Translation-en [433 kB] 2024-09-11T07:14:42.777 INFO:teuthology.orchestra.run.smithi115.stdout:Get:34 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [548 B] 2024-09-11T07:14:42.777 INFO:teuthology.orchestra.run.smithi115.stdout:Get:35 http://security.ubuntu.com/ubuntu focal-security/universe i386 Packages [681 kB] 2024-09-11T07:14:42.784 INFO:teuthology.orchestra.run.smithi181.stdout:Get:34 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [548 B] 2024-09-11T07:14:42.784 INFO:teuthology.orchestra.run.smithi181.stdout:Get:35 http://security.ubuntu.com/ubuntu focal-security/universe i386 Packages [681 kB] 2024-09-11T07:14:42.789 INFO:teuthology.orchestra.run.smithi115.stdout:Get:36 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [1,011 kB] 2024-09-11T07:14:42.795 INFO:teuthology.orchestra.run.smithi181.stdout:Get:36 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [1,011 kB] 2024-09-11T07:14:42.825 INFO:teuthology.orchestra.run.smithi150.stdout:Get:39 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 c-n-f Metadata [1,420 B] 2024-09-11T07:14:42.825 INFO:teuthology.orchestra.run.smithi150.stdout:Get:40 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [25.0 kB] 2024-09-11T07:14:42.826 INFO:teuthology.orchestra.run.smithi150.stdout:Get:41 http://archive.ubuntu.com/ubuntu focal-backports/universe i386 Packages [13.8 kB] 2024-09-11T07:14:42.826 INFO:teuthology.orchestra.run.smithi150.stdout:Get:42 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 c-n-f Metadata [880 B] 2024-09-11T07:14:42.840 INFO:teuthology.orchestra.run.smithi115.stdout:Get:37 http://security.ubuntu.com/ubuntu focal-security/universe Translation-en [213 kB] 2024-09-11T07:14:42.843 INFO:teuthology.orchestra.run.smithi115.stdout:Get:38 http://security.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [21.2 kB] 2024-09-11T07:14:42.843 INFO:teuthology.orchestra.run.smithi115.stdout:Get:39 http://security.ubuntu.com/ubuntu focal-security/multiverse i386 Packages [7,204 B] 2024-09-11T07:14:42.843 INFO:teuthology.orchestra.run.smithi115.stdout:Get:40 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [24.8 kB] 2024-09-11T07:14:42.845 INFO:teuthology.orchestra.run.smithi181.stdout:Get:37 http://security.ubuntu.com/ubuntu focal-security/universe Translation-en [213 kB] 2024-09-11T07:14:42.849 INFO:teuthology.orchestra.run.smithi181.stdout:Get:38 http://security.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [21.2 kB] 2024-09-11T07:14:42.849 INFO:teuthology.orchestra.run.smithi181.stdout:Get:39 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [24.8 kB] 2024-09-11T07:14:42.849 INFO:teuthology.orchestra.run.smithi181.stdout:Get:40 http://security.ubuntu.com/ubuntu focal-security/multiverse i386 Packages [7,204 B] 2024-09-11T07:14:42.850 INFO:teuthology.orchestra.run.smithi181.stdout:Get:41 http://security.ubuntu.com/ubuntu focal-security/multiverse Translation-en [5,968 B] 2024-09-11T07:14:42.918 INFO:teuthology.orchestra.run.smithi115.stdout:Get:41 http://security.ubuntu.com/ubuntu focal-security/multiverse Translation-en [5,968 B] 2024-09-11T07:14:42.919 INFO:teuthology.orchestra.run.smithi115.stdout:Get:42 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [540 B] 2024-09-11T07:14:42.925 INFO:teuthology.orchestra.run.smithi181.stdout:Get:42 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [540 B] 2024-09-11T07:14:46.240 INFO:teuthology.orchestra.run.smithi181.stdout:Fetched 21.8 MB in 3s (7,273 kB/s) 2024-09-11T07:14:46.301 INFO:teuthology.orchestra.run.smithi150.stdout:Fetched 21.8 MB in 3s (7,324 kB/s) 2024-09-11T07:14:46.437 INFO:teuthology.orchestra.run.smithi115.stdout:Fetched 21.8 MB in 3s (7,082 kB/s) 2024-09-11T07:14:47.804 INFO:teuthology.orchestra.run.smithi150.stdout:Reading package lists... 2024-09-11T07:14:47.829 DEBUG:teuthology.orchestra.run.smithi150:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-11T07:14:47.834 INFO:teuthology.orchestra.run.smithi181.stdout:Reading package lists... 2024-09-11T07:14:47.861 DEBUG:teuthology.orchestra.run.smithi181:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-11T07:14:47.897 INFO:teuthology.orchestra.run.smithi150.stdout:Reading package lists... 2024-09-11T07:14:47.922 INFO:teuthology.orchestra.run.smithi115.stdout:Reading package lists... 2024-09-11T07:14:47.935 INFO:teuthology.orchestra.run.smithi181.stdout:Reading package lists... 2024-09-11T07:14:47.949 DEBUG:teuthology.orchestra.run.smithi115:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-11T07:14:48.023 INFO:teuthology.orchestra.run.smithi115.stdout:Reading package lists... 2024-09-11T07:14:48.091 INFO:teuthology.orchestra.run.smithi150.stdout:Building dependency tree... 2024-09-11T07:14:48.091 INFO:teuthology.orchestra.run.smithi150.stdout:Reading state information... 2024-09-11T07:14:48.144 INFO:teuthology.orchestra.run.smithi181.stdout:Building dependency tree... 2024-09-11T07:14:48.145 INFO:teuthology.orchestra.run.smithi181.stdout:Reading state information... 2024-09-11T07:14:48.241 INFO:teuthology.orchestra.run.smithi115.stdout:Building dependency tree... 2024-09-11T07:14:48.241 INFO:teuthology.orchestra.run.smithi115.stdout:Reading state information... 2024-09-11T07:14:48.287 INFO:teuthology.orchestra.run.smithi150.stdout:The following additional packages will be installed: 2024-09-11T07:14:48.287 INFO:teuthology.orchestra.run.smithi150.stdout: linux-generic linux-headers-5.4.0-195 linux-headers-5.4.0-195-generic 2024-09-11T07:14:48.288 INFO:teuthology.orchestra.run.smithi150.stdout: linux-headers-generic linux-image-5.4.0-195-generic 2024-09-11T07:14:48.288 INFO:teuthology.orchestra.run.smithi150.stdout: linux-modules-5.4.0-195-generic linux-modules-extra-5.4.0-195-generic 2024-09-11T07:14:48.289 INFO:teuthology.orchestra.run.smithi150.stdout:Suggested packages: 2024-09-11T07:14:48.289 INFO:teuthology.orchestra.run.smithi150.stdout: fdutils linux-doc | linux-source-5.4.0 linux-tools 2024-09-11T07:14:48.289 INFO:teuthology.orchestra.run.smithi150.stdout:Recommended packages: 2024-09-11T07:14:48.289 INFO:teuthology.orchestra.run.smithi150.stdout: thermald 2024-09-11T07:14:48.342 INFO:teuthology.orchestra.run.smithi181.stdout:The following additional packages will be installed: 2024-09-11T07:14:48.342 INFO:teuthology.orchestra.run.smithi181.stdout: linux-generic linux-headers-5.4.0-195 linux-headers-5.4.0-195-generic 2024-09-11T07:14:48.342 INFO:teuthology.orchestra.run.smithi181.stdout: linux-headers-generic linux-image-5.4.0-195-generic 2024-09-11T07:14:48.343 INFO:teuthology.orchestra.run.smithi181.stdout: linux-modules-5.4.0-195-generic linux-modules-extra-5.4.0-195-generic 2024-09-11T07:14:48.344 INFO:teuthology.orchestra.run.smithi181.stdout:Suggested packages: 2024-09-11T07:14:48.344 INFO:teuthology.orchestra.run.smithi181.stdout: fdutils linux-doc | linux-source-5.4.0 linux-tools 2024-09-11T07:14:48.344 INFO:teuthology.orchestra.run.smithi181.stdout:Recommended packages: 2024-09-11T07:14:48.344 INFO:teuthology.orchestra.run.smithi181.stdout: thermald 2024-09-11T07:14:48.349 INFO:teuthology.orchestra.run.smithi150.stdout:The following NEW packages will be installed: 2024-09-11T07:14:48.350 INFO:teuthology.orchestra.run.smithi150.stdout: linux-headers-5.4.0-195 linux-headers-5.4.0-195-generic 2024-09-11T07:14:48.350 INFO:teuthology.orchestra.run.smithi150.stdout: linux-image-5.4.0-195-generic linux-modules-5.4.0-195-generic 2024-09-11T07:14:48.350 INFO:teuthology.orchestra.run.smithi150.stdout: linux-modules-extra-5.4.0-195-generic 2024-09-11T07:14:48.352 INFO:teuthology.orchestra.run.smithi150.stdout:The following packages will be upgraded: 2024-09-11T07:14:48.352 INFO:teuthology.orchestra.run.smithi150.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-11T07:14:48.402 INFO:teuthology.orchestra.run.smithi181.stdout:The following NEW packages will be installed: 2024-09-11T07:14:48.402 INFO:teuthology.orchestra.run.smithi181.stdout: linux-headers-5.4.0-195 linux-headers-5.4.0-195-generic 2024-09-11T07:14:48.402 INFO:teuthology.orchestra.run.smithi181.stdout: linux-image-5.4.0-195-generic linux-modules-5.4.0-195-generic 2024-09-11T07:14:48.403 INFO:teuthology.orchestra.run.smithi181.stdout: linux-modules-extra-5.4.0-195-generic 2024-09-11T07:14:48.404 INFO:teuthology.orchestra.run.smithi181.stdout:The following packages will be upgraded: 2024-09-11T07:14:48.405 INFO:teuthology.orchestra.run.smithi181.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-11T07:14:48.441 INFO:teuthology.orchestra.run.smithi115.stdout:The following additional packages will be installed: 2024-09-11T07:14:48.441 INFO:teuthology.orchestra.run.smithi115.stdout: linux-generic linux-headers-5.4.0-195 linux-headers-5.4.0-195-generic 2024-09-11T07:14:48.442 INFO:teuthology.orchestra.run.smithi115.stdout: linux-headers-generic linux-image-5.4.0-195-generic 2024-09-11T07:14:48.442 INFO:teuthology.orchestra.run.smithi115.stdout: linux-modules-5.4.0-195-generic linux-modules-extra-5.4.0-195-generic 2024-09-11T07:14:48.443 INFO:teuthology.orchestra.run.smithi115.stdout:Suggested packages: 2024-09-11T07:14:48.443 INFO:teuthology.orchestra.run.smithi115.stdout: fdutils linux-doc | linux-source-5.4.0 linux-tools 2024-09-11T07:14:48.443 INFO:teuthology.orchestra.run.smithi115.stdout:Recommended packages: 2024-09-11T07:14:48.443 INFO:teuthology.orchestra.run.smithi115.stdout: thermald 2024-09-11T07:14:48.495 INFO:teuthology.orchestra.run.smithi115.stdout:The following NEW packages will be installed: 2024-09-11T07:14:48.496 INFO:teuthology.orchestra.run.smithi115.stdout: linux-headers-5.4.0-195 linux-headers-5.4.0-195-generic 2024-09-11T07:14:48.496 INFO:teuthology.orchestra.run.smithi115.stdout: linux-image-5.4.0-195-generic linux-modules-5.4.0-195-generic 2024-09-11T07:14:48.496 INFO:teuthology.orchestra.run.smithi115.stdout: linux-modules-extra-5.4.0-195-generic 2024-09-11T07:14:48.497 INFO:teuthology.orchestra.run.smithi115.stdout:The following packages will be upgraded: 2024-09-11T07:14:48.498 INFO:teuthology.orchestra.run.smithi115.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-11T07:14:48.536 INFO:teuthology.orchestra.run.smithi150.stdout:3 upgraded, 5 newly installed, 0 to remove and 316 not upgraded. 2024-09-11T07:14:48.536 INFO:teuthology.orchestra.run.smithi150.stdout:Need to get 77.2 MB of archives. 2024-09-11T07:14:48.536 INFO:teuthology.orchestra.run.smithi150.stdout:After this operation, 381 MB of additional disk space will be used. 2024-09-11T07:14:48.536 INFO:teuthology.orchestra.run.smithi150.stdout:Get:1 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-5.4.0-195-generic amd64 5.4.0-195.215 [15.0 MB] 2024-09-11T07:14:48.587 INFO:teuthology.orchestra.run.smithi181.stdout:3 upgraded, 5 newly installed, 0 to remove and 316 not upgraded. 2024-09-11T07:14:48.588 INFO:teuthology.orchestra.run.smithi181.stdout:Need to get 77.2 MB of archives. 2024-09-11T07:14:48.588 INFO:teuthology.orchestra.run.smithi181.stdout:After this operation, 381 MB of additional disk space will be used. 2024-09-11T07:14:48.588 INFO:teuthology.orchestra.run.smithi181.stdout:Get:1 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-5.4.0-195-generic amd64 5.4.0-195.215 [15.0 MB] 2024-09-11T07:14:48.681 INFO:teuthology.orchestra.run.smithi115.stdout:3 upgraded, 5 newly installed, 0 to remove and 316 not upgraded. 2024-09-11T07:14:48.682 INFO:teuthology.orchestra.run.smithi115.stdout:Need to get 77.2 MB of archives. 2024-09-11T07:14:48.682 INFO:teuthology.orchestra.run.smithi115.stdout:After this operation, 381 MB of additional disk space will be used. 2024-09-11T07:14:48.682 INFO:teuthology.orchestra.run.smithi115.stdout:Get:1 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-5.4.0-195-generic amd64 5.4.0-195.215 [15.0 MB] 2024-09-11T07:14:49.686 INFO:teuthology.orchestra.run.smithi150.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-5.4.0-195-generic amd64 5.4.0-195.215 [10.5 MB] 2024-09-11T07:14:49.768 INFO:teuthology.orchestra.run.smithi181.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-5.4.0-195-generic amd64 5.4.0-195.215 [10.5 MB] 2024-09-11T07:14:49.846 INFO:teuthology.orchestra.run.smithi115.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-5.4.0-195-generic amd64 5.4.0-195.215 [10.5 MB] 2024-09-11T07:14:49.960 INFO:teuthology.orchestra.run.smithi150.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-extra-5.4.0-195-generic amd64 5.4.0-195.215 [39.2 MB] 2024-09-11T07:14:50.040 INFO:teuthology.orchestra.run.smithi181.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-extra-5.4.0-195-generic amd64 5.4.0-195.215 [39.2 MB] 2024-09-11T07:14:50.119 INFO:teuthology.orchestra.run.smithi115.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-extra-5.4.0-195-generic amd64 5.4.0-195.215 [39.2 MB] 2024-09-11T07:14:51.260 INFO:teuthology.orchestra.run.smithi150.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-generic amd64 5.4.0.195.193 [1,900 B] 2024-09-11T07:14:51.260 INFO:teuthology.orchestra.run.smithi150.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-generic amd64 5.4.0.195.193 [2,584 B] 2024-09-11T07:14:51.260 INFO:teuthology.orchestra.run.smithi150.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-headers-5.4.0-195 all 5.4.0-195.215 [11.0 MB] 2024-09-11T07:14:51.364 INFO:teuthology.orchestra.run.smithi181.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-generic amd64 5.4.0.195.193 [1,900 B] 2024-09-11T07:14:51.364 INFO:teuthology.orchestra.run.smithi181.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-generic amd64 5.4.0.195.193 [2,584 B] 2024-09-11T07:14:51.365 INFO:teuthology.orchestra.run.smithi181.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-headers-5.4.0-195 all 5.4.0-195.215 [11.0 MB] 2024-09-11T07:14:51.477 INFO:teuthology.orchestra.run.smithi115.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-generic amd64 5.4.0.195.193 [1,900 B] 2024-09-11T07:14:51.477 INFO:teuthology.orchestra.run.smithi115.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-generic amd64 5.4.0.195.193 [2,584 B] 2024-09-11T07:14:51.477 INFO:teuthology.orchestra.run.smithi115.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-headers-5.4.0-195 all 5.4.0-195.215 [11.0 MB] 2024-09-11T07:14:51.543 INFO:teuthology.orchestra.run.smithi150.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-headers-5.4.0-195-generic amd64 5.4.0-195.215 [1,386 kB] 2024-09-11T07:14:51.589 INFO:teuthology.orchestra.run.smithi150.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-headers-generic amd64 5.4.0.195.193 [2,460 B] 2024-09-11T07:14:51.690 INFO:teuthology.orchestra.run.smithi181.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-headers-5.4.0-195-generic amd64 5.4.0-195.215 [1,386 kB] 2024-09-11T07:14:51.707 INFO:teuthology.orchestra.run.smithi181.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-headers-generic amd64 5.4.0.195.193 [2,460 B] 2024-09-11T07:14:51.760 INFO:teuthology.orchestra.run.smithi115.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-headers-5.4.0-195-generic amd64 5.4.0-195.215 [1,386 kB] 2024-09-11T07:14:51.804 INFO:teuthology.orchestra.run.smithi115.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-headers-generic amd64 5.4.0.195.193 [2,460 B] 2024-09-11T07:14:52.316 INFO:teuthology.orchestra.run.smithi150.stdout:Fetched 77.2 MB in 3s (23.9 MB/s) 2024-09-11T07:14:52.383 INFO:teuthology.orchestra.run.smithi181.stdout:Fetched 77.2 MB in 3s (23.4 MB/s) 2024-09-11T07:14:52.498 INFO:teuthology.orchestra.run.smithi115.stdout:Fetched 77.2 MB in 3s (23.4 MB/s) 2024-09-11T07:14:52.521 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package linux-modules-5.4.0-195-generic. 2024-09-11T07:14:52.573 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package linux-modules-5.4.0-195-generic. 2024-09-11T07:14:52.691 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package linux-modules-5.4.0-195-generic. 2024-09-11T07:14:54.291 INFO:teuthology.orchestra.run.smithi150.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 104373 files and directories currently installed.) 2024-09-11T07:14:54.296 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../0-linux-modules-5.4.0-195-generic_5.4.0-195.215_amd64.deb ... 2024-09-11T07:14:54.345 INFO:teuthology.orchestra.run.smithi181.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 104373 files and directories currently installed.) 2024-09-11T07:14:54.350 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../0-linux-modules-5.4.0-195-generic_5.4.0-195.215_amd64.deb ... 2024-09-11T07:14:54.401 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking linux-modules-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:14:54.438 INFO:teuthology.orchestra.run.smithi115.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 104373 files and directories currently installed.) 2024-09-11T07:14:54.443 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../0-linux-modules-5.4.0-195-generic_5.4.0-195.215_amd64.deb ... 2024-09-11T07:14:54.478 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking linux-modules-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:14:54.571 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking linux-modules-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:14:56.393 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package linux-image-5.4.0-195-generic. 2024-09-11T07:14:56.407 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../1-linux-image-5.4.0-195-generic_5.4.0-195.215_amd64.deb ... 2024-09-11T07:14:56.437 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package linux-image-5.4.0-195-generic. 2024-09-11T07:14:56.453 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../1-linux-image-5.4.0-195-generic_5.4.0-195.215_amd64.deb ... 2024-09-11T07:14:56.517 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking linux-image-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:14:56.546 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking linux-image-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:14:56.621 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package linux-image-5.4.0-195-generic. 2024-09-11T07:14:56.636 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../1-linux-image-5.4.0-195-generic_5.4.0-195.215_amd64.deb ... 2024-09-11T07:14:56.735 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking linux-image-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:14:57.613 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package linux-modules-extra-5.4.0-195-generic. 2024-09-11T07:14:57.629 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../2-linux-modules-extra-5.4.0-195-generic_5.4.0-195.215_amd64.deb ... 2024-09-11T07:14:57.671 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking linux-modules-extra-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:14:57.673 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package linux-modules-extra-5.4.0-195-generic. 2024-09-11T07:14:57.688 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../2-linux-modules-extra-5.4.0-195-generic_5.4.0-195.215_amd64.deb ... 2024-09-11T07:14:57.731 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking linux-modules-extra-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:14:57.807 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package linux-modules-extra-5.4.0-195-generic. 2024-09-11T07:14:57.819 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../2-linux-modules-extra-5.4.0-195-generic_5.4.0-195.215_amd64.deb ... 2024-09-11T07:14:57.865 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking linux-modules-extra-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:15:02.570 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../3-linux-generic_5.4.0.195.193_amd64.deb ... 2024-09-11T07:15:02.613 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../3-linux-generic_5.4.0.195.193_amd64.deb ... 2024-09-11T07:15:02.685 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking linux-generic (5.4.0.195.193) over (5.4.0.124.125) ... 2024-09-11T07:15:02.702 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../3-linux-generic_5.4.0.195.193_amd64.deb ... 2024-09-11T07:15:02.737 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking linux-generic (5.4.0.195.193) over (5.4.0.124.125) ... 2024-09-11T07:15:02.827 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking linux-generic (5.4.0.195.193) over (5.4.0.124.125) ... 2024-09-11T07:15:03.045 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../4-linux-image-generic_5.4.0.195.193_amd64.deb ... 2024-09-11T07:15:03.080 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../4-linux-image-generic_5.4.0.195.193_amd64.deb ... 2024-09-11T07:15:03.172 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking linux-image-generic (5.4.0.195.193) over (5.4.0.124.125) ... 2024-09-11T07:15:03.208 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking linux-image-generic (5.4.0.195.193) over (5.4.0.124.125) ... 2024-09-11T07:15:03.470 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../4-linux-image-generic_5.4.0.195.193_amd64.deb ... 2024-09-11T07:15:03.517 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package linux-headers-5.4.0-195. 2024-09-11T07:15:03.531 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../5-linux-headers-5.4.0-195_5.4.0-195.215_all.deb ... 2024-09-11T07:15:03.535 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package linux-headers-5.4.0-195. 2024-09-11T07:15:03.549 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../5-linux-headers-5.4.0-195_5.4.0-195.215_all.deb ... 2024-09-11T07:15:03.575 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking linux-headers-5.4.0-195 (5.4.0-195.215) ... 2024-09-11T07:15:03.593 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking linux-headers-5.4.0-195 (5.4.0-195.215) ... 2024-09-11T07:15:03.596 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking linux-image-generic (5.4.0.195.193) over (5.4.0.124.125) ... 2024-09-11T07:15:03.949 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package linux-headers-5.4.0-195. 2024-09-11T07:15:03.962 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../5-linux-headers-5.4.0-195_5.4.0-195.215_all.deb ... 2024-09-11T07:15:04.016 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking linux-headers-5.4.0-195 (5.4.0-195.215) ... 2024-09-11T07:15:09.188 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package linux-headers-5.4.0-195-generic. 2024-09-11T07:15:09.209 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../6-linux-headers-5.4.0-195-generic_5.4.0-195.215_amd64.deb ... 2024-09-11T07:15:09.271 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking linux-headers-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:15:09.456 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package linux-headers-5.4.0-195-generic. 2024-09-11T07:15:09.476 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../6-linux-headers-5.4.0-195-generic_5.4.0-195.215_amd64.deb ... 2024-09-11T07:15:09.514 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking linux-headers-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:15:09.876 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package linux-headers-5.4.0-195-generic. 2024-09-11T07:15:09.898 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../6-linux-headers-5.4.0-195-generic_5.4.0-195.215_amd64.deb ... 2024-09-11T07:15:09.942 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking linux-headers-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:15:11.990 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../7-linux-headers-generic_5.4.0.195.193_amd64.deb ... 2024-09-11T07:15:12.141 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking linux-headers-generic (5.4.0.195.193) over (5.4.0.124.125) ... 2024-09-11T07:15:12.236 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../7-linux-headers-generic_5.4.0.195.193_amd64.deb ... 2024-09-11T07:15:12.364 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking linux-headers-generic (5.4.0.195.193) over (5.4.0.124.125) ... 2024-09-11T07:15:12.476 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up linux-modules-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:15:12.643 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../7-linux-headers-generic_5.4.0.195.193_amd64.deb ... 2024-09-11T07:15:12.706 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up linux-modules-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:15:12.804 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking linux-headers-generic (5.4.0.195.193) over (5.4.0.124.125) ... 2024-09-11T07:15:13.134 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up linux-modules-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:15:14.065 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up linux-image-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:15:14.770 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up linux-image-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:15:15.218 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up linux-image-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:15:15.220 INFO:teuthology.orchestra.run.smithi150.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.4.0-195-generic 2024-09-11T07:15:15.220 INFO:teuthology.orchestra.run.smithi150.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.4.0-195-generic 2024-09-11T07:15:15.376 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up linux-modules-extra-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:15:15.935 INFO:teuthology.orchestra.run.smithi115.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.4.0-195-generic 2024-09-11T07:15:15.935 INFO:teuthology.orchestra.run.smithi115.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.4.0-195-generic 2024-09-11T07:15:16.065 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up linux-modules-extra-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:15:16.362 INFO:teuthology.orchestra.run.smithi181.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.4.0-195-generic 2024-09-11T07:15:16.362 INFO:teuthology.orchestra.run.smithi181.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.4.0-195-generic 2024-09-11T07:15:16.504 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up linux-modules-extra-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:15:16.586 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up linux-headers-5.4.0-195 (5.4.0-195.215) ... 2024-09-11T07:15:16.737 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up linux-image-generic (5.4.0.195.193) ... 2024-09-11T07:15:16.863 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up linux-headers-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:15:16.989 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up linux-headers-generic (5.4.0.195.193) ... 2024-09-11T07:15:17.115 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up linux-generic (5.4.0.195.193) ... 2024-09-11T07:15:17.266 INFO:teuthology.orchestra.run.smithi150.stdout:Processing triggers for linux-image-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:15:17.273 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up linux-headers-5.4.0-195 (5.4.0-195.215) ... 2024-09-11T07:15:17.342 INFO:teuthology.orchestra.run.smithi150.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-11T07:15:17.342 INFO:teuthology.orchestra.run.smithi150.stdout:update-initramfs: Generating /boot/initrd.img-5.4.0-195-generic 2024-09-11T07:15:17.416 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up linux-image-generic (5.4.0.195.193) ... 2024-09-11T07:15:17.551 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up linux-headers-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:15:17.668 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up linux-headers-generic (5.4.0.195.193) ... 2024-09-11T07:15:17.696 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up linux-headers-5.4.0-195 (5.4.0-195.215) ... 2024-09-11T07:15:17.803 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up linux-generic (5.4.0.195.193) ... 2024-09-11T07:15:17.823 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up linux-image-generic (5.4.0.195.193) ... 2024-09-11T07:15:17.929 INFO:teuthology.orchestra.run.smithi115.stdout:Processing triggers for linux-image-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:15:17.974 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up linux-headers-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:15:18.011 INFO:teuthology.orchestra.run.smithi115.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-11T07:15:18.011 INFO:teuthology.orchestra.run.smithi115.stdout:update-initramfs: Generating /boot/initrd.img-5.4.0-195-generic 2024-09-11T07:15:18.100 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up linux-headers-generic (5.4.0.195.193) ... 2024-09-11T07:15:18.225 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up linux-generic (5.4.0.195.193) ... 2024-09-11T07:15:18.369 INFO:teuthology.orchestra.run.smithi181.stdout:Processing triggers for linux-image-5.4.0-195-generic (5.4.0-195.215) ... 2024-09-11T07:15:18.443 INFO:teuthology.orchestra.run.smithi181.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-11T07:15:18.444 INFO:teuthology.orchestra.run.smithi181.stdout:update-initramfs: Generating /boot/initrd.img-5.4.0-195-generic 2024-09-11T07:15:39.033 INFO:teuthology.orchestra.run.smithi150.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-11T07:15:39.034 INFO:teuthology.orchestra.run.smithi150.stdout:Sourcing file `/etc/default/grub' 2024-09-11T07:15:39.048 INFO:teuthology.orchestra.run.smithi150.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-11T07:15:39.071 INFO:teuthology.orchestra.run.smithi150.stdout:Generating grub configuration file ... 2024-09-11T07:15:39.403 INFO:teuthology.orchestra.run.smithi150.stdout:Found linux image: /boot/vmlinuz-5.4.0-195-generic 2024-09-11T07:15:39.423 INFO:teuthology.orchestra.run.smithi150.stdout:Found initrd image: /boot/initrd.img-5.4.0-195-generic 2024-09-11T07:15:39.762 INFO:teuthology.orchestra.run.smithi115.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-11T07:15:39.762 INFO:teuthology.orchestra.run.smithi115.stdout:Sourcing file `/etc/default/grub' 2024-09-11T07:15:39.777 INFO:teuthology.orchestra.run.smithi115.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-11T07:15:39.791 INFO:teuthology.orchestra.run.smithi115.stdout:Generating grub configuration file ... 2024-09-11T07:15:39.817 INFO:teuthology.orchestra.run.smithi150.stdout:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-09-11T07:15:39.829 INFO:teuthology.orchestra.run.smithi150.stdout:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-09-11T07:15:40.106 INFO:teuthology.orchestra.run.smithi115.stdout:Found linux image: /boot/vmlinuz-5.4.0-195-generic 2024-09-11T07:15:40.126 INFO:teuthology.orchestra.run.smithi115.stdout:Found initrd image: /boot/initrd.img-5.4.0-195-generic 2024-09-11T07:15:40.509 INFO:teuthology.orchestra.run.smithi115.stdout:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-09-11T07:15:40.520 INFO:teuthology.orchestra.run.smithi115.stdout:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-09-11T07:15:40.833 INFO:teuthology.orchestra.run.smithi181.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-11T07:15:40.833 INFO:teuthology.orchestra.run.smithi181.stdout:Sourcing file `/etc/default/grub' 2024-09-11T07:15:40.848 INFO:teuthology.orchestra.run.smithi181.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-11T07:15:40.865 INFO:teuthology.orchestra.run.smithi181.stdout:Generating grub configuration file ... 2024-09-11T07:15:41.206 INFO:teuthology.orchestra.run.smithi181.stdout:Found linux image: /boot/vmlinuz-5.4.0-195-generic 2024-09-11T07:15:41.233 INFO:teuthology.orchestra.run.smithi181.stdout:Found initrd image: /boot/initrd.img-5.4.0-195-generic 2024-09-11T07:15:41.571 INFO:teuthology.orchestra.run.smithi150.stdout:done 2024-09-11T07:15:41.617 INFO:teuthology.orchestra.run.smithi181.stdout:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-09-11T07:15:41.629 INFO:teuthology.orchestra.run.smithi181.stdout:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-09-11T07:15:41.979 DEBUG:teuthology.orchestra.run.smithi150:> dpkg -s linux-image-generic 2024-09-11T07:15:42.031 INFO:teuthology.orchestra.run.smithi150.stdout:Package: linux-image-generic 2024-09-11T07:15:42.031 INFO:teuthology.orchestra.run.smithi150.stdout:Status: install ok installed 2024-09-11T07:15:42.031 INFO:teuthology.orchestra.run.smithi150.stdout:Priority: optional 2024-09-11T07:15:42.031 INFO:teuthology.orchestra.run.smithi150.stdout:Section: kernel 2024-09-11T07:15:42.031 INFO:teuthology.orchestra.run.smithi150.stdout:Installed-Size: 20 2024-09-11T07:15:42.031 INFO:teuthology.orchestra.run.smithi150.stdout:Maintainer: Ubuntu Kernel Team 2024-09-11T07:15:42.031 INFO:teuthology.orchestra.run.smithi150.stdout:Architecture: amd64 2024-09-11T07:15:42.032 INFO:teuthology.orchestra.run.smithi150.stdout:Source: linux-meta 2024-09-11T07:15:42.032 INFO:teuthology.orchestra.run.smithi150.stdout:Version: 5.4.0.195.193 2024-09-11T07:15:42.032 INFO:teuthology.orchestra.run.smithi150.stdout:Provides: virtualbox-guest-modules (= 6.1.50-dfsg-1~ubuntu1.20.04.1), wireguard-modules (= 1.0.20201112-1~20.04.1), zfs-modules (= 0.8.3-1ubuntu12.17) 2024-09-11T07:15:42.032 INFO:teuthology.orchestra.run.smithi150.stdout:Depends: linux-image-5.4.0-195-generic, linux-modules-extra-5.4.0-195-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-11T07:15:42.032 INFO:teuthology.orchestra.run.smithi150.stdout:Recommends: thermald 2024-09-11T07:15:42.032 INFO:teuthology.orchestra.run.smithi150.stdout:Description: Generic Linux kernel image 2024-09-11T07:15:42.032 INFO:teuthology.orchestra.run.smithi150.stdout: This package will always depend on the latest generic kernel image 2024-09-11T07:15:42.032 INFO:teuthology.orchestra.run.smithi150.stdout: available. 2024-09-11T07:15:42.032 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.4.0-124-generic Expected: 5.4.0-195-generic 2024-09-11T07:15:42.032 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-11T07:15:42.033 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-11T07:15:42.033 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-11T07:15:42.033 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi150.front.sepia.ceph.com, path=None, version=distro) 2024-09-11T07:15:42.033 DEBUG:teuthology.orchestra.run.smithi150:> sudo apt-get clean 2024-09-11T07:15:42.116 DEBUG:teuthology.orchestra.run.smithi150:> sudo apt-get update 2024-09-11T07:15:42.251 INFO:teuthology.orchestra.run.smithi150.stdout:Hit:1 http://archive.ubuntu.com/ubuntu focal InRelease 2024-09-11T07:15:42.258 INFO:teuthology.orchestra.run.smithi150.stdout:Hit:2 http://archive.ubuntu.com/ubuntu focal-updates InRelease 2024-09-11T07:15:42.276 INFO:teuthology.orchestra.run.smithi150.stdout:Hit:3 http://archive.ubuntu.com/ubuntu focal-backports InRelease 2024-09-11T07:15:42.368 INFO:teuthology.orchestra.run.smithi150.stdout:Hit:4 http://security.ubuntu.com/ubuntu focal-security InRelease 2024-09-11T07:15:42.677 INFO:teuthology.orchestra.run.smithi115.stdout:done 2024-09-11T07:15:43.104 DEBUG:teuthology.orchestra.run.smithi115:> dpkg -s linux-image-generic 2024-09-11T07:15:43.155 INFO:teuthology.orchestra.run.smithi115.stdout:Package: linux-image-generic 2024-09-11T07:15:43.155 INFO:teuthology.orchestra.run.smithi115.stdout:Status: install ok installed 2024-09-11T07:15:43.155 INFO:teuthology.orchestra.run.smithi115.stdout:Priority: optional 2024-09-11T07:15:43.155 INFO:teuthology.orchestra.run.smithi115.stdout:Section: kernel 2024-09-11T07:15:43.155 INFO:teuthology.orchestra.run.smithi115.stdout:Installed-Size: 20 2024-09-11T07:15:43.155 INFO:teuthology.orchestra.run.smithi115.stdout:Maintainer: Ubuntu Kernel Team 2024-09-11T07:15:43.155 INFO:teuthology.orchestra.run.smithi115.stdout:Architecture: amd64 2024-09-11T07:15:43.155 INFO:teuthology.orchestra.run.smithi115.stdout:Source: linux-meta 2024-09-11T07:15:43.155 INFO:teuthology.orchestra.run.smithi115.stdout:Version: 5.4.0.195.193 2024-09-11T07:15:43.155 INFO:teuthology.orchestra.run.smithi115.stdout:Provides: virtualbox-guest-modules (= 6.1.50-dfsg-1~ubuntu1.20.04.1), wireguard-modules (= 1.0.20201112-1~20.04.1), zfs-modules (= 0.8.3-1ubuntu12.17) 2024-09-11T07:15:43.155 INFO:teuthology.orchestra.run.smithi115.stdout:Depends: linux-image-5.4.0-195-generic, linux-modules-extra-5.4.0-195-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-11T07:15:43.155 INFO:teuthology.orchestra.run.smithi115.stdout:Recommends: thermald 2024-09-11T07:15:43.156 INFO:teuthology.orchestra.run.smithi115.stdout:Description: Generic Linux kernel image 2024-09-11T07:15:43.156 INFO:teuthology.orchestra.run.smithi115.stdout: This package will always depend on the latest generic kernel image 2024-09-11T07:15:43.156 INFO:teuthology.orchestra.run.smithi115.stdout: available. 2024-09-11T07:15:43.157 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.4.0-124-generic Expected: 5.4.0-195-generic 2024-09-11T07:15:43.157 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-11T07:15:43.157 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-11T07:15:43.157 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-11T07:15:43.157 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi115.front.sepia.ceph.com, path=None, version=distro) 2024-09-11T07:15:43.157 DEBUG:teuthology.orchestra.run.smithi115:> sudo apt-get clean 2024-09-11T07:15:43.239 DEBUG:teuthology.orchestra.run.smithi115:> sudo apt-get update 2024-09-11T07:15:43.499 INFO:teuthology.orchestra.run.smithi115.stdout:Hit:1 http://archive.ubuntu.com/ubuntu focal InRelease 2024-09-11T07:15:43.499 INFO:teuthology.orchestra.run.smithi115.stdout:Hit:2 http://security.ubuntu.com/ubuntu focal-security InRelease 2024-09-11T07:15:43.569 INFO:teuthology.orchestra.run.smithi115.stdout:Hit:3 http://archive.ubuntu.com/ubuntu focal-updates InRelease 2024-09-11T07:15:43.651 INFO:teuthology.orchestra.run.smithi115.stdout:Hit:4 http://archive.ubuntu.com/ubuntu focal-backports InRelease 2024-09-11T07:15:43.766 INFO:teuthology.orchestra.run.smithi181.stdout:done 2024-09-11T07:15:44.087 INFO:teuthology.orchestra.run.smithi150.stdout:Reading package lists... 2024-09-11T07:15:44.115 DEBUG:teuthology.orchestra.run.smithi150:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-11T07:15:44.173 DEBUG:teuthology.orchestra.run.smithi181:> dpkg -s linux-image-generic 2024-09-11T07:15:44.188 INFO:teuthology.orchestra.run.smithi150.stdout:Reading package lists... 2024-09-11T07:15:44.219 INFO:teuthology.orchestra.run.smithi181.stdout:Package: linux-image-generic 2024-09-11T07:15:44.219 INFO:teuthology.orchestra.run.smithi181.stdout:Status: install ok installed 2024-09-11T07:15:44.219 INFO:teuthology.orchestra.run.smithi181.stdout:Priority: optional 2024-09-11T07:15:44.219 INFO:teuthology.orchestra.run.smithi181.stdout:Section: kernel 2024-09-11T07:15:44.219 INFO:teuthology.orchestra.run.smithi181.stdout:Installed-Size: 20 2024-09-11T07:15:44.219 INFO:teuthology.orchestra.run.smithi181.stdout:Maintainer: Ubuntu Kernel Team 2024-09-11T07:15:44.219 INFO:teuthology.orchestra.run.smithi181.stdout:Architecture: amd64 2024-09-11T07:15:44.219 INFO:teuthology.orchestra.run.smithi181.stdout:Source: linux-meta 2024-09-11T07:15:44.219 INFO:teuthology.orchestra.run.smithi181.stdout:Version: 5.4.0.195.193 2024-09-11T07:15:44.219 INFO:teuthology.orchestra.run.smithi181.stdout:Provides: virtualbox-guest-modules (= 6.1.50-dfsg-1~ubuntu1.20.04.1), wireguard-modules (= 1.0.20201112-1~20.04.1), zfs-modules (= 0.8.3-1ubuntu12.17) 2024-09-11T07:15:44.219 INFO:teuthology.orchestra.run.smithi181.stdout:Depends: linux-image-5.4.0-195-generic, linux-modules-extra-5.4.0-195-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-11T07:15:44.219 INFO:teuthology.orchestra.run.smithi181.stdout:Recommends: thermald 2024-09-11T07:15:44.220 INFO:teuthology.orchestra.run.smithi181.stdout:Description: Generic Linux kernel image 2024-09-11T07:15:44.220 INFO:teuthology.orchestra.run.smithi181.stdout: This package will always depend on the latest generic kernel image 2024-09-11T07:15:44.220 INFO:teuthology.orchestra.run.smithi181.stdout: available. 2024-09-11T07:15:44.220 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.4.0-124-generic Expected: 5.4.0-195-generic 2024-09-11T07:15:44.220 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-11T07:15:44.220 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-11T07:15:44.220 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-09-11T07:15:44.220 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi181.front.sepia.ceph.com, path=None, version=distro) 2024-09-11T07:15:44.220 DEBUG:teuthology.orchestra.run.smithi181:> sudo apt-get clean 2024-09-11T07:15:44.298 DEBUG:teuthology.orchestra.run.smithi181:> sudo apt-get update 2024-09-11T07:15:44.406 INFO:teuthology.orchestra.run.smithi150.stdout:Building dependency tree... 2024-09-11T07:15:44.407 INFO:teuthology.orchestra.run.smithi150.stdout:Reading state information... 2024-09-11T07:15:44.435 INFO:teuthology.orchestra.run.smithi181.stdout:Hit:1 http://security.ubuntu.com/ubuntu focal-security InRelease 2024-09-11T07:15:44.552 INFO:teuthology.orchestra.run.smithi181.stdout:Hit:2 http://archive.ubuntu.com/ubuntu focal InRelease 2024-09-11T07:15:44.635 INFO:teuthology.orchestra.run.smithi181.stdout:Hit:3 http://archive.ubuntu.com/ubuntu focal-updates InRelease 2024-09-11T07:15:44.638 INFO:teuthology.orchestra.run.smithi150.stdout:linux-image-generic is already the newest version (5.4.0.195.193). 2024-09-11T07:15:44.638 INFO:teuthology.orchestra.run.smithi150.stdout:0 upgraded, 0 newly installed, 0 to remove and 316 not upgraded. 2024-09-11T07:15:44.640 DEBUG:teuthology.orchestra.run.smithi150:> dpkg -s linux-image-generic 2024-09-11T07:15:44.664 INFO:teuthology.orchestra.run.smithi150.stdout:Package: linux-image-generic 2024-09-11T07:15:44.664 INFO:teuthology.orchestra.run.smithi150.stdout:Status: install ok installed 2024-09-11T07:15:44.664 INFO:teuthology.orchestra.run.smithi150.stdout:Priority: optional 2024-09-11T07:15:44.665 INFO:teuthology.orchestra.run.smithi150.stdout:Section: kernel 2024-09-11T07:15:44.665 INFO:teuthology.orchestra.run.smithi150.stdout:Installed-Size: 20 2024-09-11T07:15:44.665 INFO:teuthology.orchestra.run.smithi150.stdout:Maintainer: Ubuntu Kernel Team 2024-09-11T07:15:44.665 INFO:teuthology.orchestra.run.smithi150.stdout:Architecture: amd64 2024-09-11T07:15:44.665 INFO:teuthology.orchestra.run.smithi150.stdout:Source: linux-meta 2024-09-11T07:15:44.666 INFO:teuthology.orchestra.run.smithi150.stdout:Version: 5.4.0.195.193 2024-09-11T07:15:44.666 INFO:teuthology.orchestra.run.smithi150.stdout:Provides: virtualbox-guest-modules (= 6.1.50-dfsg-1~ubuntu1.20.04.1), wireguard-modules (= 1.0.20201112-1~20.04.1), zfs-modules (= 0.8.3-1ubuntu12.17) 2024-09-11T07:15:44.666 INFO:teuthology.orchestra.run.smithi150.stdout:Depends: linux-image-5.4.0-195-generic, linux-modules-extra-5.4.0-195-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-11T07:15:44.666 INFO:teuthology.orchestra.run.smithi150.stdout:Recommends: thermald 2024-09-11T07:15:44.666 INFO:teuthology.orchestra.run.smithi150.stdout:Description: Generic Linux kernel image 2024-09-11T07:15:44.666 INFO:teuthology.orchestra.run.smithi150.stdout: This package will always depend on the latest generic kernel image 2024-09-11T07:15:44.667 INFO:teuthology.orchestra.run.smithi150.stdout: available. 2024-09-11T07:15:44.667 DEBUG:teuthology.orchestra.run.smithi150:> mktemp 2024-09-11T07:15:44.672 INFO:teuthology.orchestra.run.smithi150.stdout:/tmp/tmp.YC1hkIZt8X 2024-09-11T07:15:44.673 DEBUG:teuthology.orchestra.run.smithi150:> sudo cp /boot/grub/grub.cfg /tmp/tmp.YC1hkIZt8X 2024-09-11T07:15:44.683 DEBUG:teuthology.orchestra.run.smithi150:> sudo chmod 0666 /tmp/tmp.YC1hkIZt8X 2024-09-11T07:15:44.720 INFO:teuthology.orchestra.run.smithi181.stdout:Hit:4 http://archive.ubuntu.com/ubuntu focal-backports InRelease 2024-09-11T07:15:44.723 DEBUG:teuthology.orchestra.remote:smithi150:/tmp/tmp.YC1hkIZt8X is 9KB 2024-09-11T07:15:44.738 DEBUG:teuthology.orchestra.run.smithi150:> rm -fr /tmp/tmp.YC1hkIZt8X 2024-09-11T07:15:44.744 DEBUG:teuthology.orchestra.run.smithi150:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-11T07:15:44.800 DEBUG:teuthology.orchestra.run.smithi150:> set -ex 2024-09-11T07:15:44.800 DEBUG:teuthology.orchestra.run.smithi150:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-11T07:15:44.800 DEBUG:teuthology.orchestra.run.smithi150:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-11T07:15:44.839 INFO:teuthology.task.kernel:Distro Kernel Version: 5.4.0-195-generic 2024-09-11T07:15:44.839 DEBUG:teuthology.orchestra.run.smithi150:> sudo update-grub 2024-09-11T07:15:45.375 INFO:teuthology.orchestra.run.smithi115.stdout:Reading package lists... 2024-09-11T07:15:45.401 DEBUG:teuthology.orchestra.run.smithi115:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-11T07:15:45.475 INFO:teuthology.orchestra.run.smithi115.stdout:Reading package lists... 2024-09-11T07:15:45.693 INFO:teuthology.orchestra.run.smithi115.stdout:Building dependency tree... 2024-09-11T07:15:45.693 INFO:teuthology.orchestra.run.smithi115.stdout:Reading state information... 2024-09-11T07:15:45.930 INFO:teuthology.orchestra.run.smithi115.stdout:linux-image-generic is already the newest version (5.4.0.195.193). 2024-09-11T07:15:45.931 INFO:teuthology.orchestra.run.smithi115.stdout:0 upgraded, 0 newly installed, 0 to remove and 316 not upgraded. 2024-09-11T07:15:45.932 DEBUG:teuthology.orchestra.run.smithi115:> dpkg -s linux-image-generic 2024-09-11T07:15:45.954 INFO:teuthology.orchestra.run.smithi115.stdout:Package: linux-image-generic 2024-09-11T07:15:45.954 INFO:teuthology.orchestra.run.smithi115.stdout:Status: install ok installed 2024-09-11T07:15:45.954 INFO:teuthology.orchestra.run.smithi115.stdout:Priority: optional 2024-09-11T07:15:45.954 INFO:teuthology.orchestra.run.smithi115.stdout:Section: kernel 2024-09-11T07:15:45.954 INFO:teuthology.orchestra.run.smithi115.stdout:Installed-Size: 20 2024-09-11T07:15:45.954 INFO:teuthology.orchestra.run.smithi115.stdout:Maintainer: Ubuntu Kernel Team 2024-09-11T07:15:45.954 INFO:teuthology.orchestra.run.smithi115.stdout:Architecture: amd64 2024-09-11T07:15:45.955 INFO:teuthology.orchestra.run.smithi115.stdout:Source: linux-meta 2024-09-11T07:15:45.955 INFO:teuthology.orchestra.run.smithi115.stdout:Version: 5.4.0.195.193 2024-09-11T07:15:45.955 INFO:teuthology.orchestra.run.smithi115.stdout:Provides: virtualbox-guest-modules (= 6.1.50-dfsg-1~ubuntu1.20.04.1), wireguard-modules (= 1.0.20201112-1~20.04.1), zfs-modules (= 0.8.3-1ubuntu12.17) 2024-09-11T07:15:45.955 INFO:teuthology.orchestra.run.smithi115.stdout:Depends: linux-image-5.4.0-195-generic, linux-modules-extra-5.4.0-195-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-11T07:15:45.955 INFO:teuthology.orchestra.run.smithi115.stdout:Recommends: thermald 2024-09-11T07:15:45.955 INFO:teuthology.orchestra.run.smithi115.stdout:Description: Generic Linux kernel image 2024-09-11T07:15:45.955 INFO:teuthology.orchestra.run.smithi115.stdout: This package will always depend on the latest generic kernel image 2024-09-11T07:15:45.955 INFO:teuthology.orchestra.run.smithi115.stdout: available. 2024-09-11T07:15:45.955 DEBUG:teuthology.orchestra.run.smithi115:> mktemp 2024-09-11T07:15:45.960 INFO:teuthology.orchestra.run.smithi115.stdout:/tmp/tmp.GxD89rPdKq 2024-09-11T07:15:45.961 DEBUG:teuthology.orchestra.run.smithi115:> sudo cp /boot/grub/grub.cfg /tmp/tmp.GxD89rPdKq 2024-09-11T07:15:46.018 DEBUG:teuthology.orchestra.run.smithi115:> sudo chmod 0666 /tmp/tmp.GxD89rPdKq 2024-09-11T07:15:46.065 DEBUG:teuthology.orchestra.remote:smithi115:/tmp/tmp.GxD89rPdKq is 9KB 2024-09-11T07:15:46.078 DEBUG:teuthology.orchestra.run.smithi115:> rm -fr /tmp/tmp.GxD89rPdKq 2024-09-11T07:15:46.085 DEBUG:teuthology.orchestra.run.smithi115:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-11T07:15:46.141 DEBUG:teuthology.orchestra.run.smithi115:> set -ex 2024-09-11T07:15:46.142 DEBUG:teuthology.orchestra.run.smithi115:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-11T07:15:46.142 DEBUG:teuthology.orchestra.run.smithi115:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-11T07:15:46.181 INFO:teuthology.task.kernel:Distro Kernel Version: 5.4.0-195-generic 2024-09-11T07:15:46.181 DEBUG:teuthology.orchestra.run.smithi115:> sudo update-grub 2024-09-11T07:15:46.183 INFO:teuthology.orchestra.run.smithi150.stderr:Sourcing file `/etc/default/grub' 2024-09-11T07:15:46.189 INFO:teuthology.orchestra.run.smithi150.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-11T07:15:46.203 INFO:teuthology.orchestra.run.smithi150.stderr:Generating grub configuration file ... 2024-09-11T07:15:46.295 INFO:teuthology.orchestra.run.smithi181.stdout:Reading package lists... 2024-09-11T07:15:46.320 DEBUG:teuthology.orchestra.run.smithi181:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-11T07:15:46.393 INFO:teuthology.orchestra.run.smithi181.stdout:Reading package lists... 2024-09-11T07:15:46.444 INFO:teuthology.orchestra.run.smithi150.stderr:Found linux image: /boot/vmlinuz-5.4.0-195-generic 2024-09-11T07:15:46.456 INFO:teuthology.orchestra.run.smithi150.stderr:Found initrd image: /boot/initrd.img-5.4.0-195-generic 2024-09-11T07:15:46.587 INFO:teuthology.orchestra.run.smithi181.stdout:Building dependency tree... 2024-09-11T07:15:46.587 INFO:teuthology.orchestra.run.smithi181.stdout:Reading state information... 2024-09-11T07:15:46.815 INFO:teuthology.orchestra.run.smithi181.stdout:linux-image-generic is already the newest version (5.4.0.195.193). 2024-09-11T07:15:46.815 INFO:teuthology.orchestra.run.smithi181.stdout:0 upgraded, 0 newly installed, 0 to remove and 316 not upgraded. 2024-09-11T07:15:46.817 DEBUG:teuthology.orchestra.run.smithi181:> dpkg -s linux-image-generic 2024-09-11T07:15:46.818 INFO:teuthology.orchestra.run.smithi150.stderr:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-09-11T07:15:46.829 INFO:teuthology.orchestra.run.smithi150.stderr:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-09-11T07:15:46.837 INFO:teuthology.orchestra.run.smithi181.stdout:Package: linux-image-generic 2024-09-11T07:15:46.837 INFO:teuthology.orchestra.run.smithi181.stdout:Status: install ok installed 2024-09-11T07:15:46.837 INFO:teuthology.orchestra.run.smithi181.stdout:Priority: optional 2024-09-11T07:15:46.837 INFO:teuthology.orchestra.run.smithi181.stdout:Section: kernel 2024-09-11T07:15:46.838 INFO:teuthology.orchestra.run.smithi181.stdout:Installed-Size: 20 2024-09-11T07:15:46.838 INFO:teuthology.orchestra.run.smithi181.stdout:Maintainer: Ubuntu Kernel Team 2024-09-11T07:15:46.838 INFO:teuthology.orchestra.run.smithi181.stdout:Architecture: amd64 2024-09-11T07:15:46.838 INFO:teuthology.orchestra.run.smithi181.stdout:Source: linux-meta 2024-09-11T07:15:46.838 INFO:teuthology.orchestra.run.smithi181.stdout:Version: 5.4.0.195.193 2024-09-11T07:15:46.838 INFO:teuthology.orchestra.run.smithi181.stdout:Provides: virtualbox-guest-modules (= 6.1.50-dfsg-1~ubuntu1.20.04.1), wireguard-modules (= 1.0.20201112-1~20.04.1), zfs-modules (= 0.8.3-1ubuntu12.17) 2024-09-11T07:15:46.838 INFO:teuthology.orchestra.run.smithi181.stdout:Depends: linux-image-5.4.0-195-generic, linux-modules-extra-5.4.0-195-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-11T07:15:46.838 INFO:teuthology.orchestra.run.smithi181.stdout:Recommends: thermald 2024-09-11T07:15:46.838 INFO:teuthology.orchestra.run.smithi181.stdout:Description: Generic Linux kernel image 2024-09-11T07:15:46.838 INFO:teuthology.orchestra.run.smithi181.stdout: This package will always depend on the latest generic kernel image 2024-09-11T07:15:46.838 INFO:teuthology.orchestra.run.smithi181.stdout: available. 2024-09-11T07:15:46.839 DEBUG:teuthology.orchestra.run.smithi181:> mktemp 2024-09-11T07:15:46.844 INFO:teuthology.orchestra.run.smithi181.stdout:/tmp/tmp.ZjXzjysr5I 2024-09-11T07:15:46.844 DEBUG:teuthology.orchestra.run.smithi181:> sudo cp /boot/grub/grub.cfg /tmp/tmp.ZjXzjysr5I 2024-09-11T07:15:46.861 DEBUG:teuthology.orchestra.run.smithi181:> sudo chmod 0666 /tmp/tmp.ZjXzjysr5I 2024-09-11T07:15:46.902 DEBUG:teuthology.orchestra.remote:smithi181:/tmp/tmp.ZjXzjysr5I is 9KB 2024-09-11T07:15:46.921 DEBUG:teuthology.orchestra.run.smithi181:> rm -fr /tmp/tmp.ZjXzjysr5I 2024-09-11T07:15:46.928 DEBUG:teuthology.orchestra.run.smithi181:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-11T07:15:46.984 DEBUG:teuthology.orchestra.run.smithi181:> set -ex 2024-09-11T07:15:46.984 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-11T07:15:46.985 DEBUG:teuthology.orchestra.run.smithi181:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-11T07:15:47.016 INFO:teuthology.task.kernel:Distro Kernel Version: 5.4.0-195-generic 2024-09-11T07:15:47.016 DEBUG:teuthology.orchestra.run.smithi181:> sudo update-grub 2024-09-11T07:15:47.577 INFO:teuthology.orchestra.run.smithi115.stderr:Sourcing file `/etc/default/grub' 2024-09-11T07:15:47.584 INFO:teuthology.orchestra.run.smithi115.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-11T07:15:47.595 INFO:teuthology.orchestra.run.smithi150.stderr:done 2024-09-11T07:15:47.598 DEBUG:teuthology.orchestra.run.smithi150:> sudo shutdown -r now 2024-09-11T07:15:47.598 INFO:teuthology.orchestra.run.smithi115.stderr:Generating grub configuration file ... 2024-09-11T07:15:47.896 INFO:teuthology.orchestra.run.smithi115.stderr:Found linux image: /boot/vmlinuz-5.4.0-195-generic 2024-09-11T07:15:47.908 INFO:teuthology.orchestra.run.smithi115.stderr:Found initrd image: /boot/initrd.img-5.4.0-195-generic 2024-09-11T07:15:48.294 INFO:teuthology.orchestra.run.smithi115.stderr:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-09-11T07:15:48.306 INFO:teuthology.orchestra.run.smithi115.stderr:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-09-11T07:15:48.385 INFO:teuthology.orchestra.run.smithi181.stderr:Sourcing file `/etc/default/grub' 2024-09-11T07:15:48.397 INFO:teuthology.orchestra.run.smithi181.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-11T07:15:48.409 INFO:teuthology.orchestra.run.smithi181.stderr:Generating grub configuration file ... 2024-09-11T07:15:48.700 INFO:teuthology.orchestra.run.smithi181.stderr:Found linux image: /boot/vmlinuz-5.4.0-195-generic 2024-09-11T07:15:48.711 INFO:teuthology.orchestra.run.smithi181.stderr:Found initrd image: /boot/initrd.img-5.4.0-195-generic 2024-09-11T07:15:49.100 INFO:teuthology.orchestra.run.smithi181.stderr:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-09-11T07:15:49.111 INFO:teuthology.orchestra.run.smithi181.stderr:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-09-11T07:15:49.359 INFO:teuthology.orchestra.run.smithi115.stderr:done 2024-09-11T07:15:49.361 DEBUG:teuthology.orchestra.run.smithi115:> sudo shutdown -r now 2024-09-11T07:15:50.145 INFO:teuthology.orchestra.run.smithi181.stderr:done 2024-09-11T07:15:50.146 DEBUG:teuthology.orchestra.run.smithi181:> sudo shutdown -r now 2024-09-11T07:16:17.623 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-11T07:16:17.623 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi150.front.sepia.ceph.com' 2024-09-11T07:16:17.624 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi150.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T07:16:19.365 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-11T07:16:19.365 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi115.front.sepia.ceph.com' 2024-09-11T07:16:19.366 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi115.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T07:16:20.150 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-09-11T07:16:20.151 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi181.front.sepia.ceph.com' 2024-09-11T07:16:20.151 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi181.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T07:16:36.029 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.150 2024-09-11T07:16:37.825 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.115 2024-09-11T07:16:38.589 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.181 2024-09-11T07:16:45.037 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi150.front.sepia.ceph.com' 2024-09-11T07:16:45.037 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi150.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T07:16:46.828 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi115.front.sepia.ceph.com' 2024-09-11T07:16:46.829 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi115.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T07:16:47.590 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi181.front.sepia.ceph.com' 2024-09-11T07:16:47.591 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi181.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T07:16:48.093 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.150 2024-09-11T07:16:49.889 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.115 2024-09-11T07:16:50.653 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.181 2024-09-11T07:17:00.101 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi150.front.sepia.ceph.com' 2024-09-11T07:17:00.102 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi150.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T07:17:01.891 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi115.front.sepia.ceph.com' 2024-09-11T07:17:01.892 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi115.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T07:17:02.655 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi181.front.sepia.ceph.com' 2024-09-11T07:17:02.655 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi181.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T07:17:18.525 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.150 2024-09-11T07:17:33.577 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi150.front.sepia.ceph.com' 2024-09-11T07:17:33.578 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi150.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T07:17:34.249 DEBUG:teuthology.orchestra.run.smithi150:> true 2024-09-11T07:17:34.403 DEBUG:teuthology.orchestra.run.smithi181:> true 2024-09-11T07:17:35.022 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi181.front.sepia.ceph.com' 2024-09-11T07:17:35.022 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.4.0-195-generic"... 2024-09-11T07:17:35.022 DEBUG:teuthology.orchestra.run.smithi181:> uname -r 2024-09-11T07:17:35.069 INFO:teuthology.orchestra.run.smithi181.stdout:5.4.0-195-generic 2024-09-11T07:17:35.069 DEBUG:teuthology.task.kernel:current kernel version is 5.4.0-195-generic vs 5.4.0-195-generic 2024-09-11T07:17:35.069 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-11T07:17:35.069 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-11T07:17:35.278 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi150.front.sepia.ceph.com' 2024-09-11T07:17:35.279 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.4.0-195-generic"... 2024-09-11T07:17:35.279 DEBUG:teuthology.orchestra.run.smithi150:> uname -r 2024-09-11T07:17:35.285 INFO:teuthology.orchestra.run.smithi150.stdout:5.4.0-195-generic 2024-09-11T07:17:35.285 DEBUG:teuthology.task.kernel:current kernel version is 5.4.0-195-generic vs 5.4.0-195-generic 2024-09-11T07:17:35.285 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-11T07:17:35.286 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-11T07:17:36.070 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-09-11T07:17:36.070 DEBUG:teuthology.orchestra.run.smithi181:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-11T07:17:36.136 INFO:teuthology.orchestra.run.smithi181.stdout:ttyS1 2024-09-11T07:17:36.166 DEBUG:teuthology.parallel:result is None 2024-09-11T07:17:36.287 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-11T07:17:36.287 DEBUG:teuthology.orchestra.run.smithi150:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-11T07:17:36.476 INFO:teuthology.orchestra.run.smithi150.stdout:ttyS1 2024-09-11T07:17:36.504 DEBUG:teuthology.parallel:result is None 2024-09-11T07:18:01.895 DEBUG:teuthology.orchestra.remote:timed out 2024-09-11T07:18:16.896 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi115.front.sepia.ceph.com' 2024-09-11T07:18:16.897 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi115.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T07:18:17.150 DEBUG:teuthology.orchestra.run.smithi115:> true 2024-09-11T07:18:17.780 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi115.front.sepia.ceph.com' 2024-09-11T07:18:17.781 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.4.0-195-generic"... 2024-09-11T07:18:17.781 DEBUG:teuthology.orchestra.run.smithi115:> uname -r 2024-09-11T07:18:17.787 INFO:teuthology.orchestra.run.smithi115.stdout:5.4.0-195-generic 2024-09-11T07:18:17.787 DEBUG:teuthology.task.kernel:current kernel version is 5.4.0-195-generic vs 5.4.0-195-generic 2024-09-11T07:18:17.787 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-11T07:18:17.788 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-11T07:18:18.788 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-11T07:18:18.789 DEBUG:teuthology.orchestra.run.smithi115:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-11T07:18:18.883 INFO:teuthology.orchestra.run.smithi115.stdout:ttyS1 2024-09-11T07:18:18.912 DEBUG:teuthology.parallel:result is None 2024-09-11T07:18:18.912 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-11T07:18:18.919 INFO:teuthology.task.internal:Creating test directory... 2024-09-11T07:18:18.919 DEBUG:teuthology.orchestra.run.smithi115:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-11T07:18:18.922 DEBUG:teuthology.orchestra.run.smithi150:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-11T07:18:18.924 DEBUG:teuthology.orchestra.run.smithi181:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-11T07:18:18.932 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-11T07:18:18.938 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-11T07:18:18.949 INFO:teuthology.task.internal:Creating archive directory... 2024-09-11T07:18:18.949 DEBUG:teuthology.orchestra.run.smithi115:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-11T07:18:18.951 DEBUG:teuthology.orchestra.run.smithi150:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-11T07:18:18.953 DEBUG:teuthology.orchestra.run.smithi181:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-11T07:18:18.996 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-11T07:18:19.003 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-11T07:18:19.003 DEBUG:teuthology.orchestra.run.smithi115:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-09-11T07:18:19.011 DEBUG:teuthology.orchestra.run.smithi150:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-09-11T07:18:19.013 DEBUG:teuthology.orchestra.run.smithi181:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-09-11T07:18:19.026 INFO:teuthology.orchestra.run.smithi115.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-11T07:18:19.032 INFO:teuthology.orchestra.run.smithi150.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-11T07:18:19.036 INFO:teuthology.orchestra.run.smithi115.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-11T07:18:19.039 INFO:teuthology.orchestra.run.smithi181.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-11T07:18:19.043 INFO:teuthology.orchestra.run.smithi150.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-11T07:18:19.050 INFO:teuthology.orchestra.run.smithi181.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-11T07:18:19.052 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-11T07:18:19.059 INFO:teuthology.task.internal:Configuring sudo... 2024-09-11T07:18:19.059 DEBUG:teuthology.orchestra.run.smithi115:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-11T07:18:19.061 DEBUG:teuthology.orchestra.run.smithi150:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-11T07:18:19.090 DEBUG:teuthology.orchestra.run.smithi181:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-11T07:18:19.106 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-11T07:18:19.115 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-11T07:18:19.115 DEBUG:teuthology.orchestra.run.smithi115:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-11T07:18:19.119 DEBUG:teuthology.orchestra.run.smithi150:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-11T07:18:19.121 DEBUG:teuthology.orchestra.run.smithi181:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-11T07:18:19.157 DEBUG:teuthology.orchestra.run.smithi115:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-11T07:18:19.164 DEBUG:teuthology.orchestra.run.smithi115:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-11T07:18:19.171 DEBUG:teuthology.orchestra.run.smithi115:> set -ex 2024-09-11T07:18:19.172 DEBUG:teuthology.orchestra.run.smithi115:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-11T07:18:19.244 DEBUG:teuthology.orchestra.run.smithi150:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-11T07:18:19.252 DEBUG:teuthology.orchestra.run.smithi150:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-11T07:18:19.259 DEBUG:teuthology.orchestra.run.smithi150:> set -ex 2024-09-11T07:18:19.259 DEBUG:teuthology.orchestra.run.smithi150:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-11T07:18:19.285 DEBUG:teuthology.orchestra.run.smithi181:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-11T07:18:19.292 DEBUG:teuthology.orchestra.run.smithi181:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-11T07:18:19.299 DEBUG:teuthology.orchestra.run.smithi181:> set -ex 2024-09-11T07:18:19.299 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-11T07:18:19.367 DEBUG:teuthology.orchestra.run.smithi115:> sudo service rsyslog restart 2024-09-11T07:18:19.369 DEBUG:teuthology.orchestra.run.smithi150:> sudo service rsyslog restart 2024-09-11T07:18:19.371 DEBUG:teuthology.orchestra.run.smithi181:> sudo service rsyslog restart 2024-09-11T07:18:19.421 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-11T07:18:19.428 INFO:teuthology.task.internal:Starting timer... 2024-09-11T07:18:19.428 INFO:teuthology.run_tasks:Running task pcp... 2024-09-11T07:18:19.439 INFO:teuthology.run_tasks:Running task selinux... 2024-09-11T07:18:19.447 DEBUG:teuthology.task.selinux:Excluding smithi115: OS 'ubuntu' does not support SELinux 2024-09-11T07:18:19.447 DEBUG:teuthology.task.selinux:Excluding smithi150: OS 'ubuntu' does not support SELinux 2024-09-11T07:18:19.447 DEBUG:teuthology.task.selinux:Excluding smithi181: OS 'ubuntu' does not support SELinux 2024-09-11T07:18:19.447 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-11T07:18:19.447 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-09-11T07:18:19.447 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-11T07:18:19.447 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-11T07:18:19.455 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-11T07:18:19.466 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2024-09-11T07:18:19.467 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi115.front.sepia.ceph.com,smithi150.front.sepia.ceph.com,smithi181.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-11T07:23:54.932 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi115.front.sepia.ceph.com'), Remote(name='ubuntu@smithi150.front.sepia.ceph.com'), Remote(name='ubuntu@smithi181.front.sepia.ceph.com')] 2024-09-11T07:23:54.937 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi115.front.sepia.ceph.com' 2024-09-11T07:23:54.938 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi115.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T07:23:55.055 DEBUG:teuthology.orchestra.run.smithi115:> true 2024-09-11T07:23:55.174 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi115.front.sepia.ceph.com' 2024-09-11T07:23:55.175 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi150.front.sepia.ceph.com' 2024-09-11T07:23:55.175 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi150.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T07:23:55.275 DEBUG:teuthology.orchestra.run.smithi150:> true 2024-09-11T07:23:55.402 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi150.front.sepia.ceph.com' 2024-09-11T07:23:55.403 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi181.front.sepia.ceph.com' 2024-09-11T07:23:55.403 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi181.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T07:23:55.490 DEBUG:teuthology.orchestra.run.smithi181:> true 2024-09-11T07:23:55.610 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi181.front.sepia.ceph.com' 2024-09-11T07:23:55.611 INFO:teuthology.run_tasks:Running task clock... 2024-09-11T07:23:55.623 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-11T07:23:55.624 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-11T07:23:55.624 DEBUG:teuthology.orchestra.run.smithi115:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-11T07:23:55.626 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-11T07:23:55.627 DEBUG:teuthology.orchestra.run.smithi150:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-11T07:23:55.629 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-11T07:23:55.629 DEBUG:teuthology.orchestra.run.smithi181:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-11T07:23:55.657 INFO:teuthology.orchestra.run.smithi115.stdout:11 Sep 07:23:55 ntpd[13713]: ntpd 4.2.8p12@1.3728-o (1): Starting 2024-09-11T07:23:55.657 INFO:teuthology.orchestra.run.smithi115.stdout:11 Sep 07:23:55 ntpd[13713]: Command line: ntpd -gq 2024-09-11T07:23:55.658 INFO:teuthology.orchestra.run.smithi115.stdout:11 Sep 07:23:55 ntpd[13713]: proto: precision = 0.133 usec (-23) 2024-09-11T07:23:55.658 INFO:teuthology.orchestra.run.smithi115.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-11T07:23:55.659 INFO:teuthology.orchestra.run.smithi115.stdout:11 Sep 07:23:55 ntpd[13713]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-11T07:23:55.659 INFO:teuthology.orchestra.run.smithi115.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-11T07:23:55.660 INFO:teuthology.orchestra.run.smithi115.stdout:11 Sep 07:23:55 ntpd[13713]: restrict ::: KOD does nothing without LIMITED. 2024-09-11T07:23:55.660 INFO:teuthology.orchestra.run.smithi115.stdout:11 Sep 07:23:55 ntpd[13713]: Listen and drop on 0 v6wildcard [::]:123 2024-09-11T07:23:55.660 INFO:teuthology.orchestra.run.smithi115.stdout:11 Sep 07:23:55 ntpd[13713]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-11T07:23:55.660 INFO:teuthology.orchestra.run.smithi115.stdout:11 Sep 07:23:55 ntpd[13713]: Listen normally on 2 lo 127.0.0.1:123 2024-09-11T07:23:55.660 INFO:teuthology.orchestra.run.smithi115.stdout:11 Sep 07:23:55 ntpd[13713]: Listen normally on 3 enp3s0f1 172.21.15.115:123 2024-09-11T07:23:55.660 INFO:teuthology.orchestra.run.smithi115.stdout:11 Sep 07:23:55 ntpd[13713]: Listen normally on 4 lo [::1]:123 2024-09-11T07:23:55.660 INFO:teuthology.orchestra.run.smithi115.stdout:11 Sep 07:23:55 ntpd[13713]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:ce8f%5]:123 2024-09-11T07:23:55.660 INFO:teuthology.orchestra.run.smithi115.stdout:11 Sep 07:23:55 ntpd[13713]: Listening on routing socket on fd #22 for interface updates 2024-09-11T07:23:55.662 INFO:teuthology.orchestra.run.smithi181.stdout:11 Sep 07:23:55 ntpd[13651]: ntpd 4.2.8p12@1.3728-o (1): Starting 2024-09-11T07:23:55.662 INFO:teuthology.orchestra.run.smithi181.stdout:11 Sep 07:23:55 ntpd[13651]: Command line: ntpd -gq 2024-09-11T07:23:55.663 INFO:teuthology.orchestra.run.smithi150.stdout:11 Sep 07:23:55 ntpd[13662]: ntpd 4.2.8p12@1.3728-o (1): Starting 2024-09-11T07:23:55.663 INFO:teuthology.orchestra.run.smithi150.stdout:11 Sep 07:23:55 ntpd[13662]: Command line: ntpd -gq 2024-09-11T07:23:55.663 INFO:teuthology.orchestra.run.smithi181.stdout:11 Sep 07:23:55 ntpd[13651]: proto: precision = 0.183 usec (-22) 2024-09-11T07:23:55.664 INFO:teuthology.orchestra.run.smithi181.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-11T07:23:55.664 INFO:teuthology.orchestra.run.smithi181.stdout:11 Sep 07:23:55 ntpd[13651]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-11T07:23:55.664 INFO:teuthology.orchestra.run.smithi181.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-11T07:23:55.665 INFO:teuthology.orchestra.run.smithi181.stdout:11 Sep 07:23:55 ntpd[13651]: restrict ::: KOD does nothing without LIMITED. 2024-09-11T07:23:55.665 INFO:teuthology.orchestra.run.smithi181.stdout:11 Sep 07:23:55 ntpd[13651]: Listen and drop on 0 v6wildcard [::]:123 2024-09-11T07:23:55.665 INFO:teuthology.orchestra.run.smithi181.stdout:11 Sep 07:23:55 ntpd[13651]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-11T07:23:55.665 INFO:teuthology.orchestra.run.smithi181.stdout:11 Sep 07:23:55 ntpd[13651]: Listen normally on 2 lo 127.0.0.1:123 2024-09-11T07:23:55.666 INFO:teuthology.orchestra.run.smithi181.stdout:11 Sep 07:23:55 ntpd[13651]: Listen normally on 3 enp3s0f1 172.21.15.181:123 2024-09-11T07:23:55.666 INFO:teuthology.orchestra.run.smithi181.stdout:11 Sep 07:23:55 ntpd[13651]: Listen normally on 4 lo [::1]:123 2024-09-11T07:23:55.666 INFO:teuthology.orchestra.run.smithi181.stdout:11 Sep 07:23:55 ntpd[13651]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:7b9d%5]:123 2024-09-11T07:23:55.666 INFO:teuthology.orchestra.run.smithi181.stdout:11 Sep 07:23:55 ntpd[13651]: Listening on routing socket on fd #22 for interface updates 2024-09-11T07:23:55.666 INFO:teuthology.orchestra.run.smithi150.stdout:11 Sep 07:23:55 ntpd[13662]: proto: precision = 0.093 usec (-23) 2024-09-11T07:23:55.666 INFO:teuthology.orchestra.run.smithi150.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-11T07:23:55.667 INFO:teuthology.orchestra.run.smithi150.stdout:11 Sep 07:23:55 ntpd[13662]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-11T07:23:55.667 INFO:teuthology.orchestra.run.smithi150.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-11T07:23:55.668 INFO:teuthology.orchestra.run.smithi150.stdout:11 Sep 07:23:55 ntpd[13662]: restrict ::: KOD does nothing without LIMITED. 2024-09-11T07:23:55.668 INFO:teuthology.orchestra.run.smithi150.stdout:11 Sep 07:23:55 ntpd[13662]: Listen and drop on 0 v6wildcard [::]:123 2024-09-11T07:23:55.668 INFO:teuthology.orchestra.run.smithi150.stdout:11 Sep 07:23:55 ntpd[13662]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-11T07:23:55.668 INFO:teuthology.orchestra.run.smithi150.stdout:11 Sep 07:23:55 ntpd[13662]: Listen normally on 2 lo 127.0.0.1:123 2024-09-11T07:23:55.668 INFO:teuthology.orchestra.run.smithi150.stdout:11 Sep 07:23:55 ntpd[13662]: Listen normally on 3 enp3s0f1 172.21.15.150:123 2024-09-11T07:23:55.668 INFO:teuthology.orchestra.run.smithi150.stdout:11 Sep 07:23:55 ntpd[13662]: Listen normally on 4 lo [::1]:123 2024-09-11T07:23:55.669 INFO:teuthology.orchestra.run.smithi150.stdout:11 Sep 07:23:55 ntpd[13662]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:6e35%5]:123 2024-09-11T07:23:55.669 INFO:teuthology.orchestra.run.smithi150.stdout:11 Sep 07:23:55 ntpd[13662]: Listening on routing socket on fd #22 for interface updates 2024-09-11T07:23:56.657 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:23:56 ntpd[13713]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:23:56.657 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:23:56 ntpd[13713]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:23:56.658 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:23:56 ntpd[13713]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:23:56.658 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:23:56 ntpd[13713]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:23:56.658 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:23:56 ntpd[13713]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-11T07:23:56.658 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:23:56 ntpd[13713]: can't open /var/log/ntpstats/peerstats.20240911: Permission denied 2024-09-11T07:23:56.663 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:23:56 ntpd[13662]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:23:56.663 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:23:56 ntpd[13662]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:23:56.664 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:23:56 ntpd[13662]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:23:56.664 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:23:56 ntpd[13662]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:23:56.664 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:23:56 ntpd[13662]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-11T07:23:56.664 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:23:56 ntpd[13662]: can't open /var/log/ntpstats/peerstats.20240911: Permission denied 2024-09-11T07:23:57.663 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:23:57 ntpd[13651]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:23:57.663 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:23:57 ntpd[13651]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:23:57.664 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:23:57 ntpd[13651]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:23:57.664 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:23:57 ntpd[13651]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:23:57.664 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:23:57 ntpd[13651]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:23:57.664 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:23:57 ntpd[13651]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:23:57.664 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:23:57 ntpd[13651]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-11T07:23:57.664 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:23:57 ntpd[13651]: can't open /var/log/ntpstats/peerstats.20240911: Permission denied 2024-09-11T07:23:58.658 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:23:58 ntpd[13713]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:23:58.658 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:23:58 ntpd[13713]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:23:58.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:23:58 ntpd[13713]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:23:58.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:23:58 ntpd[13713]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:23:58.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:23:58 ntpd[13713]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:23:58.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:23:58 ntpd[13713]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:23:58.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:23:58 ntpd[13713]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:23:58.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:23:58 ntpd[13713]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:23:58.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:23:58 ntpd[13713]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-11T07:23:58.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:23:58 ntpd[13713]: can't open /var/log/ntpstats/peerstats.20240911: Permission denied 2024-09-11T07:23:58.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:23:58 ntpd[13713]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:23:58.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:23:58 ntpd[13713]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:23:58.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:23:58 ntpd[13713]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-11T07:23:58.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:23:58 ntpd[13713]: can't open /var/log/ntpstats/peerstats.20240911: Permission denied 2024-09-11T07:23:58.664 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:23:58 ntpd[13662]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:23:58.664 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:23:58 ntpd[13662]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:23:58.664 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:23:58 ntpd[13662]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:23:58.664 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:23:58 ntpd[13662]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:23:58.664 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:23:58 ntpd[13662]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:23:58.664 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:23:58 ntpd[13662]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:23:58.664 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:23:58 ntpd[13662]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-11T07:23:58.664 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:23:58 ntpd[13662]: can't open /var/log/ntpstats/peerstats.20240911: Permission denied 2024-09-11T07:23:59.658 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:23:59 ntpd[13713]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:23:59.658 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:23:59 ntpd[13713]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:23:59.658 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:23:59 ntpd[13713]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:23:59.658 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:23:59 ntpd[13713]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:23:59.658 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:23:59 ntpd[13713]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-11T07:23:59.658 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:23:59 ntpd[13713]: can't open /var/log/ntpstats/peerstats.20240911: Permission denied 2024-09-11T07:23:59.664 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:23:59 ntpd[13651]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:23:59.664 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:23:59 ntpd[13651]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:23:59.664 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:23:59 ntpd[13651]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:23:59.664 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:23:59 ntpd[13651]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:23:59.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:23:59 ntpd[13651]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:23:59.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:23:59 ntpd[13651]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:23:59.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:23:59 ntpd[13651]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:23:59.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:23:59 ntpd[13651]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:23:59.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:23:59 ntpd[13651]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-11T07:23:59.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:23:59 ntpd[13651]: can't open /var/log/ntpstats/peerstats.20240911: Permission denied 2024-09-11T07:23:59.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:23:59 ntpd[13651]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:23:59.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:23:59 ntpd[13651]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:23:59.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:23:59 ntpd[13651]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-11T07:23:59.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:23:59 ntpd[13651]: can't open /var/log/ntpstats/peerstats.20240911: Permission denied 2024-09-11T07:23:59.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:23:59 ntpd[13651]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:23:59.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:23:59 ntpd[13651]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:23:59.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:23:59 ntpd[13651]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-11T07:23:59.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:23:59 ntpd[13651]: can't open /var/log/ntpstats/peerstats.20240911: Permission denied 2024-09-11T07:24:00.658 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:00 ntpd[13713]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:00.658 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:00 ntpd[13713]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:00.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:00 ntpd[13713]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:00.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:00 ntpd[13713]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:00.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:00 ntpd[13713]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:00.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:00 ntpd[13713]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:00.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:00 ntpd[13713]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-11T07:24:00.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:00 ntpd[13713]: can't open /var/log/ntpstats/peerstats.20240911: Permission denied 2024-09-11T07:24:00.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:00 ntpd[13713]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:00.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:00 ntpd[13713]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:00.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:00 ntpd[13713]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-11T07:24:00.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:00 ntpd[13713]: can't open /var/log/ntpstats/peerstats.20240911: Permission denied 2024-09-11T07:24:00.665 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:00 ntpd[13662]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:00.665 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:00 ntpd[13662]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:00.665 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:00 ntpd[13662]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:00.665 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:00 ntpd[13662]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:00.666 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:00 ntpd[13662]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:00.666 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:00 ntpd[13662]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:00.666 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:00 ntpd[13662]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:00.666 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:00 ntpd[13662]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:00.666 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:00 ntpd[13662]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-11T07:24:00.666 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:00 ntpd[13662]: can't open /var/log/ntpstats/peerstats.20240911: Permission denied 2024-09-11T07:24:00.666 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:00 ntpd[13662]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:00.666 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:00 ntpd[13662]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:00.666 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:00 ntpd[13662]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-11T07:24:00.666 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:00 ntpd[13662]: can't open /var/log/ntpstats/peerstats.20240911: Permission denied 2024-09-11T07:24:00.667 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:00 ntpd[13662]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:00.667 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:00 ntpd[13662]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:00.667 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:00 ntpd[13662]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-11T07:24:00.667 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:00 ntpd[13662]: can't open /var/log/ntpstats/peerstats.20240911: Permission denied 2024-09-11T07:24:01.658 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:01 ntpd[13713]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:01.658 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:01 ntpd[13713]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:01.658 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:01 ntpd[13713]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:01.658 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:01 ntpd[13713]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:01.658 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:01 ntpd[13713]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-11T07:24:01.658 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:01 ntpd[13713]: can't open /var/log/ntpstats/peerstats.20240911: Permission denied 2024-09-11T07:24:01.664 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:01 ntpd[13651]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:01.664 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:01 ntpd[13651]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:01.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:01 ntpd[13651]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:01.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:01 ntpd[13651]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:01.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:01 ntpd[13651]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:01.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:01 ntpd[13651]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:01.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:01 ntpd[13651]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:01.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:01 ntpd[13651]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:01.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:01 ntpd[13651]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-11T07:24:01.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:01 ntpd[13651]: can't open /var/log/ntpstats/peerstats.20240911: Permission denied 2024-09-11T07:24:01.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:01 ntpd[13651]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:01.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:01 ntpd[13651]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:01.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:01 ntpd[13651]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-11T07:24:01.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:01 ntpd[13651]: can't open /var/log/ntpstats/peerstats.20240911: Permission denied 2024-09-11T07:24:01.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:01 ntpd[13651]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:01.666 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:01 ntpd[13651]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:01.666 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:01 ntpd[13651]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-11T07:24:01.666 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:01 ntpd[13651]: can't open /var/log/ntpstats/peerstats.20240911: Permission denied 2024-09-11T07:24:02.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:02 ntpd[13713]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:02.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:02 ntpd[13713]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:02.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:02 ntpd[13713]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:02.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:02 ntpd[13713]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:02.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:02 ntpd[13713]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:02.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:02 ntpd[13713]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:02.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:02 ntpd[13713]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-11T07:24:02.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:02 ntpd[13713]: can't open /var/log/ntpstats/peerstats.20240911: Permission denied 2024-09-11T07:24:02.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:02 ntpd[13713]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:02.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:02 ntpd[13713]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:02.659 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:02 ntpd[13713]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-11T07:24:02.660 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:02 ntpd[13713]: can't open /var/log/ntpstats/peerstats.20240911: Permission denied 2024-09-11T07:24:02.660 INFO:teuthology.orchestra.run.smithi115.stdout:11 Sep 07:24:02 ntpd[13713]: ntpd: time slew +0.000534 s 2024-09-11T07:24:02.660 INFO:teuthology.orchestra.run.smithi115.stdout:ntpd: time slew +0.000534s 2024-09-11T07:24:02.660 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:02 ntpd[13713]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-11T07:24:02.660 INFO:teuthology.orchestra.run.smithi115.stderr:11 Sep 07:24:02 ntpd[13713]: can't open /var/log/ntpstats/loopstats.20240911: Permission denied 2024-09-11T07:24:02.664 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:02 ntpd[13662]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:02.664 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:02 ntpd[13662]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:02.665 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:02 ntpd[13662]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:02.665 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:02 ntpd[13662]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:02.665 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:02 ntpd[13662]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:02.665 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:02 ntpd[13662]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:02.665 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:02 ntpd[13662]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:02.665 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:02 ntpd[13662]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:02.665 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:02 ntpd[13662]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-11T07:24:02.665 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:02 ntpd[13662]: can't open /var/log/ntpstats/peerstats.20240911: Permission denied 2024-09-11T07:24:02.666 INFO:teuthology.orchestra.run.smithi150.stdout:11 Sep 07:24:02 ntpd[13662]: ntpd: time slew +0.000505 s 2024-09-11T07:24:02.666 INFO:teuthology.orchestra.run.smithi150.stdout:ntpd: time slew +0.000505s 2024-09-11T07:24:02.666 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:02 ntpd[13662]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-11T07:24:02.666 INFO:teuthology.orchestra.run.smithi150.stderr:11 Sep 07:24:02 ntpd[13662]: can't open /var/log/ntpstats/loopstats.20240911: Permission denied 2024-09-11T07:24:02.727 INFO:teuthology.orchestra.run.smithi150.stdout: remote refid st t when poll reach delay offset jitter 2024-09-11T07:24:02.728 INFO:teuthology.orchestra.run.smithi150.stdout:============================================================================== 2024-09-11T07:24:02.728 INFO:teuthology.orchestra.run.smithi150.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-09-11T07:24:02.728 INFO:teuthology.orchestra.run.smithi150.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-09-11T07:24:02.728 INFO:teuthology.orchestra.run.smithi150.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-09-11T07:24:02.728 INFO:teuthology.orchestra.run.smithi150.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-09-11T07:24:02.734 INFO:teuthology.orchestra.run.smithi115.stdout: remote refid st t when poll reach delay offset jitter 2024-09-11T07:24:02.734 INFO:teuthology.orchestra.run.smithi115.stdout:============================================================================== 2024-09-11T07:24:02.734 INFO:teuthology.orchestra.run.smithi115.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-09-11T07:24:02.734 INFO:teuthology.orchestra.run.smithi115.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-09-11T07:24:02.734 INFO:teuthology.orchestra.run.smithi115.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-09-11T07:24:02.735 INFO:teuthology.orchestra.run.smithi115.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-09-11T07:24:03.664 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:03 ntpd[13651]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:03.664 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:03 ntpd[13651]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:03.664 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:03 ntpd[13651]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:03.664 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:03 ntpd[13651]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:03.664 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:03 ntpd[13651]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:03.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:03 ntpd[13651]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:03.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:03 ntpd[13651]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:03.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:03 ntpd[13651]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:03.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:03 ntpd[13651]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-11T07:24:03.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:03 ntpd[13651]: can't open /var/log/ntpstats/peerstats.20240911: Permission denied 2024-09-11T07:24:03.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:03 ntpd[13651]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:03.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:03 ntpd[13651]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:03.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:03 ntpd[13651]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-11T07:24:03.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:03 ntpd[13651]: can't open /var/log/ntpstats/peerstats.20240911: Permission denied 2024-09-11T07:24:03.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:03 ntpd[13651]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-11T07:24:03.665 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:03 ntpd[13651]: can't open /var/log/ntpstats/rawstats.20240911: Permission denied 2024-09-11T07:24:03.666 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:03 ntpd[13651]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-11T07:24:03.666 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:03 ntpd[13651]: can't open /var/log/ntpstats/peerstats.20240911: Permission denied 2024-09-11T07:24:03.666 INFO:teuthology.orchestra.run.smithi181.stdout:11 Sep 07:24:03 ntpd[13651]: ntpd: time slew -0.001048 s 2024-09-11T07:24:03.666 INFO:teuthology.orchestra.run.smithi181.stdout:ntpd: time slew -0.001048s 2024-09-11T07:24:03.666 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:03 ntpd[13651]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-11T07:24:03.666 INFO:teuthology.orchestra.run.smithi181.stderr:11 Sep 07:24:03 ntpd[13651]: can't open /var/log/ntpstats/loopstats.20240911: Permission denied 2024-09-11T07:24:03.745 INFO:teuthology.orchestra.run.smithi181.stdout: remote refid st t when poll reach delay offset jitter 2024-09-11T07:24:03.745 INFO:teuthology.orchestra.run.smithi181.stdout:============================================================================== 2024-09-11T07:24:03.746 INFO:teuthology.orchestra.run.smithi181.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-09-11T07:24:03.746 INFO:teuthology.orchestra.run.smithi181.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-09-11T07:24:03.746 INFO:teuthology.orchestra.run.smithi181.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-09-11T07:24:03.746 INFO:teuthology.orchestra.run.smithi181.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-09-11T07:24:03.747 INFO:teuthology.run_tasks:Running task install... 2024-09-11T07:24:03.758 DEBUG:teuthology.task.install:project ceph 2024-09-11T07:24:03.758 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'd0e6828a2016d48cf25ad84064e50742bb1c39b9'}} 2024-09-11T07:24:03.758 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'd0e6828a2016d48cf25ad84064e50742bb1c39b9'} 2024-09-11T07:24:03.758 INFO:teuthology.task.install:Using flavor: default 2024-09-11T07:24:03.764 DEBUG:teuthology.task.install:Package list is: {'deb': ['ceph', 'cephadm', 'ceph-mds', 'ceph-mgr', 'ceph-common', 'ceph-fuse', 'ceph-test', 'ceph-volume', 'radosgw', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'libcephfs2', 'libcephfs-dev', 'librados2', 'librbd1', 'rbd-fuse'], 'rpm': ['ceph-radosgw', 'ceph-test', 'ceph', 'ceph-base', 'cephadm', 'ceph-immutable-object-cache', 'ceph-mgr', 'ceph-mgr-dashboard', 'ceph-mgr-diskprediction-local', 'ceph-mgr-rook', 'ceph-mgr-cephadm', 'ceph-fuse', 'ceph-volume', 'librados-devel', 'libcephfs2', 'libcephfs-devel', 'librados2', 'librbd1', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'rbd-fuse', 'rbd-mirror', 'rbd-nbd']} 2024-09-11T07:24:03.764 INFO:teuthology.task.install:extra packages: [] 2024-09-11T07:24:03.764 DEBUG:teuthology.orchestra.run.smithi115:> sudo apt-key list | grep Ceph 2024-09-11T07:24:03.765 DEBUG:teuthology.orchestra.run.smithi150:> sudo apt-key list | grep Ceph 2024-09-11T07:24:03.765 DEBUG:teuthology.orchestra.run.smithi181:> sudo apt-key list | grep Ceph 2024-09-11T07:24:03.865 INFO:teuthology.orchestra.run.smithi115.stderr:Warning: apt-key output should not be parsed (stdout is not a terminal) 2024-09-11T07:24:03.872 INFO:teuthology.orchestra.run.smithi150.stderr:Warning: apt-key output should not be parsed (stdout is not a terminal) 2024-09-11T07:24:03.889 INFO:teuthology.orchestra.run.smithi181.stderr:Warning: apt-key output should not be parsed (stdout is not a terminal) 2024-09-11T07:24:03.927 INFO:teuthology.orchestra.run.smithi150.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-09-11T07:24:03.927 INFO:teuthology.orchestra.run.smithi150.stdout:uid [ unknown] Ceph.com (release key) 2024-09-11T07:24:03.929 INFO:teuthology.orchestra.run.smithi115.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-09-11T07:24:03.929 INFO:teuthology.orchestra.run.smithi115.stdout:uid [ unknown] Ceph.com (release key) 2024-09-11T07:24:03.929 INFO:teuthology.task.install.deb:Installing packages: ceph, cephadm, ceph-mds, ceph-mgr, ceph-common, ceph-fuse, ceph-test, ceph-volume, radosgw, python3-rados, python3-rgw, python3-cephfs, python3-rbd, libcephfs2, libcephfs-dev, librados2, librbd1, rbd-fuse on remote deb x86_64 2024-09-11T07:24:03.929 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F20.04%2Fx86_64&sha1=d0e6828a2016d48cf25ad84064e50742bb1c39b9 2024-09-11T07:24:03.931 INFO:teuthology.task.install.deb:Installing packages: ceph, cephadm, ceph-mds, ceph-mgr, ceph-common, ceph-fuse, ceph-test, ceph-volume, radosgw, python3-rados, python3-rgw, python3-cephfs, python3-rbd, libcephfs2, libcephfs-dev, librados2, librbd1, rbd-fuse on remote deb x86_64 2024-09-11T07:24:03.931 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F20.04%2Fx86_64&sha1=d0e6828a2016d48cf25ad84064e50742bb1c39b9 2024-09-11T07:24:03.949 INFO:teuthology.orchestra.run.smithi181.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-09-11T07:24:03.949 INFO:teuthology.orchestra.run.smithi181.stdout:uid [ unknown] Ceph.com (release key) 2024-09-11T07:24:03.950 INFO:teuthology.task.install.deb:Installing packages: ceph, cephadm, ceph-mds, ceph-mgr, ceph-common, ceph-fuse, ceph-test, ceph-volume, radosgw, python3-rados, python3-rgw, python3-cephfs, python3-rbd, libcephfs2, libcephfs-dev, librados2, librbd1, rbd-fuse on remote deb x86_64 2024-09-11T07:24:03.950 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F20.04%2Fx86_64&sha1=d0e6828a2016d48cf25ad84064e50742bb1c39b9 2024-09-11T07:24:04.080 INFO:teuthology.task.install.deb:Pulling from https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default/ 2024-09-11T07:24:04.080 INFO:teuthology.task.install.deb:Package version is 17.2.7-1623-gd0e6828a-1focal 2024-09-11T07:24:04.094 INFO:teuthology.task.install.deb:Pulling from https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default/ 2024-09-11T07:24:04.094 INFO:teuthology.task.install.deb:Package version is 17.2.7-1623-gd0e6828a-1focal 2024-09-11T07:24:04.100 INFO:teuthology.task.install.deb:Pulling from https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default/ 2024-09-11T07:24:04.100 INFO:teuthology.task.install.deb:Package version is 17.2.7-1623-gd0e6828a-1focal 2024-09-11T07:24:04.192 DEBUG:teuthology.orchestra.run.smithi150:> set -ex 2024-09-11T07:24:04.192 DEBUG:teuthology.orchestra.run.smithi150:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-09-11T07:24:04.202 DEBUG:teuthology.orchestra.run.smithi115:> set -ex 2024-09-11T07:24:04.203 DEBUG:teuthology.orchestra.run.smithi115:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-09-11T07:24:04.208 DEBUG:teuthology.orchestra.run.smithi150:> sudo apt-get update 2024-09-11T07:24:04.213 DEBUG:teuthology.orchestra.run.smithi181:> set -ex 2024-09-11T07:24:04.213 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-09-11T07:24:04.219 DEBUG:teuthology.orchestra.run.smithi115:> sudo apt-get update 2024-09-11T07:24:04.230 DEBUG:teuthology.orchestra.run.smithi181:> sudo apt-get update 2024-09-11T07:24:04.396 INFO:teuthology.orchestra.run.smithi150.stdout:Hit:1 http://security.ubuntu.com/ubuntu focal-security InRelease 2024-09-11T07:24:04.464 INFO:teuthology.orchestra.run.smithi150.stdout:Ign:2 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal InRelease 2024-09-11T07:24:04.465 INFO:teuthology.orchestra.run.smithi115.stdout:Ign:1 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal InRelease 2024-09-11T07:24:04.478 INFO:teuthology.orchestra.run.smithi181.stdout:Ign:1 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal InRelease 2024-09-11T07:24:04.486 INFO:teuthology.orchestra.run.smithi150.stdout:Get:3 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal Release [7,662 B] 2024-09-11T07:24:04.487 INFO:teuthology.orchestra.run.smithi115.stdout:Get:2 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal Release [7,662 B] 2024-09-11T07:24:04.500 INFO:teuthology.orchestra.run.smithi181.stdout:Get:2 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal Release [7,662 B] 2024-09-11T07:24:04.509 INFO:teuthology.orchestra.run.smithi150.stdout:Ign:4 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal Release.gpg 2024-09-11T07:24:04.511 INFO:teuthology.orchestra.run.smithi115.stdout:Ign:3 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal Release.gpg 2024-09-11T07:24:04.513 INFO:teuthology.orchestra.run.smithi150.stdout:Hit:5 http://archive.ubuntu.com/ubuntu focal InRelease 2024-09-11T07:24:04.524 INFO:teuthology.orchestra.run.smithi181.stdout:Ign:3 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal Release.gpg 2024-09-11T07:24:04.531 INFO:teuthology.orchestra.run.smithi150.stdout:Get:6 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main i386 Packages [3,379 B] 2024-09-11T07:24:04.540 INFO:teuthology.orchestra.run.smithi115.stdout:Hit:4 http://archive.ubuntu.com/ubuntu focal InRelease 2024-09-11T07:24:04.540 INFO:teuthology.orchestra.run.smithi115.stdout:Hit:5 http://security.ubuntu.com/ubuntu focal-security InRelease 2024-09-11T07:24:04.540 INFO:teuthology.orchestra.run.smithi115.stdout:Get:6 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main i386 Packages [3,379 B] 2024-09-11T07:24:04.550 INFO:teuthology.orchestra.run.smithi181.stdout:Hit:4 http://archive.ubuntu.com/ubuntu focal InRelease 2024-09-11T07:24:04.550 INFO:teuthology.orchestra.run.smithi181.stdout:Hit:5 http://security.ubuntu.com/ubuntu focal-security InRelease 2024-09-11T07:24:04.550 INFO:teuthology.orchestra.run.smithi181.stdout:Get:6 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main i386 Packages [3,379 B] 2024-09-11T07:24:04.569 INFO:teuthology.orchestra.run.smithi150.stdout:Get:7 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 Packages [17.4 kB] 2024-09-11T07:24:04.572 INFO:teuthology.orchestra.run.smithi115.stdout:Get:7 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 Packages [17.4 kB] 2024-09-11T07:24:04.583 INFO:teuthology.orchestra.run.smithi181.stdout:Get:7 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 Packages [17.4 kB] 2024-09-11T07:24:04.595 INFO:teuthology.orchestra.run.smithi150.stdout:Hit:8 http://archive.ubuntu.com/ubuntu focal-updates InRelease 2024-09-11T07:24:04.609 INFO:teuthology.orchestra.run.smithi115.stdout:Hit:8 http://archive.ubuntu.com/ubuntu focal-updates InRelease 2024-09-11T07:24:04.620 INFO:teuthology.orchestra.run.smithi181.stdout:Hit:8 http://archive.ubuntu.com/ubuntu focal-updates InRelease 2024-09-11T07:24:04.677 INFO:teuthology.orchestra.run.smithi150.stdout:Hit:9 http://archive.ubuntu.com/ubuntu focal-backports InRelease 2024-09-11T07:24:04.691 INFO:teuthology.orchestra.run.smithi115.stdout:Hit:9 http://archive.ubuntu.com/ubuntu focal-backports InRelease 2024-09-11T07:24:04.705 INFO:teuthology.orchestra.run.smithi181.stdout:Hit:9 http://archive.ubuntu.com/ubuntu focal-backports InRelease 2024-09-11T07:24:05.081 INFO:teuthology.orchestra.run.smithi150.stdout:Fetched 28.4 kB in 1s (43.0 kB/s) 2024-09-11T07:24:05.191 INFO:teuthology.orchestra.run.smithi115.stdout:Fetched 28.4 kB in 1s (37.4 kB/s) 2024-09-11T07:24:05.211 INFO:teuthology.orchestra.run.smithi181.stdout:Fetched 28.4 kB in 1s (36.8 kB/s) 2024-09-11T07:24:06.337 INFO:teuthology.orchestra.run.smithi115.stdout:Reading package lists... 2024-09-11T07:24:06.339 INFO:teuthology.orchestra.run.smithi150.stdout:Reading package lists... 2024-09-11T07:24:06.364 DEBUG:teuthology.orchestra.run.smithi115:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=17.2.7-1623-gd0e6828a-1focal cephadm=17.2.7-1623-gd0e6828a-1focal ceph-mds=17.2.7-1623-gd0e6828a-1focal ceph-mgr=17.2.7-1623-gd0e6828a-1focal ceph-common=17.2.7-1623-gd0e6828a-1focal ceph-fuse=17.2.7-1623-gd0e6828a-1focal ceph-test=17.2.7-1623-gd0e6828a-1focal ceph-volume=17.2.7-1623-gd0e6828a-1focal radosgw=17.2.7-1623-gd0e6828a-1focal python3-rados=17.2.7-1623-gd0e6828a-1focal python3-rgw=17.2.7-1623-gd0e6828a-1focal python3-cephfs=17.2.7-1623-gd0e6828a-1focal python3-rbd=17.2.7-1623-gd0e6828a-1focal libcephfs2=17.2.7-1623-gd0e6828a-1focal libcephfs-dev=17.2.7-1623-gd0e6828a-1focal librados2=17.2.7-1623-gd0e6828a-1focal librbd1=17.2.7-1623-gd0e6828a-1focal rbd-fuse=17.2.7-1623-gd0e6828a-1focal 2024-09-11T07:24:06.364 INFO:teuthology.orchestra.run.smithi181.stdout:Reading package lists... 2024-09-11T07:24:06.366 DEBUG:teuthology.orchestra.run.smithi150:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=17.2.7-1623-gd0e6828a-1focal cephadm=17.2.7-1623-gd0e6828a-1focal ceph-mds=17.2.7-1623-gd0e6828a-1focal ceph-mgr=17.2.7-1623-gd0e6828a-1focal ceph-common=17.2.7-1623-gd0e6828a-1focal ceph-fuse=17.2.7-1623-gd0e6828a-1focal ceph-test=17.2.7-1623-gd0e6828a-1focal ceph-volume=17.2.7-1623-gd0e6828a-1focal radosgw=17.2.7-1623-gd0e6828a-1focal python3-rados=17.2.7-1623-gd0e6828a-1focal python3-rgw=17.2.7-1623-gd0e6828a-1focal python3-cephfs=17.2.7-1623-gd0e6828a-1focal python3-rbd=17.2.7-1623-gd0e6828a-1focal libcephfs2=17.2.7-1623-gd0e6828a-1focal libcephfs-dev=17.2.7-1623-gd0e6828a-1focal librados2=17.2.7-1623-gd0e6828a-1focal librbd1=17.2.7-1623-gd0e6828a-1focal rbd-fuse=17.2.7-1623-gd0e6828a-1focal 2024-09-11T07:24:06.390 DEBUG:teuthology.orchestra.run.smithi181:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=17.2.7-1623-gd0e6828a-1focal cephadm=17.2.7-1623-gd0e6828a-1focal ceph-mds=17.2.7-1623-gd0e6828a-1focal ceph-mgr=17.2.7-1623-gd0e6828a-1focal ceph-common=17.2.7-1623-gd0e6828a-1focal ceph-fuse=17.2.7-1623-gd0e6828a-1focal ceph-test=17.2.7-1623-gd0e6828a-1focal ceph-volume=17.2.7-1623-gd0e6828a-1focal radosgw=17.2.7-1623-gd0e6828a-1focal python3-rados=17.2.7-1623-gd0e6828a-1focal python3-rgw=17.2.7-1623-gd0e6828a-1focal python3-cephfs=17.2.7-1623-gd0e6828a-1focal python3-rbd=17.2.7-1623-gd0e6828a-1focal libcephfs2=17.2.7-1623-gd0e6828a-1focal libcephfs-dev=17.2.7-1623-gd0e6828a-1focal librados2=17.2.7-1623-gd0e6828a-1focal librbd1=17.2.7-1623-gd0e6828a-1focal rbd-fuse=17.2.7-1623-gd0e6828a-1focal 2024-09-11T07:24:06.433 INFO:teuthology.orchestra.run.smithi115.stdout:Reading package lists... 2024-09-11T07:24:06.439 INFO:teuthology.orchestra.run.smithi150.stdout:Reading package lists... 2024-09-11T07:24:06.463 INFO:teuthology.orchestra.run.smithi181.stdout:Reading package lists... 2024-09-11T07:24:06.649 INFO:teuthology.orchestra.run.smithi115.stdout:Building dependency tree... 2024-09-11T07:24:06.650 INFO:teuthology.orchestra.run.smithi115.stdout:Reading state information... 2024-09-11T07:24:06.654 INFO:teuthology.orchestra.run.smithi150.stdout:Building dependency tree... 2024-09-11T07:24:06.654 INFO:teuthology.orchestra.run.smithi150.stdout:Reading state information... 2024-09-11T07:24:06.655 INFO:teuthology.orchestra.run.smithi181.stdout:Building dependency tree... 2024-09-11T07:24:06.656 INFO:teuthology.orchestra.run.smithi181.stdout:Reading state information... 2024-09-11T07:24:06.845 INFO:teuthology.orchestra.run.smithi150.stdout:The following packages were automatically installed and are no longer required: 2024-09-11T07:24:06.846 INFO:teuthology.orchestra.run.smithi150.stdout: libboost-iostreams1.71.0 libboost-thread1.71.0 2024-09-11T07:24:06.846 INFO:teuthology.orchestra.run.smithi150.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-11T07:24:06.846 INFO:teuthology.orchestra.run.smithi150.stdout:The following additional packages will be installed: 2024-09-11T07:24:06.846 INFO:teuthology.orchestra.run.smithi150.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-09-11T07:24:06.847 INFO:teuthology.orchestra.run.smithi150.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd fonts-mathjax jq 2024-09-11T07:24:06.847 INFO:teuthology.orchestra.run.smithi150.stdout: libdouble-conversion3 libjq1 libjs-mathjax libjs-sphinxdoc libjs-underscore 2024-09-11T07:24:06.847 INFO:teuthology.orchestra.run.smithi150.stdout: liblbfgsb0 liblttng-ust0 liblua5.3-0 liboath0 libonig5 libpcre2-16-0 2024-09-11T07:24:06.847 INFO:teuthology.orchestra.run.smithi150.stdout: libqt5core5a libqt5dbus5 libqt5network5 librabbitmq4 libradosstriper1 2024-09-11T07:24:06.848 INFO:teuthology.orchestra.run.smithi181.stdout:The following packages were automatically installed and are no longer required: 2024-09-11T07:24:06.849 INFO:teuthology.orchestra.run.smithi150.stdout: librdkafka1 librgw2 libsqlite3-mod-ceph libthrift-0.13.0 nvme-cli 2024-09-11T07:24:06.849 INFO:teuthology.orchestra.run.smithi150.stdout: python-natsort-doc python-pastedeploy-tpl python3-atomicwrites python3-attr 2024-09-11T07:24:06.849 INFO:teuthology.orchestra.run.smithi150.stdout: python3-bcrypt python3-blinker python3-bs4 python3-cachetools 2024-09-11T07:24:06.849 INFO:teuthology.orchestra.run.smithi150.stdout: python3-ceph-argparse python3-ceph-common python3-cherrypy3 2024-09-11T07:24:06.849 INFO:teuthology.orchestra.run.smithi150.stdout: python3-cryptography python3-decorator python3-google-auth python3-html5lib 2024-09-11T07:24:06.849 INFO:teuthology.orchestra.run.smithi150.stdout: python3-jinja2 python3-joblib python3-jwt python3-kubernetes 2024-09-11T07:24:06.849 INFO:teuthology.orchestra.run.smithi150.stdout: python3-logutils python3-lxml python3-mako python3-markupsafe 2024-09-11T07:24:06.850 INFO:teuthology.orchestra.run.smithi150.stdout: python3-natsort python3-oauthlib python3-openssl python3-packaging 2024-09-11T07:24:06.850 INFO:teuthology.orchestra.run.smithi150.stdout: python3-paste python3-pastedeploy python3-pastescript python3-pecan 2024-09-11T07:24:06.850 INFO:teuthology.orchestra.run.smithi150.stdout: python3-pluggy python3-prettytable python3-psutil python3-py python3-pyasn1 2024-09-11T07:24:06.850 INFO:teuthology.orchestra.run.smithi150.stdout: python3-pyasn1-modules python3-pyinotify python3-pytest python3-repoze.lru 2024-09-11T07:24:06.850 INFO:teuthology.orchestra.run.smithi150.stdout: python3-requests-oauthlib python3-routes python3-rsa python3-scipy 2024-09-11T07:24:06.850 INFO:teuthology.orchestra.run.smithi150.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-11T07:24:06.850 INFO:teuthology.orchestra.run.smithi150.stdout: python3-sklearn python3-sklearn-lib python3-soupsieve python3-tempita 2024-09-11T07:24:06.850 INFO:teuthology.orchestra.run.smithi150.stdout: python3-waitress python3-wcwidth python3-webencodings python3-webob 2024-09-11T07:24:06.850 INFO:teuthology.orchestra.run.smithi150.stdout: python3-websocket python3-webtest python3-werkzeug qttranslations5-l10n 2024-09-11T07:24:06.850 INFO:teuthology.orchestra.run.smithi150.stdout: socat xmlstarlet 2024-09-11T07:24:06.850 INFO:teuthology.orchestra.run.smithi150.stdout:Suggested packages: 2024-09-11T07:24:06.850 INFO:teuthology.orchestra.run.smithi150.stdout: python3-influxdb fonts-mathjax-extras fonts-stix libjs-mathjax-doc 2024-09-11T07:24:06.850 INFO:teuthology.orchestra.run.smithi150.stdout: python-attr-doc python-blinker-doc python-cryptography-doc 2024-09-11T07:24:06.850 INFO:teuthology.orchestra.run.smithi150.stdout: python3-cryptography-vectors python3-genshi python-jinja2-doc python3-crypto 2024-09-11T07:24:06.851 INFO:teuthology.orchestra.run.smithi150.stdout: python3-lxml-dbg python-lxml-doc python3-beaker python-mako-doc 2024-09-11T07:24:06.851 INFO:teuthology.orchestra.run.smithi150.stdout: python-openssl-doc python3-openssl-dbg httpd-wsgi libapache2-mod-python 2024-09-11T07:24:06.851 INFO:teuthology.orchestra.run.smithi150.stdout: libapache2-mod-scgi libjs-mochikit python-pecan-doc python-psutil-doc 2024-09-11T07:24:06.851 INFO:teuthology.orchestra.run.smithi150.stdout: subversion python-pyinotify-doc python-scipy-doc python3-dap 2024-09-11T07:24:06.851 INFO:teuthology.orchestra.run.smithi150.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-09-11T07:24:06.851 INFO:teuthology.orchestra.run.smithi150.stdout: python-webtest-doc python-werkzeug-doc python3-termcolor python3-watchdog 2024-09-11T07:24:06.851 INFO:teuthology.orchestra.run.smithi150.stdout:Recommended packages: 2024-09-11T07:24:06.851 INFO:teuthology.orchestra.run.smithi150.stdout: btrfs-tools 2024-09-11T07:24:06.855 INFO:teuthology.orchestra.run.smithi181.stdout: libboost-iostreams1.71.0 libboost-thread1.71.0 2024-09-11T07:24:06.855 INFO:teuthology.orchestra.run.smithi181.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-11T07:24:06.855 INFO:teuthology.orchestra.run.smithi181.stdout:The following additional packages will be installed: 2024-09-11T07:24:06.855 INFO:teuthology.orchestra.run.smithi181.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-09-11T07:24:06.856 INFO:teuthology.orchestra.run.smithi181.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd fonts-mathjax jq 2024-09-11T07:24:06.856 INFO:teuthology.orchestra.run.smithi181.stdout: libdouble-conversion3 libjq1 libjs-mathjax libjs-sphinxdoc libjs-underscore 2024-09-11T07:24:06.856 INFO:teuthology.orchestra.run.smithi181.stdout: liblbfgsb0 liblttng-ust0 liblua5.3-0 liboath0 libonig5 libpcre2-16-0 2024-09-11T07:24:06.856 INFO:teuthology.orchestra.run.smithi181.stdout: libqt5core5a libqt5dbus5 libqt5network5 librabbitmq4 libradosstriper1 2024-09-11T07:24:06.856 INFO:teuthology.orchestra.run.smithi181.stdout: librdkafka1 librgw2 libsqlite3-mod-ceph libthrift-0.13.0 nvme-cli 2024-09-11T07:24:06.856 INFO:teuthology.orchestra.run.smithi181.stdout: python-natsort-doc python-pastedeploy-tpl python3-atomicwrites python3-attr 2024-09-11T07:24:06.856 INFO:teuthology.orchestra.run.smithi181.stdout: python3-bcrypt python3-blinker python3-bs4 python3-cachetools 2024-09-11T07:24:06.856 INFO:teuthology.orchestra.run.smithi181.stdout: python3-ceph-argparse python3-ceph-common python3-cherrypy3 2024-09-11T07:24:06.856 INFO:teuthology.orchestra.run.smithi181.stdout: python3-cryptography python3-decorator python3-google-auth python3-html5lib 2024-09-11T07:24:06.856 INFO:teuthology.orchestra.run.smithi181.stdout: python3-jinja2 python3-joblib python3-jwt python3-kubernetes 2024-09-11T07:24:06.856 INFO:teuthology.orchestra.run.smithi181.stdout: python3-logutils python3-lxml python3-mako python3-markupsafe 2024-09-11T07:24:06.856 INFO:teuthology.orchestra.run.smithi181.stdout: python3-natsort python3-oauthlib python3-openssl python3-packaging 2024-09-11T07:24:06.856 INFO:teuthology.orchestra.run.smithi181.stdout: python3-paste python3-pastedeploy python3-pastescript python3-pecan 2024-09-11T07:24:06.856 INFO:teuthology.orchestra.run.smithi181.stdout: python3-pluggy python3-prettytable python3-psutil python3-py python3-pyasn1 2024-09-11T07:24:06.857 INFO:teuthology.orchestra.run.smithi181.stdout: python3-pyasn1-modules python3-pyinotify python3-pytest python3-repoze.lru 2024-09-11T07:24:06.857 INFO:teuthology.orchestra.run.smithi181.stdout: python3-requests-oauthlib python3-routes python3-rsa python3-scipy 2024-09-11T07:24:06.857 INFO:teuthology.orchestra.run.smithi181.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-11T07:24:06.857 INFO:teuthology.orchestra.run.smithi181.stdout: python3-sklearn python3-sklearn-lib python3-soupsieve python3-tempita 2024-09-11T07:24:06.857 INFO:teuthology.orchestra.run.smithi181.stdout: python3-waitress python3-wcwidth python3-webencodings python3-webob 2024-09-11T07:24:06.857 INFO:teuthology.orchestra.run.smithi181.stdout: python3-websocket python3-webtest python3-werkzeug qttranslations5-l10n 2024-09-11T07:24:06.857 INFO:teuthology.orchestra.run.smithi181.stdout: socat xmlstarlet 2024-09-11T07:24:06.857 INFO:teuthology.orchestra.run.smithi181.stdout:Suggested packages: 2024-09-11T07:24:06.857 INFO:teuthology.orchestra.run.smithi181.stdout: python3-influxdb fonts-mathjax-extras fonts-stix libjs-mathjax-doc 2024-09-11T07:24:06.857 INFO:teuthology.orchestra.run.smithi181.stdout: python-attr-doc python-blinker-doc python-cryptography-doc 2024-09-11T07:24:06.857 INFO:teuthology.orchestra.run.smithi181.stdout: python3-cryptography-vectors python3-genshi python-jinja2-doc python3-crypto 2024-09-11T07:24:06.857 INFO:teuthology.orchestra.run.smithi181.stdout: python3-lxml-dbg python-lxml-doc python3-beaker python-mako-doc 2024-09-11T07:24:06.857 INFO:teuthology.orchestra.run.smithi181.stdout: python-openssl-doc python3-openssl-dbg httpd-wsgi libapache2-mod-python 2024-09-11T07:24:06.857 INFO:teuthology.orchestra.run.smithi181.stdout: libapache2-mod-scgi libjs-mochikit python-pecan-doc python-psutil-doc 2024-09-11T07:24:06.858 INFO:teuthology.orchestra.run.smithi181.stdout: subversion python-pyinotify-doc python-scipy-doc python3-dap 2024-09-11T07:24:06.858 INFO:teuthology.orchestra.run.smithi181.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-09-11T07:24:06.858 INFO:teuthology.orchestra.run.smithi181.stdout: python-webtest-doc python-werkzeug-doc python3-termcolor python3-watchdog 2024-09-11T07:24:06.858 INFO:teuthology.orchestra.run.smithi181.stdout:Recommended packages: 2024-09-11T07:24:06.858 INFO:teuthology.orchestra.run.smithi181.stdout: btrfs-tools 2024-09-11T07:24:06.858 INFO:teuthology.orchestra.run.smithi115.stdout:The following packages were automatically installed and are no longer required: 2024-09-11T07:24:06.858 INFO:teuthology.orchestra.run.smithi115.stdout: libboost-iostreams1.71.0 libboost-thread1.71.0 2024-09-11T07:24:06.858 INFO:teuthology.orchestra.run.smithi115.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-11T07:24:06.858 INFO:teuthology.orchestra.run.smithi115.stdout:The following additional packages will be installed: 2024-09-11T07:24:06.858 INFO:teuthology.orchestra.run.smithi115.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-09-11T07:24:06.858 INFO:teuthology.orchestra.run.smithi115.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd fonts-mathjax jq 2024-09-11T07:24:06.858 INFO:teuthology.orchestra.run.smithi115.stdout: libdouble-conversion3 libjq1 libjs-mathjax libjs-sphinxdoc libjs-underscore 2024-09-11T07:24:06.859 INFO:teuthology.orchestra.run.smithi115.stdout: liblbfgsb0 liblttng-ust0 liblua5.3-0 liboath0 libonig5 libpcre2-16-0 2024-09-11T07:24:06.859 INFO:teuthology.orchestra.run.smithi115.stdout: libqt5core5a libqt5dbus5 libqt5network5 librabbitmq4 libradosstriper1 2024-09-11T07:24:06.859 INFO:teuthology.orchestra.run.smithi115.stdout: librdkafka1 librgw2 libsqlite3-mod-ceph libthrift-0.13.0 nvme-cli 2024-09-11T07:24:06.859 INFO:teuthology.orchestra.run.smithi115.stdout: python-natsort-doc python-pastedeploy-tpl python3-atomicwrites python3-attr 2024-09-11T07:24:06.859 INFO:teuthology.orchestra.run.smithi115.stdout: python3-bcrypt python3-blinker python3-bs4 python3-cachetools 2024-09-11T07:24:06.859 INFO:teuthology.orchestra.run.smithi115.stdout: python3-ceph-argparse python3-ceph-common python3-cherrypy3 2024-09-11T07:24:06.859 INFO:teuthology.orchestra.run.smithi115.stdout: python3-cryptography python3-decorator python3-google-auth python3-html5lib 2024-09-11T07:24:06.859 INFO:teuthology.orchestra.run.smithi115.stdout: python3-jinja2 python3-joblib python3-jwt python3-kubernetes 2024-09-11T07:24:06.859 INFO:teuthology.orchestra.run.smithi115.stdout: python3-logutils python3-lxml python3-mako python3-markupsafe 2024-09-11T07:24:06.859 INFO:teuthology.orchestra.run.smithi115.stdout: python3-natsort python3-oauthlib python3-openssl python3-packaging 2024-09-11T07:24:06.859 INFO:teuthology.orchestra.run.smithi115.stdout: python3-paste python3-pastedeploy python3-pastescript python3-pecan 2024-09-11T07:24:06.859 INFO:teuthology.orchestra.run.smithi115.stdout: python3-pluggy python3-prettytable python3-psutil python3-py python3-pyasn1 2024-09-11T07:24:06.859 INFO:teuthology.orchestra.run.smithi115.stdout: python3-pyasn1-modules python3-pyinotify python3-pytest python3-repoze.lru 2024-09-11T07:24:06.860 INFO:teuthology.orchestra.run.smithi115.stdout: python3-requests-oauthlib python3-routes python3-rsa python3-scipy 2024-09-11T07:24:06.860 INFO:teuthology.orchestra.run.smithi115.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-11T07:24:06.860 INFO:teuthology.orchestra.run.smithi115.stdout: python3-sklearn python3-sklearn-lib python3-soupsieve python3-tempita 2024-09-11T07:24:06.860 INFO:teuthology.orchestra.run.smithi115.stdout: python3-waitress python3-wcwidth python3-webencodings python3-webob 2024-09-11T07:24:06.860 INFO:teuthology.orchestra.run.smithi115.stdout: python3-websocket python3-webtest python3-werkzeug qttranslations5-l10n 2024-09-11T07:24:06.860 INFO:teuthology.orchestra.run.smithi115.stdout: socat xmlstarlet 2024-09-11T07:24:06.860 INFO:teuthology.orchestra.run.smithi115.stdout:Suggested packages: 2024-09-11T07:24:06.860 INFO:teuthology.orchestra.run.smithi115.stdout: python3-influxdb fonts-mathjax-extras fonts-stix libjs-mathjax-doc 2024-09-11T07:24:06.860 INFO:teuthology.orchestra.run.smithi115.stdout: python-attr-doc python-blinker-doc python-cryptography-doc 2024-09-11T07:24:06.860 INFO:teuthology.orchestra.run.smithi115.stdout: python3-cryptography-vectors python3-genshi python-jinja2-doc python3-crypto 2024-09-11T07:24:06.860 INFO:teuthology.orchestra.run.smithi115.stdout: python3-lxml-dbg python-lxml-doc python3-beaker python-mako-doc 2024-09-11T07:24:06.860 INFO:teuthology.orchestra.run.smithi115.stdout: python-openssl-doc python3-openssl-dbg httpd-wsgi libapache2-mod-python 2024-09-11T07:24:06.860 INFO:teuthology.orchestra.run.smithi115.stdout: libapache2-mod-scgi libjs-mochikit python-pecan-doc python-psutil-doc 2024-09-11T07:24:06.860 INFO:teuthology.orchestra.run.smithi115.stdout: subversion python-pyinotify-doc python-scipy-doc python3-dap 2024-09-11T07:24:06.861 INFO:teuthology.orchestra.run.smithi115.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-09-11T07:24:06.861 INFO:teuthology.orchestra.run.smithi115.stdout: python-webtest-doc python-werkzeug-doc python3-termcolor python3-watchdog 2024-09-11T07:24:06.861 INFO:teuthology.orchestra.run.smithi115.stdout:Recommended packages: 2024-09-11T07:24:06.861 INFO:teuthology.orchestra.run.smithi115.stdout: btrfs-tools 2024-09-11T07:24:06.971 INFO:teuthology.orchestra.run.smithi115.stdout:The following NEW packages will be installed: 2024-09-11T07:24:06.971 INFO:teuthology.orchestra.run.smithi115.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-09-11T07:24:06.971 INFO:teuthology.orchestra.run.smithi115.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-09-11T07:24:06.971 INFO:teuthology.orchestra.run.smithi115.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm 2024-09-11T07:24:06.975 INFO:teuthology.orchestra.run.smithi115.stdout: fonts-mathjax jq libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 2024-09-11T07:24:06.975 INFO:teuthology.orchestra.run.smithi115.stdout: libjs-mathjax libjs-sphinxdoc libjs-underscore liblbfgsb0 liblttng-ust0 2024-09-11T07:24:06.975 INFO:teuthology.orchestra.run.smithi115.stdout: liblua5.3-0 liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-09-11T07:24:06.975 INFO:teuthology.orchestra.run.smithi115.stdout: libqt5network5 librabbitmq4 libradosstriper1 librdkafka1 librgw2 2024-09-11T07:24:06.975 INFO:teuthology.orchestra.run.smithi115.stdout: libsqlite3-mod-ceph libthrift-0.13.0 nvme-cli python-natsort-doc 2024-09-11T07:24:06.975 INFO:teuthology.orchestra.run.smithi115.stdout: python-pastedeploy-tpl python3-atomicwrites python3-attr python3-bcrypt 2024-09-11T07:24:06.976 INFO:teuthology.orchestra.run.smithi115.stdout: python3-blinker python3-bs4 python3-cachetools python3-ceph-argparse 2024-09-11T07:24:06.976 INFO:teuthology.orchestra.run.smithi115.stdout: python3-ceph-common python3-cephfs python3-cherrypy3 python3-cryptography 2024-09-11T07:24:06.976 INFO:teuthology.orchestra.run.smithi115.stdout: python3-decorator python3-google-auth python3-html5lib python3-jinja2 2024-09-11T07:24:06.976 INFO:teuthology.orchestra.run.smithi115.stdout: python3-joblib python3-jwt python3-kubernetes python3-logutils python3-lxml 2024-09-11T07:24:06.976 INFO:teuthology.orchestra.run.smithi115.stdout: python3-mako python3-markupsafe python3-natsort python3-oauthlib 2024-09-11T07:24:06.976 INFO:teuthology.orchestra.run.smithi115.stdout: python3-openssl python3-packaging python3-paste python3-pastedeploy 2024-09-11T07:24:06.976 INFO:teuthology.orchestra.run.smithi115.stdout: python3-pastescript python3-pecan python3-pluggy python3-prettytable 2024-09-11T07:24:06.976 INFO:teuthology.orchestra.run.smithi115.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-11T07:24:06.976 INFO:teuthology.orchestra.run.smithi115.stdout: python3-pyinotify python3-pytest python3-rados python3-rbd 2024-09-11T07:24:06.976 INFO:teuthology.orchestra.run.smithi115.stdout: python3-repoze.lru python3-requests-oauthlib python3-rgw python3-routes 2024-09-11T07:24:06.976 INFO:teuthology.orchestra.run.smithi115.stdout: python3-rsa python3-scipy python3-simplegeneric python3-simplejson 2024-09-11T07:24:06.976 INFO:teuthology.orchestra.run.smithi115.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-soupsieve 2024-09-11T07:24:06.976 INFO:teuthology.orchestra.run.smithi115.stdout: python3-tempita python3-waitress python3-wcwidth python3-webencodings 2024-09-11T07:24:06.976 INFO:teuthology.orchestra.run.smithi115.stdout: python3-webob python3-websocket python3-webtest python3-werkzeug 2024-09-11T07:24:06.977 INFO:teuthology.orchestra.run.smithi115.stdout: qttranslations5-l10n radosgw rbd-fuse socat xmlstarlet 2024-09-11T07:24:06.977 INFO:teuthology.orchestra.run.smithi115.stdout:The following packages will be upgraded: 2024-09-11T07:24:06.977 INFO:teuthology.orchestra.run.smithi115.stdout: librados2 librbd1 2024-09-11T07:24:06.977 INFO:teuthology.orchestra.run.smithi150.stdout:The following NEW packages will be installed: 2024-09-11T07:24:06.977 INFO:teuthology.orchestra.run.smithi150.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-09-11T07:24:06.977 INFO:teuthology.orchestra.run.smithi150.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-09-11T07:24:06.977 INFO:teuthology.orchestra.run.smithi150.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm 2024-09-11T07:24:06.977 INFO:teuthology.orchestra.run.smithi150.stdout: fonts-mathjax jq libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 2024-09-11T07:24:06.977 INFO:teuthology.orchestra.run.smithi150.stdout: libjs-mathjax libjs-sphinxdoc libjs-underscore liblbfgsb0 liblttng-ust0 2024-09-11T07:24:06.978 INFO:teuthology.orchestra.run.smithi150.stdout: liblua5.3-0 liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-09-11T07:24:06.978 INFO:teuthology.orchestra.run.smithi150.stdout: libqt5network5 librabbitmq4 libradosstriper1 librdkafka1 librgw2 2024-09-11T07:24:06.978 INFO:teuthology.orchestra.run.smithi150.stdout: libsqlite3-mod-ceph libthrift-0.13.0 nvme-cli python-natsort-doc 2024-09-11T07:24:06.978 INFO:teuthology.orchestra.run.smithi150.stdout: python-pastedeploy-tpl python3-atomicwrites python3-attr python3-bcrypt 2024-09-11T07:24:06.978 INFO:teuthology.orchestra.run.smithi150.stdout: python3-blinker python3-bs4 python3-cachetools python3-ceph-argparse 2024-09-11T07:24:06.978 INFO:teuthology.orchestra.run.smithi150.stdout: python3-ceph-common python3-cephfs python3-cherrypy3 python3-cryptography 2024-09-11T07:24:06.978 INFO:teuthology.orchestra.run.smithi150.stdout: python3-decorator python3-google-auth python3-html5lib python3-jinja2 2024-09-11T07:24:06.978 INFO:teuthology.orchestra.run.smithi150.stdout: python3-joblib python3-jwt python3-kubernetes python3-logutils python3-lxml 2024-09-11T07:24:06.978 INFO:teuthology.orchestra.run.smithi150.stdout: python3-mako python3-markupsafe python3-natsort python3-oauthlib 2024-09-11T07:24:06.978 INFO:teuthology.orchestra.run.smithi150.stdout: python3-openssl python3-packaging python3-paste python3-pastedeploy 2024-09-11T07:24:06.978 INFO:teuthology.orchestra.run.smithi150.stdout: python3-pastescript python3-pecan python3-pluggy python3-prettytable 2024-09-11T07:24:06.978 INFO:teuthology.orchestra.run.smithi150.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-11T07:24:06.978 INFO:teuthology.orchestra.run.smithi150.stdout: python3-pyinotify python3-pytest python3-rados python3-rbd 2024-09-11T07:24:06.978 INFO:teuthology.orchestra.run.smithi150.stdout: python3-repoze.lru python3-requests-oauthlib python3-rgw python3-routes 2024-09-11T07:24:06.978 INFO:teuthology.orchestra.run.smithi150.stdout: python3-rsa python3-scipy python3-simplegeneric python3-simplejson 2024-09-11T07:24:06.979 INFO:teuthology.orchestra.run.smithi150.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-soupsieve 2024-09-11T07:24:06.979 INFO:teuthology.orchestra.run.smithi150.stdout: python3-tempita python3-waitress python3-wcwidth python3-webencodings 2024-09-11T07:24:06.979 INFO:teuthology.orchestra.run.smithi150.stdout: python3-webob python3-websocket python3-webtest python3-werkzeug 2024-09-11T07:24:06.979 INFO:teuthology.orchestra.run.smithi150.stdout: qttranslations5-l10n radosgw rbd-fuse socat xmlstarlet 2024-09-11T07:24:06.979 INFO:teuthology.orchestra.run.smithi150.stdout:The following packages will be upgraded: 2024-09-11T07:24:06.979 INFO:teuthology.orchestra.run.smithi150.stdout: librados2 librbd1 2024-09-11T07:24:06.981 INFO:teuthology.orchestra.run.smithi181.stdout:The following NEW packages will be installed: 2024-09-11T07:24:06.981 INFO:teuthology.orchestra.run.smithi181.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-09-11T07:24:06.981 INFO:teuthology.orchestra.run.smithi181.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-09-11T07:24:06.981 INFO:teuthology.orchestra.run.smithi181.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm 2024-09-11T07:24:06.981 INFO:teuthology.orchestra.run.smithi181.stdout: fonts-mathjax jq libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 2024-09-11T07:24:06.981 INFO:teuthology.orchestra.run.smithi181.stdout: libjs-mathjax libjs-sphinxdoc libjs-underscore liblbfgsb0 liblttng-ust0 2024-09-11T07:24:06.981 INFO:teuthology.orchestra.run.smithi181.stdout: liblua5.3-0 liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-09-11T07:24:06.981 INFO:teuthology.orchestra.run.smithi181.stdout: libqt5network5 librabbitmq4 libradosstriper1 librdkafka1 librgw2 2024-09-11T07:24:06.982 INFO:teuthology.orchestra.run.smithi181.stdout: libsqlite3-mod-ceph libthrift-0.13.0 nvme-cli python-natsort-doc 2024-09-11T07:24:06.982 INFO:teuthology.orchestra.run.smithi181.stdout: python-pastedeploy-tpl python3-atomicwrites python3-attr python3-bcrypt 2024-09-11T07:24:06.982 INFO:teuthology.orchestra.run.smithi181.stdout: python3-blinker python3-bs4 python3-cachetools python3-ceph-argparse 2024-09-11T07:24:06.982 INFO:teuthology.orchestra.run.smithi181.stdout: python3-ceph-common python3-cephfs python3-cherrypy3 python3-cryptography 2024-09-11T07:24:06.982 INFO:teuthology.orchestra.run.smithi181.stdout: python3-decorator python3-google-auth python3-html5lib python3-jinja2 2024-09-11T07:24:06.982 INFO:teuthology.orchestra.run.smithi181.stdout: python3-joblib python3-jwt python3-kubernetes python3-logutils python3-lxml 2024-09-11T07:24:06.982 INFO:teuthology.orchestra.run.smithi181.stdout: python3-mako python3-markupsafe python3-natsort python3-oauthlib 2024-09-11T07:24:06.982 INFO:teuthology.orchestra.run.smithi181.stdout: python3-openssl python3-packaging python3-paste python3-pastedeploy 2024-09-11T07:24:06.982 INFO:teuthology.orchestra.run.smithi181.stdout: python3-pastescript python3-pecan python3-pluggy python3-prettytable 2024-09-11T07:24:06.982 INFO:teuthology.orchestra.run.smithi181.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-11T07:24:06.982 INFO:teuthology.orchestra.run.smithi181.stdout: python3-pyinotify python3-pytest python3-rados python3-rbd 2024-09-11T07:24:06.982 INFO:teuthology.orchestra.run.smithi181.stdout: python3-repoze.lru python3-requests-oauthlib python3-rgw python3-routes 2024-09-11T07:24:06.982 INFO:teuthology.orchestra.run.smithi181.stdout: python3-rsa python3-scipy python3-simplegeneric python3-simplejson 2024-09-11T07:24:06.982 INFO:teuthology.orchestra.run.smithi181.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-soupsieve 2024-09-11T07:24:06.983 INFO:teuthology.orchestra.run.smithi181.stdout: python3-tempita python3-waitress python3-wcwidth python3-webencodings 2024-09-11T07:24:06.983 INFO:teuthology.orchestra.run.smithi181.stdout: python3-webob python3-websocket python3-webtest python3-werkzeug 2024-09-11T07:24:06.983 INFO:teuthology.orchestra.run.smithi181.stdout: qttranslations5-l10n radosgw rbd-fuse socat xmlstarlet 2024-09-11T07:24:06.983 INFO:teuthology.orchestra.run.smithi181.stdout:The following packages will be upgraded: 2024-09-11T07:24:06.983 INFO:teuthology.orchestra.run.smithi181.stdout: librados2 librbd1 2024-09-11T07:24:07.126 INFO:teuthology.orchestra.run.smithi115.stdout:2 upgraded, 108 newly installed, 0 to remove and 295 not upgraded. 2024-09-11T07:24:07.126 INFO:teuthology.orchestra.run.smithi115.stdout:Need to get 201 MB of archives. 2024-09-11T07:24:07.126 INFO:teuthology.orchestra.run.smithi115.stdout:After this operation, 938 MB of additional disk space will be used. 2024-09-11T07:24:07.126 INFO:teuthology.orchestra.run.smithi115.stdout:Get:1 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 librbd1 amd64 17.2.7-1623-gd0e6828a-1focal [3,507 kB] 2024-09-11T07:24:07.153 INFO:teuthology.orchestra.run.smithi150.stdout:2 upgraded, 108 newly installed, 0 to remove and 295 not upgraded. 2024-09-11T07:24:07.153 INFO:teuthology.orchestra.run.smithi150.stdout:Need to get 201 MB of archives. 2024-09-11T07:24:07.153 INFO:teuthology.orchestra.run.smithi150.stdout:After this operation, 938 MB of additional disk space will be used. 2024-09-11T07:24:07.153 INFO:teuthology.orchestra.run.smithi150.stdout:Get:1 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 librbd1 amd64 17.2.7-1623-gd0e6828a-1focal [3,507 kB] 2024-09-11T07:24:07.154 INFO:teuthology.orchestra.run.smithi181.stdout:2 upgraded, 108 newly installed, 0 to remove and 295 not upgraded. 2024-09-11T07:24:07.154 INFO:teuthology.orchestra.run.smithi181.stdout:Need to get 201 MB of archives. 2024-09-11T07:24:07.154 INFO:teuthology.orchestra.run.smithi181.stdout:After this operation, 938 MB of additional disk space will be used. 2024-09-11T07:24:07.154 INFO:teuthology.orchestra.run.smithi181.stdout:Get:1 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 librbd1 amd64 17.2.7-1623-gd0e6828a-1focal [3,507 kB] 2024-09-11T07:24:07.166 INFO:teuthology.orchestra.run.smithi150.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal/main amd64 liblttng-ust0 amd64 2.11.0-1 [160 kB] 2024-09-11T07:24:07.167 INFO:teuthology.orchestra.run.smithi115.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal/main amd64 liblttng-ust0 amd64 2.11.0-1 [160 kB] 2024-09-11T07:24:07.169 INFO:teuthology.orchestra.run.smithi181.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal/main amd64 liblttng-ust0 amd64 2.11.0-1 [160 kB] 2024-09-11T07:24:07.346 INFO:teuthology.orchestra.run.smithi115.stdout:Get:3 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 librados2 amd64 17.2.7-1623-gd0e6828a-1focal [3,560 kB] 2024-09-11T07:24:07.411 INFO:teuthology.orchestra.run.smithi115.stdout:Get:4 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 libcephfs2 amd64 17.2.7-1623-gd0e6828a-1focal [761 kB] 2024-09-11T07:24:07.438 INFO:teuthology.orchestra.run.smithi115.stdout:Get:5 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 python3-rados amd64 17.2.7-1623-gd0e6828a-1focal [414 kB] 2024-09-11T07:24:07.446 INFO:teuthology.orchestra.run.smithi115.stdout:Get:6 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 python3-ceph-argparse all 17.2.7-1623-gd0e6828a-1focal [22.6 kB] 2024-09-11T07:24:07.447 INFO:teuthology.orchestra.run.smithi115.stdout:Get:7 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 python3-cephfs amd64 17.2.7-1623-gd0e6828a-1focal [200 kB] 2024-09-11T07:24:07.456 INFO:teuthology.orchestra.run.smithi115.stdout:Get:8 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 python3-ceph-common all 17.2.7-1623-gd0e6828a-1focal [49.1 kB] 2024-09-11T07:24:07.458 INFO:teuthology.orchestra.run.smithi115.stdout:Get:9 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 python3-rbd amd64 17.2.7-1623-gd0e6828a-1focal [390 kB] 2024-09-11T07:24:07.478 INFO:teuthology.orchestra.run.smithi115.stdout:Get:10 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 librgw2 amd64 17.2.7-1623-gd0e6828a-1focal [5,637 kB] 2024-09-11T07:24:07.561 INFO:teuthology.orchestra.run.smithi115.stdout:Get:11 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-prettytable all 0.7.2-5 [20.1 kB] 2024-09-11T07:24:07.564 INFO:teuthology.orchestra.run.smithi150.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-prettytable all 0.7.2-5 [20.1 kB] 2024-09-11T07:24:07.569 INFO:teuthology.orchestra.run.smithi115.stdout:Get:12 http://archive.ubuntu.com/ubuntu focal/main amd64 liblua5.3-0 amd64 5.3.3-1.1ubuntu2 [116 kB] 2024-09-11T07:24:07.572 INFO:teuthology.orchestra.run.smithi150.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal/main amd64 liblua5.3-0 amd64 5.3.3-1.1ubuntu2 [116 kB] 2024-09-11T07:24:07.572 INFO:teuthology.orchestra.run.smithi181.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-prettytable all 0.7.2-5 [20.1 kB] 2024-09-11T07:24:07.579 INFO:teuthology.orchestra.run.smithi181.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal/main amd64 liblua5.3-0 amd64 5.3.3-1.1ubuntu2 [116 kB] 2024-09-11T07:24:07.613 INFO:teuthology.orchestra.run.smithi115.stdout:Get:13 http://archive.ubuntu.com/ubuntu focal/main amd64 librabbitmq4 amd64 0.10.0-1 [35.8 kB] 2024-09-11T07:24:07.613 INFO:teuthology.orchestra.run.smithi115.stdout:Get:14 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 python3-rgw amd64 17.2.7-1623-gd0e6828a-1focal [116 kB] 2024-09-11T07:24:07.615 INFO:teuthology.orchestra.run.smithi150.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal/main amd64 librabbitmq4 amd64 0.10.0-1 [35.8 kB] 2024-09-11T07:24:07.626 INFO:teuthology.orchestra.run.smithi115.stdout:Get:15 http://archive.ubuntu.com/ubuntu focal/universe amd64 librdkafka1 amd64 1.2.1-1ubuntu1 [410 kB] 2024-09-11T07:24:07.628 INFO:teuthology.orchestra.run.smithi181.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal/main amd64 librabbitmq4 amd64 0.10.0-1 [35.8 kB] 2024-09-11T07:24:07.628 INFO:teuthology.orchestra.run.smithi150.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal/universe amd64 librdkafka1 amd64 1.2.1-1ubuntu1 [410 kB] 2024-09-11T07:24:07.632 INFO:teuthology.orchestra.run.smithi115.stdout:Get:16 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 libradosstriper1 amd64 17.2.7-1623-gd0e6828a-1focal [479 kB] 2024-09-11T07:24:07.644 INFO:teuthology.orchestra.run.smithi181.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal/universe amd64 librdkafka1 amd64 1.2.1-1ubuntu1 [410 kB] 2024-09-11T07:24:07.670 INFO:teuthology.orchestra.run.smithi115.stdout:Get:17 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-common amd64 17.2.7-1623-gd0e6828a-1focal [27.0 MB] 2024-09-11T07:24:07.750 INFO:teuthology.orchestra.run.smithi115.stdout:Get:18 http://archive.ubuntu.com/ubuntu focal/universe amd64 libdouble-conversion3 amd64 3.1.5-4ubuntu1 [37.9 kB] 2024-09-11T07:24:07.753 INFO:teuthology.orchestra.run.smithi150.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal/universe amd64 libdouble-conversion3 amd64 3.1.5-4ubuntu1 [37.9 kB] 2024-09-11T07:24:07.756 INFO:teuthology.orchestra.run.smithi115.stdout:Get:19 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libpcre2-16-0 amd64 10.34-7ubuntu0.1 [181 kB] 2024-09-11T07:24:07.759 INFO:teuthology.orchestra.run.smithi150.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libpcre2-16-0 amd64 10.34-7ubuntu0.1 [181 kB] 2024-09-11T07:24:07.771 INFO:teuthology.orchestra.run.smithi181.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal/universe amd64 libdouble-conversion3 amd64 3.1.5-4ubuntu1 [37.9 kB] 2024-09-11T07:24:07.778 INFO:teuthology.orchestra.run.smithi181.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libpcre2-16-0 amd64 10.34-7ubuntu0.1 [181 kB] 2024-09-11T07:24:07.785 INFO:teuthology.orchestra.run.smithi115.stdout:Get:20 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 libqt5core5a amd64 5.12.8+dfsg-0ubuntu2.1 [2,006 kB] 2024-09-11T07:24:07.788 INFO:teuthology.orchestra.run.smithi150.stdout:Get:9 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 libqt5core5a amd64 5.12.8+dfsg-0ubuntu2.1 [2,006 kB] 2024-09-11T07:24:07.808 INFO:teuthology.orchestra.run.smithi181.stdout:Get:9 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 libqt5core5a amd64 5.12.8+dfsg-0ubuntu2.1 [2,006 kB] 2024-09-11T07:24:07.926 INFO:teuthology.orchestra.run.smithi115.stdout:Get:21 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 libqt5dbus5 amd64 5.12.8+dfsg-0ubuntu2.1 [208 kB] 2024-09-11T07:24:07.929 INFO:teuthology.orchestra.run.smithi150.stdout:Get:10 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 libqt5dbus5 amd64 5.12.8+dfsg-0ubuntu2.1 [208 kB] 2024-09-11T07:24:07.933 INFO:teuthology.orchestra.run.smithi115.stdout:Get:22 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 libqt5network5 amd64 5.12.8+dfsg-0ubuntu2.1 [673 kB] 2024-09-11T07:24:07.936 INFO:teuthology.orchestra.run.smithi150.stdout:Get:11 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 libqt5network5 amd64 5.12.8+dfsg-0ubuntu2.1 [673 kB] 2024-09-11T07:24:07.949 INFO:teuthology.orchestra.run.smithi181.stdout:Get:10 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 libqt5dbus5 amd64 5.12.8+dfsg-0ubuntu2.1 [208 kB] 2024-09-11T07:24:07.956 INFO:teuthology.orchestra.run.smithi115.stdout:Get:23 http://archive.ubuntu.com/ubuntu focal/universe amd64 libthrift-0.13.0 amd64 0.13.0-2build2 [249 kB] 2024-09-11T07:24:07.957 INFO:teuthology.orchestra.run.smithi181.stdout:Get:11 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 libqt5network5 amd64 5.12.8+dfsg-0ubuntu2.1 [673 kB] 2024-09-11T07:24:07.959 INFO:teuthology.orchestra.run.smithi150.stdout:Get:12 http://archive.ubuntu.com/ubuntu focal/universe amd64 libthrift-0.13.0 amd64 0.13.0-2build2 [249 kB] 2024-09-11T07:24:07.963 INFO:teuthology.orchestra.run.smithi115.stdout:Get:24 http://archive.ubuntu.com/ubuntu focal/main amd64 liboath0 amd64 2.6.1-1.3 [44.7 kB] 2024-09-11T07:24:07.964 INFO:teuthology.orchestra.run.smithi115.stdout:Get:25 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-cryptography amd64 2.8-3ubuntu0.3 [211 kB] 2024-09-11T07:24:07.966 INFO:teuthology.orchestra.run.smithi150.stdout:Get:13 http://archive.ubuntu.com/ubuntu focal/main amd64 liboath0 amd64 2.6.1-1.3 [44.7 kB] 2024-09-11T07:24:07.967 INFO:teuthology.orchestra.run.smithi150.stdout:Get:14 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-cryptography amd64 2.8-3ubuntu0.3 [211 kB] 2024-09-11T07:24:07.970 INFO:teuthology.orchestra.run.smithi115.stdout:Get:26 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-openssl all 19.0.0-1build1 [43.3 kB] 2024-09-11T07:24:07.971 INFO:teuthology.orchestra.run.smithi115.stdout:Get:27 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-packaging all 20.3-1 [26.8 kB] 2024-09-11T07:24:07.972 INFO:teuthology.orchestra.run.smithi115.stdout:Get:28 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-bcrypt amd64 3.1.7-2ubuntu1 [30.4 kB] 2024-09-11T07:24:07.973 INFO:teuthology.orchestra.run.smithi115.stdout:Get:29 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-cherrypy3 all 8.9.1-6 [160 kB] 2024-09-11T07:24:07.973 INFO:teuthology.orchestra.run.smithi150.stdout:Get:15 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-openssl all 19.0.0-1build1 [43.3 kB] 2024-09-11T07:24:07.974 INFO:teuthology.orchestra.run.smithi150.stdout:Get:16 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-packaging all 20.3-1 [26.8 kB] 2024-09-11T07:24:07.975 INFO:teuthology.orchestra.run.smithi150.stdout:Get:17 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-bcrypt amd64 3.1.7-2ubuntu1 [30.4 kB] 2024-09-11T07:24:07.976 INFO:teuthology.orchestra.run.smithi150.stdout:Get:18 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-cherrypy3 all 8.9.1-6 [160 kB] 2024-09-11T07:24:07.980 INFO:teuthology.orchestra.run.smithi181.stdout:Get:12 http://archive.ubuntu.com/ubuntu focal/universe amd64 libthrift-0.13.0 amd64 0.13.0-2build2 [249 kB] 2024-09-11T07:24:07.987 INFO:teuthology.orchestra.run.smithi181.stdout:Get:13 http://archive.ubuntu.com/ubuntu focal/main amd64 liboath0 amd64 2.6.1-1.3 [44.7 kB] 2024-09-11T07:24:07.988 INFO:teuthology.orchestra.run.smithi181.stdout:Get:14 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-cryptography amd64 2.8-3ubuntu0.3 [211 kB] 2024-09-11T07:24:07.995 INFO:teuthology.orchestra.run.smithi181.stdout:Get:15 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-openssl all 19.0.0-1build1 [43.3 kB] 2024-09-11T07:24:07.996 INFO:teuthology.orchestra.run.smithi181.stdout:Get:16 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-packaging all 20.3-1 [26.8 kB] 2024-09-11T07:24:07.996 INFO:teuthology.orchestra.run.smithi181.stdout:Get:17 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-bcrypt amd64 3.1.7-2ubuntu1 [30.4 kB] 2024-09-11T07:24:07.997 INFO:teuthology.orchestra.run.smithi181.stdout:Get:18 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-cherrypy3 all 8.9.1-6 [160 kB] 2024-09-11T07:24:08.008 INFO:teuthology.orchestra.run.smithi115.stdout:Get:30 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-natsort all 7.0.1-1 [29.2 kB] 2024-09-11T07:24:08.011 INFO:teuthology.orchestra.run.smithi150.stdout:Get:19 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-natsort all 7.0.1-1 [29.2 kB] 2024-09-11T07:24:08.031 INFO:teuthology.orchestra.run.smithi181.stdout:Get:19 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-natsort all 7.0.1-1 [29.2 kB] 2024-09-11T07:24:08.060 INFO:teuthology.orchestra.run.smithi115.stdout:Get:31 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-jwt all 1.7.1-2ubuntu2.1 [18.0 kB] 2024-09-11T07:24:08.060 INFO:teuthology.orchestra.run.smithi115.stdout:Get:32 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-logutils all 0.3.3-7 [17.3 kB] 2024-09-11T07:24:08.061 INFO:teuthology.orchestra.run.smithi115.stdout:Get:33 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-markupsafe amd64 1.1.0-1build2 [13.9 kB] 2024-09-11T07:24:08.062 INFO:teuthology.orchestra.run.smithi115.stdout:Get:34 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-mako all 1.1.0+ds1-1ubuntu2.1 [59.2 kB] 2024-09-11T07:24:08.062 INFO:teuthology.orchestra.run.smithi150.stdout:Get:20 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-jwt all 1.7.1-2ubuntu2.1 [18.0 kB] 2024-09-11T07:24:08.063 INFO:teuthology.orchestra.run.smithi150.stdout:Get:21 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-logutils all 0.3.3-7 [17.3 kB] 2024-09-11T07:24:08.064 INFO:teuthology.orchestra.run.smithi115.stdout:Get:35 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-09-11T07:24:08.064 INFO:teuthology.orchestra.run.smithi150.stdout:Get:22 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-markupsafe amd64 1.1.0-1build2 [13.9 kB] 2024-09-11T07:24:08.065 INFO:teuthology.orchestra.run.smithi115.stdout:Get:36 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-singledispatch all 3.4.0.3-2build1 [7,128 B] 2024-09-11T07:24:08.065 INFO:teuthology.orchestra.run.smithi115.stdout:Get:37 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-webob all 1:1.8.5-2ubuntu0.1 [84.5 kB] 2024-09-11T07:24:08.066 INFO:teuthology.orchestra.run.smithi150.stdout:Get:23 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-mako all 1.1.0+ds1-1ubuntu2.1 [59.2 kB] 2024-09-11T07:24:08.067 INFO:teuthology.orchestra.run.smithi150.stdout:Get:24 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-09-11T07:24:08.067 INFO:teuthology.orchestra.run.smithi115.stdout:Get:38 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-soupsieve all 1.9.5+dfsg-1 [29.1 kB] 2024-09-11T07:24:08.068 INFO:teuthology.orchestra.run.smithi150.stdout:Get:25 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-singledispatch all 3.4.0.3-2build1 [7,128 B] 2024-09-11T07:24:08.068 INFO:teuthology.orchestra.run.smithi150.stdout:Get:26 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-webob all 1:1.8.5-2ubuntu0.1 [84.5 kB] 2024-09-11T07:24:08.070 INFO:teuthology.orchestra.run.smithi150.stdout:Get:27 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-soupsieve all 1.9.5+dfsg-1 [29.1 kB] 2024-09-11T07:24:08.082 INFO:teuthology.orchestra.run.smithi181.stdout:Get:20 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-jwt all 1.7.1-2ubuntu2.1 [18.0 kB] 2024-09-11T07:24:08.083 INFO:teuthology.orchestra.run.smithi181.stdout:Get:21 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-logutils all 0.3.3-7 [17.3 kB] 2024-09-11T07:24:08.084 INFO:teuthology.orchestra.run.smithi181.stdout:Get:22 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-markupsafe amd64 1.1.0-1build2 [13.9 kB] 2024-09-11T07:24:08.085 INFO:teuthology.orchestra.run.smithi181.stdout:Get:23 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-mako all 1.1.0+ds1-1ubuntu2.1 [59.2 kB] 2024-09-11T07:24:08.087 INFO:teuthology.orchestra.run.smithi181.stdout:Get:24 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-09-11T07:24:08.088 INFO:teuthology.orchestra.run.smithi181.stdout:Get:25 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-singledispatch all 3.4.0.3-2build1 [7,128 B] 2024-09-11T07:24:08.088 INFO:teuthology.orchestra.run.smithi181.stdout:Get:26 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-webob all 1:1.8.5-2ubuntu0.1 [84.5 kB] 2024-09-11T07:24:08.089 INFO:teuthology.orchestra.run.smithi115.stdout:Get:39 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-bs4 all 4.8.2-1 [83.0 kB] 2024-09-11T07:24:08.090 INFO:teuthology.orchestra.run.smithi181.stdout:Get:27 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-soupsieve all 1.9.5+dfsg-1 [29.1 kB] 2024-09-11T07:24:08.092 INFO:teuthology.orchestra.run.smithi150.stdout:Get:28 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-bs4 all 4.8.2-1 [83.0 kB] 2024-09-11T07:24:08.113 INFO:teuthology.orchestra.run.smithi181.stdout:Get:28 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-bs4 all 4.8.2-1 [83.0 kB] 2024-09-11T07:24:08.150 INFO:teuthology.orchestra.run.smithi115.stdout:Get:40 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-waitress all 1.4.1-1ubuntu0.1 [81.4 kB] 2024-09-11T07:24:08.152 INFO:teuthology.orchestra.run.smithi150.stdout:Get:29 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-waitress all 1.4.1-1ubuntu0.1 [81.4 kB] 2024-09-11T07:24:08.153 INFO:teuthology.orchestra.run.smithi115.stdout:Get:41 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-tempita all 0.5.2-6 [14.8 kB] 2024-09-11T07:24:08.154 INFO:teuthology.orchestra.run.smithi115.stdout:Get:42 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-paste all 3.4.0+dfsg1-1 [456 kB] 2024-09-11T07:24:08.154 INFO:teuthology.orchestra.run.smithi150.stdout:Get:30 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-tempita all 0.5.2-6 [14.8 kB] 2024-09-11T07:24:08.155 INFO:teuthology.orchestra.run.smithi150.stdout:Get:31 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-paste all 3.4.0+dfsg1-1 [456 kB] 2024-09-11T07:24:08.163 INFO:teuthology.orchestra.run.smithi115.stdout:Get:43 http://archive.ubuntu.com/ubuntu focal/main amd64 python-pastedeploy-tpl all 2.1.0-1 [5,016 B] 2024-09-11T07:24:08.163 INFO:teuthology.orchestra.run.smithi115.stdout:Get:44 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-pastedeploy all 2.1.0-1 [26.5 kB] 2024-09-11T07:24:08.163 INFO:teuthology.orchestra.run.smithi115.stdout:Get:45 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-webtest all 2.0.32-2 [28.2 kB] 2024-09-11T07:24:08.164 INFO:teuthology.orchestra.run.smithi115.stdout:Get:46 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-pecan all 1.3.3-3ubuntu1 [85.8 kB] 2024-09-11T07:24:08.164 INFO:teuthology.orchestra.run.smithi150.stdout:Get:32 http://archive.ubuntu.com/ubuntu focal/main amd64 python-pastedeploy-tpl all 2.1.0-1 [5,016 B] 2024-09-11T07:24:08.165 INFO:teuthology.orchestra.run.smithi150.stdout:Get:33 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-pastedeploy all 2.1.0-1 [26.5 kB] 2024-09-11T07:24:08.165 INFO:teuthology.orchestra.run.smithi150.stdout:Get:34 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-webtest all 2.0.32-2 [28.2 kB] 2024-09-11T07:24:08.166 INFO:teuthology.orchestra.run.smithi150.stdout:Get:35 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-pecan all 1.3.3-3ubuntu1 [85.8 kB] 2024-09-11T07:24:08.171 INFO:teuthology.orchestra.run.smithi115.stdout:Get:47 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-werkzeug all 0.16.1+dfsg1-2ubuntu0.2 [183 kB] 2024-09-11T07:24:08.172 INFO:teuthology.orchestra.run.smithi181.stdout:Get:29 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-waitress all 1.4.1-1ubuntu0.1 [81.4 kB] 2024-09-11T07:24:08.173 INFO:teuthology.orchestra.run.smithi115.stdout:Get:48 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-jinja2 all 2.10.1-2ubuntu0.3 [96.0 kB] 2024-09-11T07:24:08.174 INFO:teuthology.orchestra.run.smithi150.stdout:Get:36 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-werkzeug all 0.16.1+dfsg1-2ubuntu0.2 [183 kB] 2024-09-11T07:24:08.175 INFO:teuthology.orchestra.run.smithi181.stdout:Get:30 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-tempita all 0.5.2-6 [14.8 kB] 2024-09-11T07:24:08.176 INFO:teuthology.orchestra.run.smithi181.stdout:Get:31 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-paste all 3.4.0+dfsg1-1 [456 kB] 2024-09-11T07:24:08.176 INFO:teuthology.orchestra.run.smithi150.stdout:Get:37 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-jinja2 all 2.10.1-2ubuntu0.3 [96.0 kB] 2024-09-11T07:24:08.185 INFO:teuthology.orchestra.run.smithi181.stdout:Get:32 http://archive.ubuntu.com/ubuntu focal/main amd64 python-pastedeploy-tpl all 2.1.0-1 [5,016 B] 2024-09-11T07:24:08.185 INFO:teuthology.orchestra.run.smithi181.stdout:Get:33 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-pastedeploy all 2.1.0-1 [26.5 kB] 2024-09-11T07:24:08.186 INFO:teuthology.orchestra.run.smithi181.stdout:Get:34 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-webtest all 2.0.32-2 [28.2 kB] 2024-09-11T07:24:08.186 INFO:teuthology.orchestra.run.smithi181.stdout:Get:35 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-pecan all 1.3.3-3ubuntu1 [85.8 kB] 2024-09-11T07:24:08.195 INFO:teuthology.orchestra.run.smithi181.stdout:Get:36 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-werkzeug all 0.16.1+dfsg1-2ubuntu0.2 [183 kB] 2024-09-11T07:24:08.198 INFO:teuthology.orchestra.run.smithi181.stdout:Get:37 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-jinja2 all 2.10.1-2ubuntu0.3 [96.0 kB] 2024-09-11T07:24:08.251 INFO:teuthology.orchestra.run.smithi115.stdout:Get:49 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-09-11T07:24:08.252 INFO:teuthology.orchestra.run.smithi115.stdout:Get:50 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libjs-underscore all 1.9.1~dfsg-1ubuntu0.20.04.1 [99.5 kB] 2024-09-11T07:24:08.254 INFO:teuthology.orchestra.run.smithi115.stdout:Get:51 http://archive.ubuntu.com/ubuntu focal/main amd64 libjs-sphinxdoc all 1.8.5-7ubuntu3 [97.1 kB] 2024-09-11T07:24:08.254 INFO:teuthology.orchestra.run.smithi150.stdout:Get:38 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-09-11T07:24:08.255 INFO:teuthology.orchestra.run.smithi150.stdout:Get:39 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libjs-underscore all 1.9.1~dfsg-1ubuntu0.20.04.1 [99.5 kB] 2024-09-11T07:24:08.256 INFO:teuthology.orchestra.run.smithi115.stdout:Get:52 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-routes all 2.4.1-2 [88.1 kB] 2024-09-11T07:24:08.257 INFO:teuthology.orchestra.run.smithi150.stdout:Get:40 http://archive.ubuntu.com/ubuntu focal/main amd64 libjs-sphinxdoc all 1.8.5-7ubuntu3 [97.1 kB] 2024-09-11T07:24:08.258 INFO:teuthology.orchestra.run.smithi115.stdout:Get:53 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-decorator all 4.4.2-0ubuntu1 [10.3 kB] 2024-09-11T07:24:08.258 INFO:teuthology.orchestra.run.smithi115.stdout:Get:54 http://archive.ubuntu.com/ubuntu focal/universe amd64 liblbfgsb0 amd64 3.0+dfsg.3-7build1 [29.5 kB] 2024-09-11T07:24:08.260 INFO:teuthology.orchestra.run.smithi150.stdout:Get:41 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-routes all 2.4.1-2 [88.1 kB] 2024-09-11T07:24:08.260 INFO:teuthology.orchestra.run.smithi115.stdout:Get:55 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-scipy amd64 1.3.3-3build1 [11.1 MB] 2024-09-11T07:24:08.261 INFO:teuthology.orchestra.run.smithi150.stdout:Get:42 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-decorator all 4.4.2-0ubuntu1 [10.3 kB] 2024-09-11T07:24:08.262 INFO:teuthology.orchestra.run.smithi150.stdout:Get:43 http://archive.ubuntu.com/ubuntu focal/universe amd64 liblbfgsb0 amd64 3.0+dfsg.3-7build1 [29.5 kB] 2024-09-11T07:24:08.263 INFO:teuthology.orchestra.run.smithi150.stdout:Get:44 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-scipy amd64 1.3.3-3build1 [11.1 MB] 2024-09-11T07:24:08.276 INFO:teuthology.orchestra.run.smithi181.stdout:Get:38 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-09-11T07:24:08.276 INFO:teuthology.orchestra.run.smithi181.stdout:Get:39 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libjs-underscore all 1.9.1~dfsg-1ubuntu0.20.04.1 [99.5 kB] 2024-09-11T07:24:08.279 INFO:teuthology.orchestra.run.smithi181.stdout:Get:40 http://archive.ubuntu.com/ubuntu focal/main amd64 libjs-sphinxdoc all 1.8.5-7ubuntu3 [97.1 kB] 2024-09-11T07:24:08.282 INFO:teuthology.orchestra.run.smithi181.stdout:Get:41 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-routes all 2.4.1-2 [88.1 kB] 2024-09-11T07:24:08.284 INFO:teuthology.orchestra.run.smithi181.stdout:Get:42 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-decorator all 4.4.2-0ubuntu1 [10.3 kB] 2024-09-11T07:24:08.284 INFO:teuthology.orchestra.run.smithi181.stdout:Get:43 http://archive.ubuntu.com/ubuntu focal/universe amd64 liblbfgsb0 amd64 3.0+dfsg.3-7build1 [29.5 kB] 2024-09-11T07:24:08.286 INFO:teuthology.orchestra.run.smithi181.stdout:Get:44 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-scipy amd64 1.3.3-3build1 [11.1 MB] 2024-09-11T07:24:08.538 INFO:teuthology.orchestra.run.smithi150.stdout:Get:45 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-sklearn-lib amd64 0.22.2.post1+dfsg-5 [2,358 kB] 2024-09-11T07:24:08.606 INFO:teuthology.orchestra.run.smithi115.stdout:Get:56 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-sklearn-lib amd64 0.22.2.post1+dfsg-5 [2,358 kB] 2024-09-11T07:24:08.606 INFO:teuthology.orchestra.run.smithi115.stdout:Get:57 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-base amd64 17.2.7-1623-gd0e6828a-1focal [5,179 kB] 2024-09-11T07:24:08.613 INFO:teuthology.orchestra.run.smithi150.stdout:Get:46 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-joblib all 0.14.0-3 [192 kB] 2024-09-11T07:24:08.615 INFO:teuthology.orchestra.run.smithi150.stdout:Get:47 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-sklearn all 0.22.2.post1+dfsg-5 [1,773 kB] 2024-09-11T07:24:08.629 INFO:teuthology.orchestra.run.smithi115.stdout:Get:58 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-joblib all 0.14.0-3 [192 kB] 2024-09-11T07:24:08.630 INFO:teuthology.orchestra.run.smithi115.stdout:Get:59 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-sklearn all 0.22.2.post1+dfsg-5 [1,773 kB] 2024-09-11T07:24:08.656 INFO:teuthology.orchestra.run.smithi181.stdout:Get:45 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-sklearn-lib amd64 0.22.2.post1+dfsg-5 [2,358 kB] 2024-09-11T07:24:08.679 INFO:teuthology.orchestra.run.smithi181.stdout:Get:46 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-joblib all 0.14.0-3 [192 kB] 2024-09-11T07:24:08.680 INFO:teuthology.orchestra.run.smithi181.stdout:Get:47 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-sklearn all 0.22.2.post1+dfsg-5 [1,773 kB] 2024-09-11T07:24:08.688 INFO:teuthology.orchestra.run.smithi150.stdout:Get:48 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-cachetools all 4.0.0-1 [9,820 B] 2024-09-11T07:24:08.688 INFO:teuthology.orchestra.run.smithi150.stdout:Get:49 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-pyasn1 all 0.4.2-3build1 [46.7 kB] 2024-09-11T07:24:08.688 INFO:teuthology.orchestra.run.smithi150.stdout:Get:50 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-pyasn1-modules all 0.2.1-0.2build1 [32.9 kB] 2024-09-11T07:24:08.689 INFO:teuthology.orchestra.run.smithi150.stdout:Get:51 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-rsa all 4.0-3 [24.7 kB] 2024-09-11T07:24:08.690 INFO:teuthology.orchestra.run.smithi150.stdout:Get:52 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-google-auth all 1.5.1-2 [35.6 kB] 2024-09-11T07:24:08.690 INFO:teuthology.orchestra.run.smithi150.stdout:Get:53 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-blinker all 1.4+dfsg1-0.3ubuntu1 [13.2 kB] 2024-09-11T07:24:08.690 INFO:teuthology.orchestra.run.smithi150.stdout:Get:54 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-oauthlib all 3.1.0-1ubuntu2 [84.8 kB] 2024-09-11T07:24:08.712 INFO:teuthology.orchestra.run.smithi115.stdout:Get:60 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-cachetools all 4.0.0-1 [9,820 B] 2024-09-11T07:24:08.712 INFO:teuthology.orchestra.run.smithi115.stdout:Get:61 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-pyasn1 all 0.4.2-3build1 [46.7 kB] 2024-09-11T07:24:08.712 INFO:teuthology.orchestra.run.smithi115.stdout:Get:62 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-pyasn1-modules all 0.2.1-0.2build1 [32.9 kB] 2024-09-11T07:24:08.713 INFO:teuthology.orchestra.run.smithi115.stdout:Get:63 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-rsa all 4.0-3 [24.7 kB] 2024-09-11T07:24:08.714 INFO:teuthology.orchestra.run.smithi115.stdout:Get:64 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-google-auth all 1.5.1-2 [35.6 kB] 2024-09-11T07:24:08.714 INFO:teuthology.orchestra.run.smithi115.stdout:Get:65 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-blinker all 1.4+dfsg1-0.3ubuntu1 [13.2 kB] 2024-09-11T07:24:08.714 INFO:teuthology.orchestra.run.smithi115.stdout:Get:66 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-oauthlib all 3.1.0-1ubuntu2 [84.8 kB] 2024-09-11T07:24:08.748 INFO:teuthology.orchestra.run.smithi150.stdout:Get:55 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-requests-oauthlib all 1.0.0-1.1build1 [16.8 kB] 2024-09-11T07:24:08.749 INFO:teuthology.orchestra.run.smithi150.stdout:Get:56 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-websocket all 0.53.0-2ubuntu1 [32.3 kB] 2024-09-11T07:24:08.759 INFO:teuthology.orchestra.run.smithi181.stdout:Get:48 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-cachetools all 4.0.0-1 [9,820 B] 2024-09-11T07:24:08.759 INFO:teuthology.orchestra.run.smithi181.stdout:Get:49 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-pyasn1 all 0.4.2-3build1 [46.7 kB] 2024-09-11T07:24:08.760 INFO:teuthology.orchestra.run.smithi181.stdout:Get:50 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-pyasn1-modules all 0.2.1-0.2build1 [32.9 kB] 2024-09-11T07:24:08.760 INFO:teuthology.orchestra.run.smithi181.stdout:Get:51 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-rsa all 4.0-3 [24.7 kB] 2024-09-11T07:24:08.761 INFO:teuthology.orchestra.run.smithi181.stdout:Get:52 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-google-auth all 1.5.1-2 [35.6 kB] 2024-09-11T07:24:08.762 INFO:teuthology.orchestra.run.smithi181.stdout:Get:53 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-blinker all 1.4+dfsg1-0.3ubuntu1 [13.2 kB] 2024-09-11T07:24:08.762 INFO:teuthology.orchestra.run.smithi181.stdout:Get:54 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-oauthlib all 3.1.0-1ubuntu2 [84.8 kB] 2024-09-11T07:24:08.770 INFO:teuthology.orchestra.run.smithi115.stdout:Get:67 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-requests-oauthlib all 1.0.0-1.1build1 [16.8 kB] 2024-09-11T07:24:08.771 INFO:teuthology.orchestra.run.smithi115.stdout:Get:68 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-websocket all 0.53.0-2ubuntu1 [32.3 kB] 2024-09-11T07:24:08.804 INFO:teuthology.orchestra.run.smithi115.stdout:Get:69 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-mgr-modules-core all 17.2.7-1623-gd0e6828a-1focal [223 kB] 2024-09-11T07:24:08.820 INFO:teuthology.orchestra.run.smithi181.stdout:Get:55 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-requests-oauthlib all 1.0.0-1.1build1 [16.8 kB] 2024-09-11T07:24:08.820 INFO:teuthology.orchestra.run.smithi181.stdout:Get:56 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-websocket all 0.53.0-2ubuntu1 [32.3 kB] 2024-09-11T07:24:08.822 INFO:teuthology.orchestra.run.smithi115.stdout:Get:70 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 libsqlite3-mod-ceph amd64 17.2.7-1623-gd0e6828a-1focal [157 kB] 2024-09-11T07:24:08.830 INFO:teuthology.orchestra.run.smithi150.stdout:Get:57 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-kubernetes all 7.0.0~a1-2 [271 kB] 2024-09-11T07:24:08.835 INFO:teuthology.orchestra.run.smithi150.stdout:Get:58 http://archive.ubuntu.com/ubuntu focal/universe amd64 libonig5 amd64 6.9.4-1 [142 kB] 2024-09-11T07:24:08.838 INFO:teuthology.orchestra.run.smithi150.stdout:Get:59 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 libjq1 amd64 1.6-1ubuntu0.20.04.1 [121 kB] 2024-09-11T07:24:08.839 INFO:teuthology.orchestra.run.smithi115.stdout:Get:71 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-mgr amd64 17.2.7-1623-gd0e6828a-1focal [1,594 kB] 2024-09-11T07:24:08.844 INFO:teuthology.orchestra.run.smithi150.stdout:Get:60 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 jq amd64 1.6-1ubuntu0.20.04.1 [50.2 kB] 2024-09-11T07:24:08.844 INFO:teuthology.orchestra.run.smithi150.stdout:Get:61 http://archive.ubuntu.com/ubuntu focal/main amd64 socat amd64 1.7.3.3-2 [323 kB] 2024-09-11T07:24:08.846 INFO:teuthology.orchestra.run.smithi150.stdout:Get:62 http://archive.ubuntu.com/ubuntu focal/universe amd64 xmlstarlet amd64 1.6.1-2build1 [267 kB] 2024-09-11T07:24:08.848 INFO:teuthology.orchestra.run.smithi150.stdout:Get:63 http://archive.ubuntu.com/ubuntu focal/universe amd64 fonts-mathjax all 2.7.4+dfsg-1 [2,208 kB] 2024-09-11T07:24:08.851 INFO:teuthology.orchestra.run.smithi115.stdout:Get:72 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-kubernetes all 7.0.0~a1-2 [271 kB] 2024-09-11T07:24:08.856 INFO:teuthology.orchestra.run.smithi115.stdout:Get:73 http://archive.ubuntu.com/ubuntu focal/universe amd64 libonig5 amd64 6.9.4-1 [142 kB] 2024-09-11T07:24:08.858 INFO:teuthology.orchestra.run.smithi115.stdout:Get:74 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-mon amd64 17.2.7-1623-gd0e6828a-1focal [4,686 kB] 2024-09-11T07:24:08.859 INFO:teuthology.orchestra.run.smithi115.stdout:Get:75 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 libjq1 amd64 1.6-1ubuntu0.20.04.1 [121 kB] 2024-09-11T07:24:08.862 INFO:teuthology.orchestra.run.smithi115.stdout:Get:76 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 jq amd64 1.6-1ubuntu0.20.04.1 [50.2 kB] 2024-09-11T07:24:08.863 INFO:teuthology.orchestra.run.smithi115.stdout:Get:77 http://archive.ubuntu.com/ubuntu focal/main amd64 socat amd64 1.7.3.3-2 [323 kB] 2024-09-11T07:24:08.866 INFO:teuthology.orchestra.run.smithi115.stdout:Get:78 http://archive.ubuntu.com/ubuntu focal/universe amd64 xmlstarlet amd64 1.6.1-2build1 [267 kB] 2024-09-11T07:24:08.868 INFO:teuthology.orchestra.run.smithi115.stdout:Get:79 http://archive.ubuntu.com/ubuntu focal/universe amd64 fonts-mathjax all 2.7.4+dfsg-1 [2,208 kB] 2024-09-11T07:24:08.901 INFO:teuthology.orchestra.run.smithi181.stdout:Get:57 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-kubernetes all 7.0.0~a1-2 [271 kB] 2024-09-11T07:24:08.905 INFO:teuthology.orchestra.run.smithi181.stdout:Get:58 http://archive.ubuntu.com/ubuntu focal/universe amd64 libonig5 amd64 6.9.4-1 [142 kB] 2024-09-11T07:24:08.908 INFO:teuthology.orchestra.run.smithi181.stdout:Get:59 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 libjq1 amd64 1.6-1ubuntu0.20.04.1 [121 kB] 2024-09-11T07:24:08.911 INFO:teuthology.orchestra.run.smithi181.stdout:Get:60 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 jq amd64 1.6-1ubuntu0.20.04.1 [50.2 kB] 2024-09-11T07:24:08.912 INFO:teuthology.orchestra.run.smithi181.stdout:Get:61 http://archive.ubuntu.com/ubuntu focal/main amd64 socat amd64 1.7.3.3-2 [323 kB] 2024-09-11T07:24:08.915 INFO:teuthology.orchestra.run.smithi181.stdout:Get:62 http://archive.ubuntu.com/ubuntu focal/universe amd64 xmlstarlet amd64 1.6.1-2build1 [267 kB] 2024-09-11T07:24:08.918 INFO:teuthology.orchestra.run.smithi181.stdout:Get:63 http://archive.ubuntu.com/ubuntu focal/universe amd64 fonts-mathjax all 2.7.4+dfsg-1 [2,208 kB] 2024-09-11T07:24:08.922 INFO:teuthology.orchestra.run.smithi150.stdout:Get:64 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 nvme-cli amd64 1.9-1ubuntu0.1 [283 kB] 2024-09-11T07:24:08.925 INFO:teuthology.orchestra.run.smithi150.stdout:Get:65 http://archive.ubuntu.com/ubuntu focal/universe amd64 libjs-mathjax all 2.7.4+dfsg-1 [5,654 kB] 2024-09-11T07:24:08.933 INFO:teuthology.orchestra.run.smithi115.stdout:Get:80 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-osd amd64 17.2.7-1623-gd0e6828a-1focal [23.1 MB] 2024-09-11T07:24:08.939 INFO:teuthology.orchestra.run.smithi115.stdout:Get:81 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 nvme-cli amd64 1.9-1ubuntu0.1 [283 kB] 2024-09-11T07:24:08.943 INFO:teuthology.orchestra.run.smithi115.stdout:Get:82 http://archive.ubuntu.com/ubuntu focal/universe amd64 libjs-mathjax all 2.7.4+dfsg-1 [5,654 kB] 2024-09-11T07:24:08.992 INFO:teuthology.orchestra.run.smithi181.stdout:Get:64 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 nvme-cli amd64 1.9-1ubuntu0.1 [283 kB] 2024-09-11T07:24:08.997 INFO:teuthology.orchestra.run.smithi181.stdout:Get:65 http://archive.ubuntu.com/ubuntu focal/universe amd64 libjs-mathjax all 2.7.4+dfsg-1 [5,654 kB] 2024-09-11T07:24:09.090 INFO:teuthology.orchestra.run.smithi150.stdout:Get:66 http://archive.ubuntu.com/ubuntu focal/universe amd64 python-natsort-doc all 7.0.1-1 [103 kB] 2024-09-11T07:24:09.091 INFO:teuthology.orchestra.run.smithi150.stdout:Get:67 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-atomicwrites all 1.1.5-2build1 [7,016 B] 2024-09-11T07:24:09.091 INFO:teuthology.orchestra.run.smithi150.stdout:Get:68 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-attr all 19.3.0-2 [33.9 kB] 2024-09-11T07:24:09.091 INFO:teuthology.orchestra.run.smithi150.stdout:Get:69 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-webencodings all 0.5.1-1ubuntu1 [11.0 kB] 2024-09-11T07:24:09.092 INFO:teuthology.orchestra.run.smithi150.stdout:Get:70 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-html5lib all 1.0.1-2 [84.3 kB] 2024-09-11T07:24:09.092 INFO:teuthology.orchestra.run.smithi150.stdout:Get:71 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-lxml amd64 4.5.0-1ubuntu0.5 [1,384 kB] 2024-09-11T07:24:09.104 INFO:teuthology.orchestra.run.smithi150.stdout:Get:72 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-09-11T07:24:09.104 INFO:teuthology.orchestra.run.smithi150.stdout:Get:73 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-pluggy all 0.13.0-2 [18.4 kB] 2024-09-11T07:24:09.104 INFO:teuthology.orchestra.run.smithi150.stdout:Get:74 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-psutil amd64 5.5.1-1ubuntu4 [141 kB] 2024-09-11T07:24:09.107 INFO:teuthology.orchestra.run.smithi115.stdout:Get:83 http://archive.ubuntu.com/ubuntu focal/universe amd64 python-natsort-doc all 7.0.1-1 [103 kB] 2024-09-11T07:24:09.109 INFO:teuthology.orchestra.run.smithi115.stdout:Get:84 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-atomicwrites all 1.1.5-2build1 [7,016 B] 2024-09-11T07:24:09.109 INFO:teuthology.orchestra.run.smithi115.stdout:Get:85 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-attr all 19.3.0-2 [33.9 kB] 2024-09-11T07:24:09.110 INFO:teuthology.orchestra.run.smithi115.stdout:Get:86 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-webencodings all 0.5.1-1ubuntu1 [11.0 kB] 2024-09-11T07:24:09.110 INFO:teuthology.orchestra.run.smithi115.stdout:Get:87 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-html5lib all 1.0.1-2 [84.3 kB] 2024-09-11T07:24:09.111 INFO:teuthology.orchestra.run.smithi115.stdout:Get:88 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-lxml amd64 4.5.0-1ubuntu0.5 [1,384 kB] 2024-09-11T07:24:09.123 INFO:teuthology.orchestra.run.smithi115.stdout:Get:89 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-09-11T07:24:09.124 INFO:teuthology.orchestra.run.smithi115.stdout:Get:90 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-pluggy all 0.13.0-2 [18.4 kB] 2024-09-11T07:24:09.150 INFO:teuthology.orchestra.run.smithi115.stdout:Get:91 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-psutil amd64 5.5.1-1ubuntu4 [141 kB] 2024-09-11T07:24:09.161 INFO:teuthology.orchestra.run.smithi181.stdout:Get:66 http://archive.ubuntu.com/ubuntu focal/universe amd64 python-natsort-doc all 7.0.1-1 [103 kB] 2024-09-11T07:24:09.162 INFO:teuthology.orchestra.run.smithi181.stdout:Get:67 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-atomicwrites all 1.1.5-2build1 [7,016 B] 2024-09-11T07:24:09.162 INFO:teuthology.orchestra.run.smithi181.stdout:Get:68 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-attr all 19.3.0-2 [33.9 kB] 2024-09-11T07:24:09.163 INFO:teuthology.orchestra.run.smithi181.stdout:Get:69 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-webencodings all 0.5.1-1ubuntu1 [11.0 kB] 2024-09-11T07:24:09.163 INFO:teuthology.orchestra.run.smithi181.stdout:Get:70 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-html5lib all 1.0.1-2 [84.3 kB] 2024-09-11T07:24:09.164 INFO:teuthology.orchestra.run.smithi181.stdout:Get:71 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-lxml amd64 4.5.0-1ubuntu0.5 [1,384 kB] 2024-09-11T07:24:09.171 INFO:teuthology.orchestra.run.smithi150.stdout:Get:75 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 python3-py all 1.8.1-1ubuntu0.1 [65.6 kB] 2024-09-11T07:24:09.176 INFO:teuthology.orchestra.run.smithi181.stdout:Get:72 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-09-11T07:24:09.190 INFO:teuthology.orchestra.run.smithi115.stdout:Get:92 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 python3-py all 1.8.1-1ubuntu0.1 [65.6 kB] 2024-09-11T07:24:09.208 INFO:teuthology.orchestra.run.smithi181.stdout:Get:73 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-pluggy all 0.13.0-2 [18.4 kB] 2024-09-11T07:24:09.209 INFO:teuthology.orchestra.run.smithi181.stdout:Get:74 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-psutil amd64 5.5.1-1ubuntu4 [141 kB] 2024-09-11T07:24:09.244 INFO:teuthology.orchestra.run.smithi181.stdout:Get:75 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 python3-py all 1.8.1-1ubuntu0.1 [65.6 kB] 2024-09-11T07:24:09.252 INFO:teuthology.orchestra.run.smithi150.stdout:Get:76 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-pyinotify all 0.9.6-1.2ubuntu1 [24.8 kB] 2024-09-11T07:24:09.253 INFO:teuthology.orchestra.run.smithi150.stdout:Get:77 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-wcwidth all 0.1.8+dfsg1-3 [17.4 kB] 2024-09-11T07:24:09.253 INFO:teuthology.orchestra.run.smithi150.stdout:Get:78 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-pytest all 4.6.9-1 [178 kB] 2024-09-11T07:24:09.257 INFO:teuthology.orchestra.run.smithi150.stdout:Get:79 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-simplejson amd64 3.16.0-2ubuntu2 [50.8 kB] 2024-09-11T07:24:09.258 INFO:teuthology.orchestra.run.smithi150.stdout:Get:80 http://archive.ubuntu.com/ubuntu focal/universe amd64 qttranslations5-l10n all 5.12.8-0ubuntu1 [1,486 kB] 2024-09-11T07:24:09.271 INFO:teuthology.orchestra.run.smithi115.stdout:Get:93 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-pyinotify all 0.9.6-1.2ubuntu1 [24.8 kB] 2024-09-11T07:24:09.272 INFO:teuthology.orchestra.run.smithi115.stdout:Get:94 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-wcwidth all 0.1.8+dfsg1-3 [17.4 kB] 2024-09-11T07:24:09.273 INFO:teuthology.orchestra.run.smithi115.stdout:Get:95 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-pytest all 4.6.9-1 [178 kB] 2024-09-11T07:24:09.276 INFO:teuthology.orchestra.run.smithi115.stdout:Get:96 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-simplejson amd64 3.16.0-2ubuntu2 [50.8 kB] 2024-09-11T07:24:09.278 INFO:teuthology.orchestra.run.smithi115.stdout:Get:97 http://archive.ubuntu.com/ubuntu focal/universe amd64 qttranslations5-l10n all 5.12.8-0ubuntu1 [1,486 kB] 2024-09-11T07:24:09.325 INFO:teuthology.orchestra.run.smithi181.stdout:Get:76 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-pyinotify all 0.9.6-1.2ubuntu1 [24.8 kB] 2024-09-11T07:24:09.325 INFO:teuthology.orchestra.run.smithi181.stdout:Get:77 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-wcwidth all 0.1.8+dfsg1-3 [17.4 kB] 2024-09-11T07:24:09.326 INFO:teuthology.orchestra.run.smithi181.stdout:Get:78 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-pytest all 4.6.9-1 [178 kB] 2024-09-11T07:24:09.328 INFO:teuthology.orchestra.run.smithi181.stdout:Get:79 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-simplejson amd64 3.16.0-2ubuntu2 [50.8 kB] 2024-09-11T07:24:09.329 INFO:teuthology.orchestra.run.smithi181.stdout:Get:80 http://archive.ubuntu.com/ubuntu focal/universe amd64 qttranslations5-l10n all 5.12.8-0ubuntu1 [1,486 kB] 2024-09-11T07:24:09.788 INFO:teuthology.orchestra.run.smithi115.stdout:Get:98 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph amd64 17.2.7-1623-gd0e6828a-1focal [3,944 B] 2024-09-11T07:24:09.788 INFO:teuthology.orchestra.run.smithi115.stdout:Get:99 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-fuse amd64 17.2.7-1623-gd0e6828a-1focal [871 kB] 2024-09-11T07:24:09.801 INFO:teuthology.orchestra.run.smithi115.stdout:Get:100 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-mds amd64 17.2.7-1623-gd0e6828a-1focal [2,415 kB] 2024-09-11T07:24:09.838 INFO:teuthology.orchestra.run.smithi115.stdout:Get:101 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 cephadm amd64 17.2.7-1623-gd0e6828a-1focal [81.4 kB] 2024-09-11T07:24:09.864 INFO:teuthology.orchestra.run.smithi115.stdout:Get:102 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-mgr-cephadm all 17.2.7-1623-gd0e6828a-1focal [120 kB] 2024-09-11T07:24:09.883 INFO:teuthology.orchestra.run.smithi115.stdout:Get:103 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-mgr-dashboard all 17.2.7-1623-gd0e6828a-1focal [6,653 kB] 2024-09-11T07:24:09.918 INFO:teuthology.orchestra.run.smithi150.stdout:Get:81 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 librados2 amd64 17.2.7-1623-gd0e6828a-1focal [3,560 kB] 2024-09-11T07:24:09.965 INFO:teuthology.orchestra.run.smithi181.stdout:Get:81 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 librados2 amd64 17.2.7-1623-gd0e6828a-1focal [3,560 kB] 2024-09-11T07:24:09.992 INFO:teuthology.orchestra.run.smithi115.stdout:Get:104 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-mgr-diskprediction-local all 17.2.7-1623-gd0e6828a-1focal [7,879 kB] 2024-09-11T07:24:10.124 INFO:teuthology.orchestra.run.smithi115.stdout:Get:105 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-mgr-k8sevents all 17.2.7-1623-gd0e6828a-1focal [4,060 B] 2024-09-11T07:24:10.124 INFO:teuthology.orchestra.run.smithi115.stdout:Get:106 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-test amd64 17.2.7-1623-gd0e6828a-1focal [53.4 MB] 2024-09-11T07:24:10.471 INFO:teuthology.orchestra.run.smithi150.stdout:Get:82 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 libcephfs2 amd64 17.2.7-1623-gd0e6828a-1focal [761 kB] 2024-09-11T07:24:10.543 INFO:teuthology.orchestra.run.smithi150.stdout:Get:83 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 python3-rados amd64 17.2.7-1623-gd0e6828a-1focal [414 kB] 2024-09-11T07:24:10.589 INFO:teuthology.orchestra.run.smithi181.stdout:Get:82 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 libcephfs2 amd64 17.2.7-1623-gd0e6828a-1focal [761 kB] 2024-09-11T07:24:10.609 INFO:teuthology.orchestra.run.smithi150.stdout:Get:84 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 python3-ceph-argparse all 17.2.7-1623-gd0e6828a-1focal [22.6 kB] 2024-09-11T07:24:10.610 INFO:teuthology.orchestra.run.smithi150.stdout:Get:85 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 python3-cephfs amd64 17.2.7-1623-gd0e6828a-1focal [200 kB] 2024-09-11T07:24:10.615 INFO:teuthology.orchestra.run.smithi150.stdout:Get:86 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 python3-ceph-common all 17.2.7-1623-gd0e6828a-1focal [49.1 kB] 2024-09-11T07:24:10.616 INFO:teuthology.orchestra.run.smithi150.stdout:Get:87 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 python3-rbd amd64 17.2.7-1623-gd0e6828a-1focal [390 kB] 2024-09-11T07:24:10.668 INFO:teuthology.orchestra.run.smithi181.stdout:Get:83 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 python3-rados amd64 17.2.7-1623-gd0e6828a-1focal [414 kB] 2024-09-11T07:24:10.675 INFO:teuthology.orchestra.run.smithi181.stdout:Get:84 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 python3-ceph-argparse all 17.2.7-1623-gd0e6828a-1focal [22.6 kB] 2024-09-11T07:24:10.676 INFO:teuthology.orchestra.run.smithi181.stdout:Get:85 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 python3-cephfs amd64 17.2.7-1623-gd0e6828a-1focal [200 kB] 2024-09-11T07:24:10.681 INFO:teuthology.orchestra.run.smithi150.stdout:Get:88 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 librgw2 amd64 17.2.7-1623-gd0e6828a-1focal [5,637 kB] 2024-09-11T07:24:10.741 INFO:teuthology.orchestra.run.smithi181.stdout:Get:86 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 python3-ceph-common all 17.2.7-1623-gd0e6828a-1focal [49.1 kB] 2024-09-11T07:24:10.743 INFO:teuthology.orchestra.run.smithi181.stdout:Get:87 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 python3-rbd amd64 17.2.7-1623-gd0e6828a-1focal [390 kB] 2024-09-11T07:24:10.751 INFO:teuthology.orchestra.run.smithi181.stdout:Get:88 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 librgw2 amd64 17.2.7-1623-gd0e6828a-1focal [5,637 kB] 2024-09-11T07:24:11.207 INFO:teuthology.orchestra.run.smithi150.stdout:Get:89 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 python3-rgw amd64 17.2.7-1623-gd0e6828a-1focal [116 kB] 2024-09-11T07:24:11.208 INFO:teuthology.orchestra.run.smithi150.stdout:Get:90 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 libradosstriper1 amd64 17.2.7-1623-gd0e6828a-1focal [479 kB] 2024-09-11T07:24:11.214 INFO:teuthology.orchestra.run.smithi150.stdout:Get:91 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-common amd64 17.2.7-1623-gd0e6828a-1focal [27.0 MB] 2024-09-11T07:24:11.259 INFO:teuthology.orchestra.run.smithi181.stdout:Get:89 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 python3-rgw amd64 17.2.7-1623-gd0e6828a-1focal [116 kB] 2024-09-11T07:24:11.261 INFO:teuthology.orchestra.run.smithi181.stdout:Get:90 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 libradosstriper1 amd64 17.2.7-1623-gd0e6828a-1focal [479 kB] 2024-09-11T07:24:11.310 INFO:teuthology.orchestra.run.smithi181.stdout:Get:91 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-common amd64 17.2.7-1623-gd0e6828a-1focal [27.0 MB] 2024-09-11T07:24:11.720 INFO:teuthology.orchestra.run.smithi115.stdout:Get:107 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-volume all 17.2.7-1623-gd0e6828a-1focal [231 kB] 2024-09-11T07:24:11.724 INFO:teuthology.orchestra.run.smithi115.stdout:Get:108 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 libcephfs-dev amd64 17.2.7-1623-gd0e6828a-1focal [21.9 kB] 2024-09-11T07:24:11.724 INFO:teuthology.orchestra.run.smithi115.stdout:Get:109 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 radosgw amd64 17.2.7-1623-gd0e6828a-1focal [17.2 MB] 2024-09-11T07:24:12.197 INFO:teuthology.orchestra.run.smithi115.stdout:Get:110 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 rbd-fuse amd64 17.2.7-1623-gd0e6828a-1focal [80.9 kB] 2024-09-11T07:24:12.698 INFO:teuthology.orchestra.run.smithi150.stdout:Get:92 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-base amd64 17.2.7-1623-gd0e6828a-1focal [5,179 kB] 2024-09-11T07:24:12.754 INFO:teuthology.orchestra.run.smithi181.stdout:Get:92 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-base amd64 17.2.7-1623-gd0e6828a-1focal [5,179 kB] 2024-09-11T07:24:12.786 INFO:teuthology.orchestra.run.smithi150.stdout:Get:93 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-mgr-modules-core all 17.2.7-1623-gd0e6828a-1focal [223 kB] 2024-09-11T07:24:12.788 INFO:teuthology.orchestra.run.smithi150.stdout:Get:94 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 libsqlite3-mod-ceph amd64 17.2.7-1623-gd0e6828a-1focal [157 kB] 2024-09-11T07:24:12.790 INFO:teuthology.orchestra.run.smithi150.stdout:Get:95 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-mgr amd64 17.2.7-1623-gd0e6828a-1focal [1,594 kB] 2024-09-11T07:24:12.839 INFO:teuthology.orchestra.run.smithi150.stdout:Get:96 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-mon amd64 17.2.7-1623-gd0e6828a-1focal [4,686 kB] 2024-09-11T07:24:12.840 INFO:teuthology.orchestra.run.smithi115.stdout:Fetched 201 MB in 5s (38.6 MB/s) 2024-09-11T07:24:12.877 INFO:teuthology.orchestra.run.smithi181.stdout:Get:93 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-mgr-modules-core all 17.2.7-1623-gd0e6828a-1focal [223 kB] 2024-09-11T07:24:12.893 INFO:teuthology.orchestra.run.smithi181.stdout:Get:94 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 libsqlite3-mod-ceph amd64 17.2.7-1623-gd0e6828a-1focal [157 kB] 2024-09-11T07:24:12.896 INFO:teuthology.orchestra.run.smithi181.stdout:Get:95 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-mgr amd64 17.2.7-1623-gd0e6828a-1focal [1,594 kB] 2024-09-11T07:24:12.949 INFO:teuthology.orchestra.run.smithi181.stdout:Get:96 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-mon amd64 17.2.7-1623-gd0e6828a-1focal [4,686 kB] 2024-09-11T07:24:12.991 INFO:teuthology.orchestra.run.smithi150.stdout:Get:97 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-osd amd64 17.2.7-1623-gd0e6828a-1focal [23.1 MB] 2024-09-11T07:24:13.046 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package liblttng-ust0:amd64. 2024-09-11T07:24:13.102 INFO:teuthology.orchestra.run.smithi115.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 141720 files and directories currently installed.) 2024-09-11T07:24:13.106 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../000-liblttng-ust0_2.11.0-1_amd64.deb ... 2024-09-11T07:24:13.106 INFO:teuthology.orchestra.run.smithi181.stdout:Get:97 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-osd amd64 17.2.7-1623-gd0e6828a-1focal [23.1 MB] 2024-09-11T07:24:13.195 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking liblttng-ust0:amd64 (2.11.0-1) ... 2024-09-11T07:24:13.560 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../001-librbd1_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:13.690 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking librbd1 (17.2.7-1623-gd0e6828a-1focal) over (15.2.17-0ubuntu0.20.04.6) ... 2024-09-11T07:24:13.827 INFO:teuthology.orchestra.run.smithi150.stdout:Get:98 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph amd64 17.2.7-1623-gd0e6828a-1focal [3,944 B] 2024-09-11T07:24:13.828 INFO:teuthology.orchestra.run.smithi150.stdout:Get:99 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-fuse amd64 17.2.7-1623-gd0e6828a-1focal [871 kB] 2024-09-11T07:24:13.840 INFO:teuthology.orchestra.run.smithi150.stdout:Get:100 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-mds amd64 17.2.7-1623-gd0e6828a-1focal [2,415 kB] 2024-09-11T07:24:13.879 INFO:teuthology.orchestra.run.smithi150.stdout:Get:101 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 cephadm amd64 17.2.7-1623-gd0e6828a-1focal [81.4 kB] 2024-09-11T07:24:13.881 INFO:teuthology.orchestra.run.smithi150.stdout:Get:102 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-mgr-cephadm all 17.2.7-1623-gd0e6828a-1focal [120 kB] 2024-09-11T07:24:13.883 INFO:teuthology.orchestra.run.smithi150.stdout:Get:103 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-mgr-dashboard all 17.2.7-1623-gd0e6828a-1focal [6,653 kB] 2024-09-11T07:24:13.972 INFO:teuthology.orchestra.run.smithi181.stdout:Get:98 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph amd64 17.2.7-1623-gd0e6828a-1focal [3,944 B] 2024-09-11T07:24:13.973 INFO:teuthology.orchestra.run.smithi181.stdout:Get:99 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-fuse amd64 17.2.7-1623-gd0e6828a-1focal [871 kB] 2024-09-11T07:24:13.986 INFO:teuthology.orchestra.run.smithi181.stdout:Get:100 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-mds amd64 17.2.7-1623-gd0e6828a-1focal [2,415 kB] 2024-09-11T07:24:14.020 INFO:teuthology.orchestra.run.smithi181.stdout:Get:101 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 cephadm amd64 17.2.7-1623-gd0e6828a-1focal [81.4 kB] 2024-09-11T07:24:14.037 INFO:teuthology.orchestra.run.smithi181.stdout:Get:102 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-mgr-cephadm all 17.2.7-1623-gd0e6828a-1focal [120 kB] 2024-09-11T07:24:14.039 INFO:teuthology.orchestra.run.smithi181.stdout:Get:103 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-mgr-dashboard all 17.2.7-1623-gd0e6828a-1focal [6,653 kB] 2024-09-11T07:24:14.072 INFO:teuthology.orchestra.run.smithi150.stdout:Get:104 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-mgr-diskprediction-local all 17.2.7-1623-gd0e6828a-1focal [7,879 kB] 2024-09-11T07:24:14.263 INFO:teuthology.orchestra.run.smithi181.stdout:Get:104 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-mgr-diskprediction-local all 17.2.7-1623-gd0e6828a-1focal [7,879 kB] 2024-09-11T07:24:14.315 INFO:teuthology.orchestra.run.smithi150.stdout:Get:105 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-mgr-k8sevents all 17.2.7-1623-gd0e6828a-1focal [4,060 B] 2024-09-11T07:24:14.315 INFO:teuthology.orchestra.run.smithi150.stdout:Get:106 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-test amd64 17.2.7-1623-gd0e6828a-1focal [53.4 MB] 2024-09-11T07:24:14.372 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../002-librados2_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:14.494 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking librados2 (17.2.7-1623-gd0e6828a-1focal) over (15.2.17-0ubuntu0.20.04.6) ... 2024-09-11T07:24:14.524 INFO:teuthology.orchestra.run.smithi181.stdout:Get:105 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-mgr-k8sevents all 17.2.7-1623-gd0e6828a-1focal [4,060 B] 2024-09-11T07:24:14.524 INFO:teuthology.orchestra.run.smithi181.stdout:Get:106 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-test amd64 17.2.7-1623-gd0e6828a-1focal [53.4 MB] 2024-09-11T07:24:15.182 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package libcephfs2. 2024-09-11T07:24:15.198 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../003-libcephfs2_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:15.256 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking libcephfs2 (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:15.576 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-rados. 2024-09-11T07:24:15.595 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../004-python3-rados_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:15.625 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-rados (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:16.011 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-09-11T07:24:16.027 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../005-python3-ceph-argparse_17.2.7-1623-gd0e6828a-1focal_all.deb ... 2024-09-11T07:24:16.069 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-ceph-argparse (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:16.168 INFO:teuthology.orchestra.run.smithi150.stdout:Get:107 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-volume all 17.2.7-1623-gd0e6828a-1focal [231 kB] 2024-09-11T07:24:16.173 INFO:teuthology.orchestra.run.smithi150.stdout:Get:108 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 libcephfs-dev amd64 17.2.7-1623-gd0e6828a-1focal [21.9 kB] 2024-09-11T07:24:16.173 INFO:teuthology.orchestra.run.smithi150.stdout:Get:109 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 radosgw amd64 17.2.7-1623-gd0e6828a-1focal [17.2 MB] 2024-09-11T07:24:16.330 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-cephfs. 2024-09-11T07:24:16.347 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../006-python3-cephfs_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:16.388 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-cephfs (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:16.588 INFO:teuthology.orchestra.run.smithi150.stdout:Get:110 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 rbd-fuse amd64 17.2.7-1623-gd0e6828a-1focal [80.9 kB] 2024-09-11T07:24:16.686 INFO:teuthology.orchestra.run.smithi181.stdout:Get:107 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 ceph-volume all 17.2.7-1623-gd0e6828a-1focal [231 kB] 2024-09-11T07:24:16.690 INFO:teuthology.orchestra.run.smithi181.stdout:Get:108 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 libcephfs-dev amd64 17.2.7-1623-gd0e6828a-1focal [21.9 kB] 2024-09-11T07:24:16.691 INFO:teuthology.orchestra.run.smithi181.stdout:Get:109 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 radosgw amd64 17.2.7-1623-gd0e6828a-1focal [17.2 MB] 2024-09-11T07:24:16.758 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-ceph-common. 2024-09-11T07:24:16.774 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../007-python3-ceph-common_17.2.7-1623-gd0e6828a-1focal_all.deb ... 2024-09-11T07:24:16.841 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-ceph-common (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:17.161 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-prettytable. 2024-09-11T07:24:17.177 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../008-python3-prettytable_0.7.2-5_all.deb ... 2024-09-11T07:24:17.202 INFO:teuthology.orchestra.run.smithi181.stdout:Get:110 https://2.chacra.ceph.com/r/ceph/wip-guits-quincy-2024-09-10-2008-quincy/d0e6828a2016d48cf25ad84064e50742bb1c39b9/ubuntu/focal/flavors/default focal/main amd64 rbd-fuse amd64 17.2.7-1623-gd0e6828a-1focal [80.9 kB] 2024-09-11T07:24:17.210 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-prettytable (0.7.2-5) ... 2024-09-11T07:24:17.245 INFO:teuthology.orchestra.run.smithi150.stdout:Fetched 201 MB in 10s (20.9 MB/s) 2024-09-11T07:24:17.433 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package liblttng-ust0:amd64. 2024-09-11T07:24:17.471 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-rbd. 2024-09-11T07:24:17.488 INFO:teuthology.orchestra.run.smithi150.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 141720 files and directories currently installed.) 2024-09-11T07:24:17.491 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../009-python3-rbd_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:17.493 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../000-liblttng-ust0_2.11.0-1_amd64.deb ... 2024-09-11T07:24:17.529 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-rbd (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:17.573 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking liblttng-ust0:amd64 (2.11.0-1) ... 2024-09-11T07:24:17.840 INFO:teuthology.orchestra.run.smithi181.stdout:Fetched 201 MB in 10s (19.7 MB/s) 2024-09-11T07:24:17.924 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package liblua5.3-0:amd64. 2024-09-11T07:24:17.942 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../001-librbd1_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:17.943 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../010-liblua5.3-0_5.3.3-1.1ubuntu2_amd64.deb ... 2024-09-11T07:24:17.982 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking liblua5.3-0:amd64 (5.3.3-1.1ubuntu2) ... 2024-09-11T07:24:18.010 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package liblttng-ust0:amd64. 2024-09-11T07:24:18.068 INFO:teuthology.orchestra.run.smithi181.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 141720 files and directories currently installed.) 2024-09-11T07:24:18.073 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../000-liblttng-ust0_2.11.0-1_amd64.deb ... 2024-09-11T07:24:18.077 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking librbd1 (17.2.7-1623-gd0e6828a-1focal) over (15.2.17-0ubuntu0.20.04.6) ... 2024-09-11T07:24:18.142 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking liblttng-ust0:amd64 (2.11.0-1) ... 2024-09-11T07:24:18.368 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package librabbitmq4:amd64. 2024-09-11T07:24:18.385 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../011-librabbitmq4_0.10.0-1_amd64.deb ... 2024-09-11T07:24:18.451 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking librabbitmq4:amd64 (0.10.0-1) ... 2024-09-11T07:24:18.455 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../001-librbd1_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:18.579 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking librbd1 (17.2.7-1623-gd0e6828a-1focal) over (15.2.17-0ubuntu0.20.04.6) ... 2024-09-11T07:24:18.739 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../002-librados2_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:18.763 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-09-11T07:24:18.778 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../012-librdkafka1_1.2.1-1ubuntu1_amd64.deb ... 2024-09-11T07:24:18.821 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking librdkafka1:amd64 (1.2.1-1ubuntu1) ... 2024-09-11T07:24:18.839 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking librados2 (17.2.7-1623-gd0e6828a-1focal) over (15.2.17-0ubuntu0.20.04.6) ... 2024-09-11T07:24:19.233 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../002-librados2_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:19.234 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-09-11T07:24:19.250 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../013-libdouble-conversion3_3.1.5-4ubuntu1_amd64.deb ... 2024-09-11T07:24:19.292 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking libdouble-conversion3:amd64 (3.1.5-4ubuntu1) ... 2024-09-11T07:24:19.358 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking librados2 (17.2.7-1623-gd0e6828a-1focal) over (15.2.17-0ubuntu0.20.04.6) ... 2024-09-11T07:24:19.518 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package libcephfs2. 2024-09-11T07:24:19.538 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../003-libcephfs2_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:19.576 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking libcephfs2 (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:19.612 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-09-11T07:24:19.631 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../014-libpcre2-16-0_10.34-7ubuntu0.1_amd64.deb ... 2024-09-11T07:24:19.662 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking libpcre2-16-0:amd64 (10.34-7ubuntu0.1) ... 2024-09-11T07:24:19.904 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-rados. 2024-09-11T07:24:19.922 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../004-python3-rados_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:19.962 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-rados (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:20.054 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package libcephfs2. 2024-09-11T07:24:20.074 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../003-libcephfs2_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:20.112 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking libcephfs2 (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:20.149 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-09-11T07:24:20.165 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../015-libqt5core5a_5.12.8+dfsg-0ubuntu2.1_amd64.deb ... 2024-09-11T07:24:20.216 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking libqt5core5a:amd64 (5.12.8+dfsg-0ubuntu2.1) ... 2024-09-11T07:24:20.356 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-09-11T07:24:20.372 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../005-python3-ceph-argparse_17.2.7-1623-gd0e6828a-1focal_all.deb ... 2024-09-11T07:24:20.415 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-ceph-argparse (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:20.423 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-rados. 2024-09-11T07:24:20.440 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../004-python3-rados_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:20.473 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-rados (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:20.692 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-cephfs. 2024-09-11T07:24:20.711 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../006-python3-cephfs_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:20.750 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-cephfs (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:20.760 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-09-11T07:24:20.777 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../016-libqt5dbus5_5.12.8+dfsg-0ubuntu2.1_amd64.deb ... 2024-09-11T07:24:20.809 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-09-11T07:24:20.818 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking libqt5dbus5:amd64 (5.12.8+dfsg-0ubuntu2.1) ... 2024-09-11T07:24:20.827 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../005-python3-ceph-argparse_17.2.7-1623-gd0e6828a-1focal_all.deb ... 2024-09-11T07:24:20.875 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-ceph-argparse (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:21.086 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-ceph-common. 2024-09-11T07:24:21.105 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../007-python3-ceph-common_17.2.7-1623-gd0e6828a-1focal_all.deb ... 2024-09-11T07:24:21.128 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-cephfs. 2024-09-11T07:24:21.144 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../006-python3-cephfs_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:21.145 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-ceph-common (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:21.163 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-09-11T07:24:21.182 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../017-libqt5network5_5.12.8+dfsg-0ubuntu2.1_amd64.deb ... 2024-09-11T07:24:21.186 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-cephfs (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:21.213 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking libqt5network5:amd64 (5.12.8+dfsg-0ubuntu2.1) ... 2024-09-11T07:24:21.481 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-prettytable. 2024-09-11T07:24:21.498 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../008-python3-prettytable_0.7.2-5_all.deb ... 2024-09-11T07:24:21.522 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-ceph-common. 2024-09-11T07:24:21.538 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../007-python3-ceph-common_17.2.7-1623-gd0e6828a-1focal_all.deb ... 2024-09-11T07:24:21.539 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-prettytable (0.7.2-5) ... 2024-09-11T07:24:21.580 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-ceph-common (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:21.649 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package libthrift-0.13.0. 2024-09-11T07:24:21.665 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../018-libthrift-0.13.0_0.13.0-2build2_amd64.deb ... 2024-09-11T07:24:21.707 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking libthrift-0.13.0 (0.13.0-2build2) ... 2024-09-11T07:24:21.817 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-rbd. 2024-09-11T07:24:21.833 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../009-python3-rbd_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:21.875 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-rbd (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:21.917 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-prettytable. 2024-09-11T07:24:21.936 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../008-python3-prettytable_0.7.2-5_all.deb ... 2024-09-11T07:24:21.975 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-prettytable (0.7.2-5) ... 2024-09-11T07:24:22.094 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package librgw2. 2024-09-11T07:24:22.110 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../019-librgw2_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:22.152 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking librgw2 (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:22.186 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-rbd. 2024-09-11T07:24:22.204 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../009-python3-rbd_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:22.236 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-rbd (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:22.412 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package liblua5.3-0:amd64. 2024-09-11T07:24:22.430 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../010-liblua5.3-0_5.3.3-1.1ubuntu2_amd64.deb ... 2024-09-11T07:24:22.470 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking liblua5.3-0:amd64 (5.3.3-1.1ubuntu2) ... 2024-09-11T07:24:22.589 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package liblua5.3-0:amd64. 2024-09-11T07:24:22.605 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../010-liblua5.3-0_5.3.3-1.1ubuntu2_amd64.deb ... 2024-09-11T07:24:22.647 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking liblua5.3-0:amd64 (5.3.3-1.1ubuntu2) ... 2024-09-11T07:24:22.856 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package librabbitmq4:amd64. 2024-09-11T07:24:22.874 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../011-librabbitmq4_0.10.0-1_amd64.deb ... 2024-09-11T07:24:22.914 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking librabbitmq4:amd64 (0.10.0-1) ... 2024-09-11T07:24:22.946 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-rgw. 2024-09-11T07:24:22.964 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../020-python3-rgw_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:22.996 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-rgw (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:23.150 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package librabbitmq4:amd64. 2024-09-11T07:24:23.170 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../011-librabbitmq4_0.10.0-1_amd64.deb ... 2024-09-11T07:24:23.267 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking librabbitmq4:amd64 (0.10.0-1) ... 2024-09-11T07:24:23.275 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-09-11T07:24:23.291 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../012-librdkafka1_1.2.1-1ubuntu1_amd64.deb ... 2024-09-11T07:24:23.334 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking librdkafka1:amd64 (1.2.1-1ubuntu1) ... 2024-09-11T07:24:23.507 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package liboath0. 2024-09-11T07:24:23.527 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../021-liboath0_2.6.1-1.3_amd64.deb ... 2024-09-11T07:24:23.572 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-09-11T07:24:23.586 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../012-librdkafka1_1.2.1-1ubuntu1_amd64.deb ... 2024-09-11T07:24:23.616 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking liboath0 (2.6.1-1.3) ... 2024-09-11T07:24:23.628 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking librdkafka1:amd64 (1.2.1-1ubuntu1) ... 2024-09-11T07:24:23.703 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-09-11T07:24:23.721 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../013-libdouble-conversion3_3.1.5-4ubuntu1_amd64.deb ... 2024-09-11T07:24:23.778 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking libdouble-conversion3:amd64 (3.1.5-4ubuntu1) ... 2024-09-11T07:24:23.961 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package libradosstriper1. 2024-09-11T07:24:23.977 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../022-libradosstriper1_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:24.019 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking libradosstriper1 (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:24.031 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-09-11T07:24:24.048 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../013-libdouble-conversion3_3.1.5-4ubuntu1_amd64.deb ... 2024-09-11T07:24:24.089 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking libdouble-conversion3:amd64 (3.1.5-4ubuntu1) ... 2024-09-11T07:24:24.114 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-09-11T07:24:24.130 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../014-libpcre2-16-0_10.34-7ubuntu0.1_amd64.deb ... 2024-09-11T07:24:24.173 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking libpcre2-16-0:amd64 (10.34-7ubuntu0.1) ... 2024-09-11T07:24:24.422 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package ceph-common. 2024-09-11T07:24:24.425 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-09-11T07:24:24.437 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../023-ceph-common_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:24.443 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../014-libpcre2-16-0_10.34-7ubuntu0.1_amd64.deb ... 2024-09-11T07:24:24.484 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking libpcre2-16-0:amd64 (10.34-7ubuntu0.1) ... 2024-09-11T07:24:24.495 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking ceph-common (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:24.676 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-09-11T07:24:24.696 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../015-libqt5core5a_5.12.8+dfsg-0ubuntu2.1_amd64.deb ... 2024-09-11T07:24:24.745 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking libqt5core5a:amd64 (5.12.8+dfsg-0ubuntu2.1) ... 2024-09-11T07:24:24.921 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-09-11T07:24:24.937 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../015-libqt5core5a_5.12.8+dfsg-0ubuntu2.1_amd64.deb ... 2024-09-11T07:24:24.989 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking libqt5core5a:amd64 (5.12.8+dfsg-0ubuntu2.1) ... 2024-09-11T07:24:25.288 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-09-11T07:24:25.305 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../016-libqt5dbus5_5.12.8+dfsg-0ubuntu2.1_amd64.deb ... 2024-09-11T07:24:25.346 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking libqt5dbus5:amd64 (5.12.8+dfsg-0ubuntu2.1) ... 2024-09-11T07:24:25.474 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-09-11T07:24:25.489 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../016-libqt5dbus5_5.12.8+dfsg-0ubuntu2.1_amd64.deb ... 2024-09-11T07:24:25.532 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking libqt5dbus5:amd64 (5.12.8+dfsg-0ubuntu2.1) ... 2024-09-11T07:24:25.716 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-09-11T07:24:25.734 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../017-libqt5network5_5.12.8+dfsg-0ubuntu2.1_amd64.deb ... 2024-09-11T07:24:25.799 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking libqt5network5:amd64 (5.12.8+dfsg-0ubuntu2.1) ... 2024-09-11T07:24:25.927 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-09-11T07:24:25.944 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../017-libqt5network5_5.12.8+dfsg-0ubuntu2.1_amd64.deb ... 2024-09-11T07:24:25.985 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking libqt5network5:amd64 (5.12.8+dfsg-0ubuntu2.1) ... 2024-09-11T07:24:26.185 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package libthrift-0.13.0. 2024-09-11T07:24:26.202 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../018-libthrift-0.13.0_0.13.0-2build2_amd64.deb ... 2024-09-11T07:24:26.243 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking libthrift-0.13.0 (0.13.0-2build2) ... 2024-09-11T07:24:26.346 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package libthrift-0.13.0. 2024-09-11T07:24:26.362 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../018-libthrift-0.13.0_0.13.0-2build2_amd64.deb ... 2024-09-11T07:24:26.396 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking libthrift-0.13.0 (0.13.0-2build2) ... 2024-09-11T07:24:26.613 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package librgw2. 2024-09-11T07:24:26.630 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../019-librgw2_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:26.671 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking librgw2 (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:26.707 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package librgw2. 2024-09-11T07:24:26.726 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../019-librgw2_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:26.765 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking librgw2 (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:26.935 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package ceph-base. 2024-09-11T07:24:26.951 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../024-ceph-base_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:27.004 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking ceph-base (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:27.465 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-rgw. 2024-09-11T07:24:27.482 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../020-python3-rgw_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:27.523 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-rgw (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:27.543 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-rgw. 2024-09-11T07:24:27.559 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../020-python3-rgw_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:27.601 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-rgw (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:27.893 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package liboath0. 2024-09-11T07:24:27.898 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-cryptography. 2024-09-11T07:24:27.910 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../021-liboath0_2.6.1-1.3_amd64.deb ... 2024-09-11T07:24:27.914 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../025-python3-cryptography_2.8-3ubuntu0.3_amd64.deb ... 2024-09-11T07:24:27.951 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking liboath0 (2.6.1-1.3) ... 2024-09-11T07:24:27.956 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-cryptography (2.8-3ubuntu0.3) ... 2024-09-11T07:24:27.971 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package liboath0. 2024-09-11T07:24:27.988 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../021-liboath0_2.6.1-1.3_amd64.deb ... 2024-09-11T07:24:28.021 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking liboath0 (2.6.1-1.3) ... 2024-09-11T07:24:28.254 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package libradosstriper1. 2024-09-11T07:24:28.270 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../022-libradosstriper1_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:28.312 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking libradosstriper1 (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:28.315 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package libradosstriper1. 2024-09-11T07:24:28.334 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../022-libradosstriper1_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:28.352 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-openssl. 2024-09-11T07:24:28.371 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../026-python3-openssl_19.0.0-1build1_all.deb ... 2024-09-11T07:24:28.373 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking libradosstriper1 (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:28.452 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-openssl (19.0.0-1build1) ... 2024-09-11T07:24:28.788 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-packaging. 2024-09-11T07:24:28.794 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package ceph-common. 2024-09-11T07:24:28.805 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../027-python3-packaging_20.3-1_all.deb ... 2024-09-11T07:24:28.807 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package ceph-common. 2024-09-11T07:24:28.809 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../023-ceph-common_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:28.823 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../023-ceph-common_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:28.846 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-packaging (20.3-1) ... 2024-09-11T07:24:28.865 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking ceph-common (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:28.901 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking ceph-common (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:29.132 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-09-11T07:24:29.149 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../028-ceph-mgr-modules-core_17.2.7-1623-gd0e6828a-1focal_all.deb ... 2024-09-11T07:24:29.190 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking ceph-mgr-modules-core (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:29.612 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-bcrypt. 2024-09-11T07:24:29.629 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../029-python3-bcrypt_3.1.7-2ubuntu1_amd64.deb ... 2024-09-11T07:24:29.703 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-bcrypt (3.1.7-2ubuntu1) ... 2024-09-11T07:24:30.040 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-cherrypy3. 2024-09-11T07:24:30.057 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../030-python3-cherrypy3_8.9.1-6_all.deb ... 2024-09-11T07:24:30.098 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-cherrypy3 (8.9.1-6) ... 2024-09-11T07:24:30.468 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-natsort. 2024-09-11T07:24:30.486 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../031-python3-natsort_7.0.1-1_all.deb ... 2024-09-11T07:24:30.526 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-natsort (7.0.1-1) ... 2024-09-11T07:24:30.888 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-jwt. 2024-09-11T07:24:30.904 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../032-python3-jwt_1.7.1-2ubuntu2.1_all.deb ... 2024-09-11T07:24:30.979 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-jwt (1.7.1-2ubuntu2.1) ... 2024-09-11T07:24:31.333 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-logutils. 2024-09-11T07:24:31.349 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../033-python3-logutils_0.3.3-7_all.deb ... 2024-09-11T07:24:31.391 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-logutils (0.3.3-7) ... 2024-09-11T07:24:31.487 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package ceph-base. 2024-09-11T07:24:31.498 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package ceph-base. 2024-09-11T07:24:31.503 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../024-ceph-base_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:31.514 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../024-ceph-base_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:31.556 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking ceph-base (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:31.567 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking ceph-base (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:31.719 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-markupsafe. 2024-09-11T07:24:31.735 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../034-python3-markupsafe_1.1.0-1build2_amd64.deb ... 2024-09-11T07:24:31.777 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-markupsafe (1.1.0-1build2) ... 2024-09-11T07:24:32.088 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-mako. 2024-09-11T07:24:32.107 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../035-python3-mako_1.1.0+ds1-1ubuntu2.1_all.deb ... 2024-09-11T07:24:32.146 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-mako (1.1.0+ds1-1ubuntu2.1) ... 2024-09-11T07:24:32.370 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-cryptography. 2024-09-11T07:24:32.385 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../025-python3-cryptography_2.8-3ubuntu0.3_amd64.deb ... 2024-09-11T07:24:32.428 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-cryptography (2.8-3ubuntu0.3) ... 2024-09-11T07:24:32.459 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-cryptography. 2024-09-11T07:24:32.477 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../025-python3-cryptography_2.8-3ubuntu0.3_amd64.deb ... 2024-09-11T07:24:32.508 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-simplegeneric. 2024-09-11T07:24:32.516 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-cryptography (2.8-3ubuntu0.3) ... 2024-09-11T07:24:32.525 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../036-python3-simplegeneric_0.8.1-3_all.deb ... 2024-09-11T07:24:32.591 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-09-11T07:24:32.840 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-openssl. 2024-09-11T07:24:32.857 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../026-python3-openssl_19.0.0-1build1_all.deb ... 2024-09-11T07:24:32.898 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-openssl (19.0.0-1build1) ... 2024-09-11T07:24:32.901 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-singledispatch. 2024-09-11T07:24:32.920 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../037-python3-singledispatch_3.4.0.3-2build1_all.deb ... 2024-09-11T07:24:32.937 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-openssl. 2024-09-11T07:24:32.951 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-singledispatch (3.4.0.3-2build1) ... 2024-09-11T07:24:32.954 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../026-python3-openssl_19.0.0-1build1_all.deb ... 2024-09-11T07:24:32.995 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-openssl (19.0.0-1build1) ... 2024-09-11T07:24:33.226 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-packaging. 2024-09-11T07:24:33.242 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../027-python3-packaging_20.3-1_all.deb ... 2024-09-11T07:24:33.271 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-webob. 2024-09-11T07:24:33.284 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-packaging (20.3-1) ... 2024-09-11T07:24:33.291 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../038-python3-webob_1%3a1.8.5-2ubuntu0.1_all.deb ... 2024-09-11T07:24:33.329 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-webob (1:1.8.5-2ubuntu0.1) ... 2024-09-11T07:24:33.331 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-packaging. 2024-09-11T07:24:33.347 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../027-python3-packaging_20.3-1_all.deb ... 2024-09-11T07:24:33.389 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-packaging (20.3-1) ... 2024-09-11T07:24:33.537 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-09-11T07:24:33.554 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../028-ceph-mgr-modules-core_17.2.7-1623-gd0e6828a-1focal_all.deb ... 2024-09-11T07:24:33.595 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking ceph-mgr-modules-core (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:33.642 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-09-11T07:24:33.658 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../028-ceph-mgr-modules-core_17.2.7-1623-gd0e6828a-1focal_all.deb ... 2024-09-11T07:24:33.682 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-soupsieve. 2024-09-11T07:24:33.698 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../039-python3-soupsieve_1.9.5+dfsg-1_all.deb ... 2024-09-11T07:24:33.721 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking ceph-mgr-modules-core (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:33.748 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-soupsieve (1.9.5+dfsg-1) ... 2024-09-11T07:24:33.992 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-bcrypt. 2024-09-11T07:24:34.011 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../029-python3-bcrypt_3.1.7-2ubuntu1_amd64.deb ... 2024-09-11T07:24:34.050 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-bcrypt (3.1.7-2ubuntu1) ... 2024-09-11T07:24:34.068 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-bs4. 2024-09-11T07:24:34.088 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../040-python3-bs4_4.8.2-1_all.deb ... 2024-09-11T07:24:34.088 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-bcrypt. 2024-09-11T07:24:34.110 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../029-python3-bcrypt_3.1.7-2ubuntu1_amd64.deb ... 2024-09-11T07:24:34.127 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-bs4 (4.8.2-1) ... 2024-09-11T07:24:34.147 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-bcrypt (3.1.7-2ubuntu1) ... 2024-09-11T07:24:34.361 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-cherrypy3. 2024-09-11T07:24:34.377 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../030-python3-cherrypy3_8.9.1-6_all.deb ... 2024-09-11T07:24:34.419 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-cherrypy3 (8.9.1-6) ... 2024-09-11T07:24:34.474 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-cherrypy3. 2024-09-11T07:24:34.491 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../030-python3-cherrypy3_8.9.1-6_all.deb ... 2024-09-11T07:24:34.532 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-cherrypy3 (8.9.1-6) ... 2024-09-11T07:24:34.546 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-waitress. 2024-09-11T07:24:34.562 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../041-python3-waitress_1.4.1-1ubuntu0.1_all.deb ... 2024-09-11T07:24:34.607 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-waitress (1.4.1-1ubuntu0.1) ... 2024-09-11T07:24:34.739 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-natsort. 2024-09-11T07:24:34.759 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../031-python3-natsort_7.0.1-1_all.deb ... 2024-09-11T07:24:34.821 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-natsort (7.0.1-1) ... 2024-09-11T07:24:34.912 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-natsort. 2024-09-11T07:24:34.927 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../031-python3-natsort_7.0.1-1_all.deb ... 2024-09-11T07:24:34.966 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-tempita. 2024-09-11T07:24:34.969 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-natsort (7.0.1-1) ... 2024-09-11T07:24:34.982 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../042-python3-tempita_0.5.2-6_all.deb ... 2024-09-11T07:24:35.024 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-tempita (0.5.2-6) ... 2024-09-11T07:24:35.142 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-jwt. 2024-09-11T07:24:35.160 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../032-python3-jwt_1.7.1-2ubuntu2.1_all.deb ... 2024-09-11T07:24:35.201 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-jwt (1.7.1-2ubuntu2.1) ... 2024-09-11T07:24:35.303 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-paste. 2024-09-11T07:24:35.306 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-jwt. 2024-09-11T07:24:35.318 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../043-python3-paste_3.4.0+dfsg1-1_all.deb ... 2024-09-11T07:24:35.323 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../032-python3-jwt_1.7.1-2ubuntu2.1_all.deb ... 2024-09-11T07:24:35.352 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-paste (3.4.0+dfsg1-1) ... 2024-09-11T07:24:35.364 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-jwt (1.7.1-2ubuntu2.1) ... 2024-09-11T07:24:35.462 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-logutils. 2024-09-11T07:24:35.477 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../033-python3-logutils_0.3.3-7_all.deb ... 2024-09-11T07:24:35.520 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-logutils (0.3.3-7) ... 2024-09-11T07:24:35.675 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-logutils. 2024-09-11T07:24:35.681 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-09-11T07:24:35.691 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../033-python3-logutils_0.3.3-7_all.deb ... 2024-09-11T07:24:35.697 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../044-python-pastedeploy-tpl_2.1.0-1_all.deb ... 2024-09-11T07:24:35.733 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-logutils (0.3.3-7) ... 2024-09-11T07:24:35.764 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python-pastedeploy-tpl (2.1.0-1) ... 2024-09-11T07:24:35.848 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-markupsafe. 2024-09-11T07:24:35.864 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../034-python3-markupsafe_1.1.0-1build2_amd64.deb ... 2024-09-11T07:24:35.906 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-markupsafe (1.1.0-1build2) ... 2024-09-11T07:24:36.053 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-markupsafe. 2024-09-11T07:24:36.072 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../034-python3-markupsafe_1.1.0-1build2_amd64.deb ... 2024-09-11T07:24:36.096 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-pastedeploy. 2024-09-11T07:24:36.111 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-markupsafe (1.1.0-1build2) ... 2024-09-11T07:24:36.115 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../045-python3-pastedeploy_2.1.0-1_all.deb ... 2024-09-11T07:24:36.154 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-pastedeploy (2.1.0-1) ... 2024-09-11T07:24:36.218 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-mako. 2024-09-11T07:24:36.233 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../035-python3-mako_1.1.0+ds1-1ubuntu2.1_all.deb ... 2024-09-11T07:24:36.276 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-mako (1.1.0+ds1-1ubuntu2.1) ... 2024-09-11T07:24:36.431 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-mako. 2024-09-11T07:24:36.449 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../035-python3-mako_1.1.0+ds1-1ubuntu2.1_all.deb ... 2024-09-11T07:24:36.465 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-webtest. 2024-09-11T07:24:36.484 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../046-python3-webtest_2.0.32-2_all.deb ... 2024-09-11T07:24:36.489 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-mako (1.1.0+ds1-1ubuntu2.1) ... 2024-09-11T07:24:36.524 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-webtest (2.0.32-2) ... 2024-09-11T07:24:36.579 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-simplegeneric. 2024-09-11T07:24:36.598 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../036-python3-simplegeneric_0.8.1-3_all.deb ... 2024-09-11T07:24:36.637 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-09-11T07:24:36.809 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-simplegeneric. 2024-09-11T07:24:36.824 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../036-python3-simplegeneric_0.8.1-3_all.deb ... 2024-09-11T07:24:36.867 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-09-11T07:24:36.876 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-pecan. 2024-09-11T07:24:36.893 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../047-python3-pecan_1.3.3-3ubuntu1_all.deb ... 2024-09-11T07:24:36.934 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-pecan (1.3.3-3ubuntu1) ... 2024-09-11T07:24:36.956 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-singledispatch. 2024-09-11T07:24:36.973 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../037-python3-singledispatch_3.4.0.3-2build1_all.deb ... 2024-09-11T07:24:37.014 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-singledispatch (3.4.0.3-2build1) ... 2024-09-11T07:24:37.203 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-singledispatch. 2024-09-11T07:24:37.219 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../037-python3-singledispatch_3.4.0.3-2build1_all.deb ... 2024-09-11T07:24:37.261 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-singledispatch (3.4.0.3-2build1) ... 2024-09-11T07:24:37.267 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-webob. 2024-09-11T07:24:37.287 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../038-python3-webob_1%3a1.8.5-2ubuntu0.1_all.deb ... 2024-09-11T07:24:37.322 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-werkzeug. 2024-09-11T07:24:37.325 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-webob (1:1.8.5-2ubuntu0.1) ... 2024-09-11T07:24:37.338 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../048-python3-werkzeug_0.16.1+dfsg1-2ubuntu0.2_all.deb ... 2024-09-11T07:24:37.397 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-werkzeug (0.16.1+dfsg1-2ubuntu0.2) ... 2024-09-11T07:24:37.637 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-soupsieve. 2024-09-11T07:24:37.653 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../039-python3-soupsieve_1.9.5+dfsg-1_all.deb ... 2024-09-11T07:24:37.695 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-soupsieve (1.9.5+dfsg-1) ... 2024-09-11T07:24:37.767 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-09-11T07:24:37.783 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../049-libsqlite3-mod-ceph_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:37.833 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking libsqlite3-mod-ceph (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:38.031 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-bs4. 2024-09-11T07:24:38.048 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../040-python3-bs4_4.8.2-1_all.deb ... 2024-09-11T07:24:38.089 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-bs4 (4.8.2-1) ... 2024-09-11T07:24:38.212 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package ceph-mgr. 2024-09-11T07:24:38.229 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../050-ceph-mgr_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:38.270 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking ceph-mgr (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:38.373 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-webob. 2024-09-11T07:24:38.390 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../038-python3-webob_1%3a1.8.5-2ubuntu0.1_all.deb ... 2024-09-11T07:24:38.418 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-waitress. 2024-09-11T07:24:38.431 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-webob (1:1.8.5-2ubuntu0.1) ... 2024-09-11T07:24:38.436 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../041-python3-waitress_1.4.1-1ubuntu0.1_all.deb ... 2024-09-11T07:24:38.479 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-waitress (1.4.1-1ubuntu0.1) ... 2024-09-11T07:24:38.774 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package ceph-mon. 2024-09-11T07:24:38.790 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../051-ceph-mon_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:38.792 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-soupsieve. 2024-09-11T07:24:38.810 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../039-python3-soupsieve_1.9.5+dfsg-1_all.deb ... 2024-09-11T07:24:38.832 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking ceph-mon (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:38.850 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-soupsieve (1.9.5+dfsg-1) ... 2024-09-11T07:24:39.203 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-bs4. 2024-09-11T07:24:39.219 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../040-python3-bs4_4.8.2-1_all.deb ... 2024-09-11T07:24:39.261 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-bs4 (4.8.2-1) ... 2024-09-11T07:24:39.629 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-tempita. 2024-09-11T07:24:39.639 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-waitress. 2024-09-11T07:24:39.647 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../042-python3-tempita_0.5.2-6_all.deb ... 2024-09-11T07:24:39.657 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../041-python3-waitress_1.4.1-1ubuntu0.1_all.deb ... 2024-09-11T07:24:39.679 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-tempita (0.5.2-6) ... 2024-09-11T07:24:39.701 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-waitress (1.4.1-1ubuntu0.1) ... 2024-09-11T07:24:39.998 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-paste. 2024-09-11T07:24:40.009 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-tempita. 2024-09-11T07:24:40.018 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../043-python3-paste_3.4.0+dfsg1-1_all.deb ... 2024-09-11T07:24:40.029 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../042-python3-tempita_0.5.2-6_all.deb ... 2024-09-11T07:24:40.056 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-paste (3.4.0+dfsg1-1) ... 2024-09-11T07:24:40.067 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-tempita (0.5.2-6) ... 2024-09-11T07:24:40.169 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package ceph-osd. 2024-09-11T07:24:40.188 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../052-ceph-osd_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:40.227 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking ceph-osd (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:40.341 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-09-11T07:24:40.357 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../044-python-pastedeploy-tpl_2.1.0-1_all.deb ... 2024-09-11T07:24:40.399 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python-pastedeploy-tpl (2.1.0-1) ... 2024-09-11T07:24:40.404 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-paste. 2024-09-11T07:24:40.419 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../043-python3-paste_3.4.0+dfsg1-1_all.deb ... 2024-09-11T07:24:40.462 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-paste (3.4.0+dfsg1-1) ... 2024-09-11T07:24:40.677 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-pastedeploy. 2024-09-11T07:24:40.693 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../045-python3-pastedeploy_2.1.0-1_all.deb ... 2024-09-11T07:24:40.727 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-pastedeploy (2.1.0-1) ... 2024-09-11T07:24:40.798 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-09-11T07:24:40.815 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../044-python-pastedeploy-tpl_2.1.0-1_all.deb ... 2024-09-11T07:24:40.857 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python-pastedeploy-tpl (2.1.0-1) ... 2024-09-11T07:24:41.055 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-webtest. 2024-09-11T07:24:41.072 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../046-python3-webtest_2.0.32-2_all.deb ... 2024-09-11T07:24:41.113 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-webtest (2.0.32-2) ... 2024-09-11T07:24:41.182 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-pastedeploy. 2024-09-11T07:24:41.199 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../045-python3-pastedeploy_2.1.0-1_all.deb ... 2024-09-11T07:24:41.240 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-pastedeploy (2.1.0-1) ... 2024-09-11T07:24:41.433 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-pecan. 2024-09-11T07:24:41.449 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../047-python3-pecan_1.3.3-3ubuntu1_all.deb ... 2024-09-11T07:24:41.491 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-pecan (1.3.3-3ubuntu1) ... 2024-09-11T07:24:41.543 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-webtest. 2024-09-11T07:24:41.559 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../046-python3-webtest_2.0.32-2_all.deb ... 2024-09-11T07:24:41.601 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-webtest (2.0.32-2) ... 2024-09-11T07:24:41.879 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-werkzeug. 2024-09-11T07:24:41.899 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../048-python3-werkzeug_0.16.1+dfsg1-2ubuntu0.2_all.deb ... 2024-09-11T07:24:41.937 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-werkzeug (0.16.1+dfsg1-2ubuntu0.2) ... 2024-09-11T07:24:41.946 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-pecan. 2024-09-11T07:24:41.962 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../047-python3-pecan_1.3.3-3ubuntu1_all.deb ... 2024-09-11T07:24:42.004 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-pecan (1.3.3-3ubuntu1) ... 2024-09-11T07:24:42.283 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-09-11T07:24:42.300 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../049-libsqlite3-mod-ceph_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:42.341 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking libsqlite3-mod-ceph (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:42.375 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-werkzeug. 2024-09-11T07:24:42.391 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../048-python3-werkzeug_0.16.1+dfsg1-2ubuntu0.2_all.deb ... 2024-09-11T07:24:42.422 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package ceph. 2024-09-11T07:24:42.433 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-werkzeug (0.16.1+dfsg1-2ubuntu0.2) ... 2024-09-11T07:24:42.440 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../053-ceph_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:42.480 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking ceph (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:42.702 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package ceph-mgr. 2024-09-11T07:24:42.718 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../050-ceph-mgr_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:42.760 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking ceph-mgr (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:42.803 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-09-11T07:24:42.807 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package ceph-fuse. 2024-09-11T07:24:42.824 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../049-libsqlite3-mod-ceph_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:42.825 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../054-ceph-fuse_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:42.861 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking libsqlite3-mod-ceph (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:42.865 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking ceph-fuse (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:43.223 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package ceph-mgr. 2024-09-11T07:24:43.239 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../050-ceph-mgr_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:43.259 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package ceph-mon. 2024-09-11T07:24:43.276 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../051-ceph-mon_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:43.281 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking ceph-mgr (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:43.317 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking ceph-mon (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:43.344 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package ceph-mds. 2024-09-11T07:24:43.361 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../055-ceph-mds_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:43.402 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking ceph-mds (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:43.768 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package ceph-mon. 2024-09-11T07:24:43.786 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../051-ceph-mon_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:43.859 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking ceph-mon (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:43.980 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package cephadm. 2024-09-11T07:24:43.999 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../056-cephadm_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:44.038 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking cephadm (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:44.146 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package ceph-osd. 2024-09-11T07:24:44.166 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../052-ceph-osd_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:44.204 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking ceph-osd (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:44.391 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-jinja2. 2024-09-11T07:24:44.411 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../057-python3-jinja2_2.10.1-2ubuntu0.3_all.deb ... 2024-09-11T07:24:44.449 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-jinja2 (2.10.1-2ubuntu0.3) ... 2024-09-11T07:24:44.692 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package ceph-osd. 2024-09-11T07:24:44.709 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../052-ceph-osd_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:44.750 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking ceph-osd (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:44.828 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-09-11T07:24:44.844 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../058-ceph-mgr-cephadm_17.2.7-1623-gd0e6828a-1focal_all.deb ... 2024-09-11T07:24:44.909 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking ceph-mgr-cephadm (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:45.281 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-repoze.lru. 2024-09-11T07:24:45.298 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../059-python3-repoze.lru_0.7-2_all.deb ... 2024-09-11T07:24:45.339 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-09-11T07:24:45.625 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package libjs-underscore. 2024-09-11T07:24:45.644 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../060-libjs-underscore_1.9.1~dfsg-1ubuntu0.20.04.1_all.deb ... 2024-09-11T07:24:45.691 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking libjs-underscore (1.9.1~dfsg-1ubuntu0.20.04.1) ... 2024-09-11T07:24:45.985 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package libjs-sphinxdoc. 2024-09-11T07:24:46.004 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../061-libjs-sphinxdoc_1.8.5-7ubuntu3_all.deb ... 2024-09-11T07:24:46.035 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking libjs-sphinxdoc (1.8.5-7ubuntu3) ... 2024-09-11T07:24:46.340 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package ceph. 2024-09-11T07:24:46.356 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../053-ceph_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:46.389 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-routes. 2024-09-11T07:24:46.398 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking ceph (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:46.406 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../062-python3-routes_2.4.1-2_all.deb ... 2024-09-11T07:24:46.447 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-routes (2.4.1-2) ... 2024-09-11T07:24:46.700 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package ceph-fuse. 2024-09-11T07:24:46.719 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../054-ceph-fuse_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:46.758 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking ceph-fuse (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:46.793 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-09-11T07:24:46.810 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../063-ceph-mgr-dashboard_17.2.7-1623-gd0e6828a-1focal_all.deb ... 2024-09-11T07:24:46.911 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package ceph. 2024-09-11T07:24:46.927 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../053-ceph_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:46.942 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking ceph-mgr-dashboard (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:46.969 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking ceph (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:47.195 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package ceph-mds. 2024-09-11T07:24:47.212 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../055-ceph-mds_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:47.253 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking ceph-mds (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:47.296 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package ceph-fuse. 2024-09-11T07:24:47.314 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../054-ceph-fuse_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:47.354 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking ceph-fuse (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:47.732 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package ceph-mds. 2024-09-11T07:24:47.751 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../055-ceph-mds_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:47.773 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package cephadm. 2024-09-11T07:24:47.789 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../056-cephadm_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:47.790 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking ceph-mds (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:47.856 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking cephadm (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:48.151 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-jinja2. 2024-09-11T07:24:48.171 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../057-python3-jinja2_2.10.1-2ubuntu0.3_all.deb ... 2024-09-11T07:24:48.209 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-jinja2 (2.10.1-2ubuntu0.3) ... 2024-09-11T07:24:48.352 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package cephadm. 2024-09-11T07:24:48.367 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../056-cephadm_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:24:48.372 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-decorator. 2024-09-11T07:24:48.390 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../064-python3-decorator_4.4.2-0ubuntu1_all.deb ... 2024-09-11T07:24:48.410 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking cephadm (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:48.456 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-decorator (4.4.2-0ubuntu1) ... 2024-09-11T07:24:48.531 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-09-11T07:24:48.548 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../058-ceph-mgr-cephadm_17.2.7-1623-gd0e6828a-1focal_all.deb ... 2024-09-11T07:24:48.589 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking ceph-mgr-cephadm (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:48.792 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package liblbfgsb0:amd64. 2024-09-11T07:24:48.809 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../065-liblbfgsb0_3.0+dfsg.3-7build1_amd64.deb ... 2024-09-11T07:24:48.821 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-jinja2. 2024-09-11T07:24:48.837 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../057-python3-jinja2_2.10.1-2ubuntu0.3_all.deb ... 2024-09-11T07:24:48.850 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking liblbfgsb0:amd64 (3.0+dfsg.3-7build1) ... 2024-09-11T07:24:48.879 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-jinja2 (2.10.1-2ubuntu0.3) ... 2024-09-11T07:24:48.975 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-repoze.lru. 2024-09-11T07:24:48.992 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../059-python3-repoze.lru_0.7-2_all.deb ... 2024-09-11T07:24:49.033 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-09-11T07:24:49.178 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-scipy. 2024-09-11T07:24:49.194 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../066-python3-scipy_1.3.3-3build1_amd64.deb ... 2024-09-11T07:24:49.236 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-scipy (1.3.3-3build1) ... 2024-09-11T07:24:49.241 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-09-11T07:24:49.258 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../058-ceph-mgr-cephadm_17.2.7-1623-gd0e6828a-1focal_all.deb ... 2024-09-11T07:24:49.286 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package libjs-underscore. 2024-09-11T07:24:49.299 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking ceph-mgr-cephadm (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:49.302 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../060-libjs-underscore_1.9.1~dfsg-1ubuntu0.20.04.1_all.deb ... 2024-09-11T07:24:49.344 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking libjs-underscore (1.9.1~dfsg-1ubuntu0.20.04.1) ... 2024-09-11T07:24:49.664 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package libjs-sphinxdoc. 2024-09-11T07:24:49.677 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-repoze.lru. 2024-09-11T07:24:49.680 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../061-libjs-sphinxdoc_1.8.5-7ubuntu3_all.deb ... 2024-09-11T07:24:49.697 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../059-python3-repoze.lru_0.7-2_all.deb ... 2024-09-11T07:24:49.722 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking libjs-sphinxdoc (1.8.5-7ubuntu3) ... 2024-09-11T07:24:49.735 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-09-11T07:24:50.015 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package libjs-underscore. 2024-09-11T07:24:50.032 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../060-libjs-underscore_1.9.1~dfsg-1ubuntu0.20.04.1_all.deb ... 2024-09-11T07:24:50.066 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-routes. 2024-09-11T07:24:50.073 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking libjs-underscore (1.9.1~dfsg-1ubuntu0.20.04.1) ... 2024-09-11T07:24:50.082 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../062-python3-routes_2.4.1-2_all.deb ... 2024-09-11T07:24:50.124 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-routes (2.4.1-2) ... 2024-09-11T07:24:50.367 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package libjs-sphinxdoc. 2024-09-11T07:24:50.385 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../061-libjs-sphinxdoc_1.8.5-7ubuntu3_all.deb ... 2024-09-11T07:24:50.419 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-09-11T07:24:50.426 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking libjs-sphinxdoc (1.8.5-7ubuntu3) ... 2024-09-11T07:24:50.439 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../063-ceph-mgr-dashboard_17.2.7-1623-gd0e6828a-1focal_all.deb ... 2024-09-11T07:24:50.477 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking ceph-mgr-dashboard (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:50.562 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-sklearn-lib. 2024-09-11T07:24:50.581 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../067-python3-sklearn-lib_0.22.2.post1+dfsg-5_amd64.deb ... 2024-09-11T07:24:50.620 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-sklearn-lib (0.22.2.post1+dfsg-5) ... 2024-09-11T07:24:50.770 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-routes. 2024-09-11T07:24:50.789 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../062-python3-routes_2.4.1-2_all.deb ... 2024-09-11T07:24:50.828 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-routes (2.4.1-2) ... 2024-09-11T07:24:51.164 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-09-11T07:24:51.183 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../063-ceph-mgr-dashboard_17.2.7-1623-gd0e6828a-1focal_all.deb ... 2024-09-11T07:24:51.190 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-joblib. 2024-09-11T07:24:51.206 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../068-python3-joblib_0.14.0-3_all.deb ... 2024-09-11T07:24:51.222 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking ceph-mgr-dashboard (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:51.248 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-joblib (0.14.0-3) ... 2024-09-11T07:24:51.677 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-sklearn. 2024-09-11T07:24:51.693 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../069-python3-sklearn_0.22.2.post1+dfsg-5_all.deb ... 2024-09-11T07:24:51.735 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-sklearn (0.22.2.post1+dfsg-5) ... 2024-09-11T07:24:51.783 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-decorator. 2024-09-11T07:24:51.802 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../064-python3-decorator_4.4.2-0ubuntu1_all.deb ... 2024-09-11T07:24:51.849 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-decorator (4.4.2-0ubuntu1) ... 2024-09-11T07:24:52.135 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package liblbfgsb0:amd64. 2024-09-11T07:24:52.155 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../065-liblbfgsb0_3.0+dfsg.3-7build1_amd64.deb ... 2024-09-11T07:24:52.193 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking liblbfgsb0:amd64 (3.0+dfsg.3-7build1) ... 2024-09-11T07:24:52.452 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-09-11T07:24:52.472 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../070-ceph-mgr-diskprediction-local_17.2.7-1623-gd0e6828a-1focal_all.deb ... 2024-09-11T07:24:52.501 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking ceph-mgr-diskprediction-local (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:52.504 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-scipy. 2024-09-11T07:24:52.521 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../066-python3-scipy_1.3.3-3build1_amd64.deb ... 2024-09-11T07:24:52.553 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-decorator. 2024-09-11T07:24:52.562 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-scipy (1.3.3-3build1) ... 2024-09-11T07:24:52.568 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../064-python3-decorator_4.4.2-0ubuntu1_all.deb ... 2024-09-11T07:24:52.611 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-decorator (4.4.2-0ubuntu1) ... 2024-09-11T07:24:52.938 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package liblbfgsb0:amd64. 2024-09-11T07:24:52.955 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../065-liblbfgsb0_3.0+dfsg.3-7build1_amd64.deb ... 2024-09-11T07:24:52.996 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking liblbfgsb0:amd64 (3.0+dfsg.3-7build1) ... 2024-09-11T07:24:53.349 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-scipy. 2024-09-11T07:24:53.369 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../066-python3-scipy_1.3.3-3build1_amd64.deb ... 2024-09-11T07:24:53.407 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-scipy (1.3.3-3build1) ... 2024-09-11T07:24:53.671 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-cachetools. 2024-09-11T07:24:53.691 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../071-python3-cachetools_4.0.0-1_all.deb ... 2024-09-11T07:24:53.729 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-cachetools (4.0.0-1) ... 2024-09-11T07:24:53.906 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-sklearn-lib. 2024-09-11T07:24:53.925 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../067-python3-sklearn-lib_0.22.2.post1+dfsg-5_amd64.deb ... 2024-09-11T07:24:53.964 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-sklearn-lib (0.22.2.post1+dfsg-5) ... 2024-09-11T07:24:54.041 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-pyasn1. 2024-09-11T07:24:54.060 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../072-python3-pyasn1_0.4.2-3build1_all.deb ... 2024-09-11T07:24:54.108 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-pyasn1 (0.4.2-3build1) ... 2024-09-11T07:24:54.476 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-joblib. 2024-09-11T07:24:54.486 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-09-11T07:24:54.495 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../068-python3-joblib_0.14.0-3_all.deb ... 2024-09-11T07:24:54.504 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../073-python3-pyasn1-modules_0.2.1-0.2build1_all.deb ... 2024-09-11T07:24:54.526 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-joblib (0.14.0-3) ... 2024-09-11T07:24:54.544 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-pyasn1-modules (0.2.1-0.2build1) ... 2024-09-11T07:24:54.922 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-rsa. 2024-09-11T07:24:54.940 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../074-python3-rsa_4.0-3_all.deb ... 2024-09-11T07:24:55.097 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-rsa (4.0-3) ... 2024-09-11T07:24:55.101 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-sklearn-lib. 2024-09-11T07:24:55.119 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../067-python3-sklearn-lib_0.22.2.post1+dfsg-5_amd64.deb ... 2024-09-11T07:24:55.159 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-sklearn-lib (0.22.2.post1+dfsg-5) ... 2024-09-11T07:24:55.222 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-sklearn. 2024-09-11T07:24:55.239 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../069-python3-sklearn_0.22.2.post1+dfsg-5_all.deb ... 2024-09-11T07:24:55.279 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-sklearn (0.22.2.post1+dfsg-5) ... 2024-09-11T07:24:55.671 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-joblib. 2024-09-11T07:24:55.690 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../068-python3-joblib_0.14.0-3_all.deb ... 2024-09-11T07:24:55.721 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-joblib (0.14.0-3) ... 2024-09-11T07:24:55.743 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-google-auth. 2024-09-11T07:24:55.761 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../075-python3-google-auth_1.5.1-2_all.deb ... 2024-09-11T07:24:55.801 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-google-auth (1.5.1-2) ... 2024-09-11T07:24:55.996 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-09-11T07:24:56.015 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../070-ceph-mgr-diskprediction-local_17.2.7-1623-gd0e6828a-1focal_all.deb ... 2024-09-11T07:24:56.054 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking ceph-mgr-diskprediction-local (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:56.100 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-sklearn. 2024-09-11T07:24:56.112 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-blinker. 2024-09-11T07:24:56.118 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../069-python3-sklearn_0.22.2.post1+dfsg-5_all.deb ... 2024-09-11T07:24:56.132 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../076-python3-blinker_1.4+dfsg1-0.3ubuntu1_all.deb ... 2024-09-11T07:24:56.158 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-sklearn (0.22.2.post1+dfsg-5) ... 2024-09-11T07:24:56.162 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-blinker (1.4+dfsg1-0.3ubuntu1) ... 2024-09-11T07:24:56.473 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-oauthlib. 2024-09-11T07:24:56.490 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../077-python3-oauthlib_3.1.0-1ubuntu2_all.deb ... 2024-09-11T07:24:56.531 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-oauthlib (3.1.0-1ubuntu2) ... 2024-09-11T07:24:56.791 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-09-11T07:24:56.809 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../070-ceph-mgr-diskprediction-local_17.2.7-1623-gd0e6828a-1focal_all.deb ... 2024-09-11T07:24:56.840 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking ceph-mgr-diskprediction-local (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:56.872 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-09-11T07:24:56.888 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../078-python3-requests-oauthlib_1.0.0-1.1build1_all.deb ... 2024-09-11T07:24:56.930 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-requests-oauthlib (1.0.0-1.1build1) ... 2024-09-11T07:24:57.215 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-cachetools. 2024-09-11T07:24:57.235 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../071-python3-cachetools_4.0.0-1_all.deb ... 2024-09-11T07:24:57.269 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-websocket. 2024-09-11T07:24:57.273 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-cachetools (4.0.0-1) ... 2024-09-11T07:24:57.285 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../079-python3-websocket_0.53.0-2ubuntu1_all.deb ... 2024-09-11T07:24:57.360 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-websocket (0.53.0-2ubuntu1) ... 2024-09-11T07:24:57.526 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-pyasn1. 2024-09-11T07:24:57.546 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../072-python3-pyasn1_0.4.2-3build1_all.deb ... 2024-09-11T07:24:57.576 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-pyasn1 (0.4.2-3build1) ... 2024-09-11T07:24:57.722 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-kubernetes. 2024-09-11T07:24:57.738 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../080-python3-kubernetes_7.0.0~a1-2_all.deb ... 2024-09-11T07:24:57.779 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-kubernetes (7.0.0~a1-2) ... 2024-09-11T07:24:57.854 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-09-11T07:24:57.874 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../073-python3-pyasn1-modules_0.2.1-0.2build1_all.deb ... 2024-09-11T07:24:57.929 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-pyasn1-modules (0.2.1-0.2build1) ... 2024-09-11T07:24:57.977 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-cachetools. 2024-09-11T07:24:57.996 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../071-python3-cachetools_4.0.0-1_all.deb ... 2024-09-11T07:24:58.035 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-cachetools (4.0.0-1) ... 2024-09-11T07:24:58.199 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-rsa. 2024-09-11T07:24:58.219 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../074-python3-rsa_4.0-3_all.deb ... 2024-09-11T07:24:58.257 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-rsa (4.0-3) ... 2024-09-11T07:24:58.363 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-pyasn1. 2024-09-11T07:24:58.379 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../072-python3-pyasn1_0.4.2-3build1_all.deb ... 2024-09-11T07:24:58.421 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-09-11T07:24:58.421 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-pyasn1 (0.4.2-3build1) ... 2024-09-11T07:24:58.440 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../081-ceph-mgr-k8sevents_17.2.7-1623-gd0e6828a-1focal_all.deb ... 2024-09-11T07:24:58.478 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking ceph-mgr-k8sevents (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:24:58.577 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-google-auth. 2024-09-11T07:24:58.593 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../075-python3-google-auth_1.5.1-2_all.deb ... 2024-09-11T07:24:58.635 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-google-auth (1.5.1-2) ... 2024-09-11T07:24:58.774 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-09-11T07:24:58.791 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../073-python3-pyasn1-modules_0.2.1-0.2build1_all.deb ... 2024-09-11T07:24:58.799 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package libonig5:amd64. 2024-09-11T07:24:58.815 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../082-libonig5_6.9.4-1_amd64.deb ... 2024-09-11T07:24:58.832 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-pyasn1-modules (0.2.1-0.2build1) ... 2024-09-11T07:24:58.857 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking libonig5:amd64 (6.9.4-1) ... 2024-09-11T07:24:58.980 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-blinker. 2024-09-11T07:24:58.999 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../076-python3-blinker_1.4+dfsg1-0.3ubuntu1_all.deb ... 2024-09-11T07:24:59.038 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-blinker (1.4+dfsg1-0.3ubuntu1) ... 2024-09-11T07:24:59.143 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-rsa. 2024-09-11T07:24:59.162 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../074-python3-rsa_4.0-3_all.deb ... 2024-09-11T07:24:59.202 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-rsa (4.0-3) ... 2024-09-11T07:24:59.244 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package libjq1:amd64. 2024-09-11T07:24:59.260 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../083-libjq1_1.6-1ubuntu0.20.04.1_amd64.deb ... 2024-09-11T07:24:59.318 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking libjq1:amd64 (1.6-1ubuntu0.20.04.1) ... 2024-09-11T07:24:59.341 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-oauthlib. 2024-09-11T07:24:59.357 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../077-python3-oauthlib_3.1.0-1ubuntu2_all.deb ... 2024-09-11T07:24:59.399 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-oauthlib (3.1.0-1ubuntu2) ... 2024-09-11T07:24:59.513 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-google-auth. 2024-09-11T07:24:59.529 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../075-python3-google-auth_1.5.1-2_all.deb ... 2024-09-11T07:24:59.571 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-google-auth (1.5.1-2) ... 2024-09-11T07:24:59.608 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package jq. 2024-09-11T07:24:59.628 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../084-jq_1.6-1ubuntu0.20.04.1_amd64.deb ... 2024-09-11T07:24:59.666 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking jq (1.6-1ubuntu0.20.04.1) ... 2024-09-11T07:24:59.719 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-09-11T07:24:59.737 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../078-python3-requests-oauthlib_1.0.0-1.1build1_all.deb ... 2024-09-11T07:24:59.777 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-requests-oauthlib (1.0.0-1.1build1) ... 2024-09-11T07:24:59.899 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-blinker. 2024-09-11T07:24:59.915 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../076-python3-blinker_1.4+dfsg1-0.3ubuntu1_all.deb ... 2024-09-11T07:24:59.949 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-blinker (1.4+dfsg1-0.3ubuntu1) ... 2024-09-11T07:24:59.962 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package socat. 2024-09-11T07:24:59.979 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../085-socat_1.7.3.3-2_amd64.deb ... 2024-09-11T07:25:00.020 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking socat (1.7.3.3-2) ... 2024-09-11T07:25:00.131 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-websocket. 2024-09-11T07:25:00.148 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../079-python3-websocket_0.53.0-2ubuntu1_all.deb ... 2024-09-11T07:25:00.189 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-websocket (0.53.0-2ubuntu1) ... 2024-09-11T07:25:00.227 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-oauthlib. 2024-09-11T07:25:00.246 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../077-python3-oauthlib_3.1.0-1ubuntu2_all.deb ... 2024-09-11T07:25:00.285 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-oauthlib (3.1.0-1ubuntu2) ... 2024-09-11T07:25:00.357 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package xmlstarlet. 2024-09-11T07:25:00.374 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../086-xmlstarlet_1.6.1-2build1_amd64.deb ... 2024-09-11T07:25:00.415 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking xmlstarlet (1.6.1-2build1) ... 2024-09-11T07:25:00.500 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-kubernetes. 2024-09-11T07:25:00.517 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../080-python3-kubernetes_7.0.0~a1-2_all.deb ... 2024-09-11T07:25:00.567 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-kubernetes (7.0.0~a1-2) ... 2024-09-11T07:25:00.597 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-09-11T07:25:00.615 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../078-python3-requests-oauthlib_1.0.0-1.1build1_all.deb ... 2024-09-11T07:25:00.655 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-requests-oauthlib (1.0.0-1.1build1) ... 2024-09-11T07:25:00.764 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package ceph-test. 2024-09-11T07:25:00.780 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../087-ceph-test_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:25:00.814 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking ceph-test (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:01.008 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-websocket. 2024-09-11T07:25:01.029 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../079-python3-websocket_0.53.0-2ubuntu1_all.deb ... 2024-09-11T07:25:01.066 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-websocket (0.53.0-2ubuntu1) ... 2024-09-11T07:25:01.217 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-09-11T07:25:01.233 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../081-ceph-mgr-k8sevents_17.2.7-1623-gd0e6828a-1focal_all.deb ... 2024-09-11T07:25:01.275 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking ceph-mgr-k8sevents (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:01.404 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-kubernetes. 2024-09-11T07:25:01.422 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../080-python3-kubernetes_7.0.0~a1-2_all.deb ... 2024-09-11T07:25:01.461 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-kubernetes (7.0.0~a1-2) ... 2024-09-11T07:25:01.594 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package libonig5:amd64. 2024-09-11T07:25:01.612 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../082-libonig5_6.9.4-1_amd64.deb ... 2024-09-11T07:25:01.653 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking libonig5:amd64 (6.9.4-1) ... 2024-09-11T07:25:02.031 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package libjq1:amd64. 2024-09-11T07:25:02.049 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../083-libjq1_1.6-1ubuntu0.20.04.1_amd64.deb ... 2024-09-11T07:25:02.089 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking libjq1:amd64 (1.6-1ubuntu0.20.04.1) ... 2024-09-11T07:25:02.152 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-09-11T07:25:02.171 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../081-ceph-mgr-k8sevents_17.2.7-1623-gd0e6828a-1focal_all.deb ... 2024-09-11T07:25:02.210 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking ceph-mgr-k8sevents (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:02.360 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package jq. 2024-09-11T07:25:02.377 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../084-jq_1.6-1ubuntu0.20.04.1_amd64.deb ... 2024-09-11T07:25:02.420 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking jq (1.6-1ubuntu0.20.04.1) ... 2024-09-11T07:25:02.539 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package libonig5:amd64. 2024-09-11T07:25:02.558 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../082-libonig5_6.9.4-1_amd64.deb ... 2024-09-11T07:25:02.597 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking libonig5:amd64 (6.9.4-1) ... 2024-09-11T07:25:02.673 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package socat. 2024-09-11T07:25:02.689 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../085-socat_1.7.3.3-2_amd64.deb ... 2024-09-11T07:25:02.731 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking socat (1.7.3.3-2) ... 2024-09-11T07:25:02.942 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package libjq1:amd64. 2024-09-11T07:25:02.959 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../083-libjq1_1.6-1ubuntu0.20.04.1_amd64.deb ... 2024-09-11T07:25:03.008 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking libjq1:amd64 (1.6-1ubuntu0.20.04.1) ... 2024-09-11T07:25:03.068 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package xmlstarlet. 2024-09-11T07:25:03.085 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../086-xmlstarlet_1.6.1-2build1_amd64.deb ... 2024-09-11T07:25:03.127 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking xmlstarlet (1.6.1-2build1) ... 2024-09-11T07:25:03.286 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package jq. 2024-09-11T07:25:03.305 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../084-jq_1.6-1ubuntu0.20.04.1_amd64.deb ... 2024-09-11T07:25:03.344 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking jq (1.6-1ubuntu0.20.04.1) ... 2024-09-11T07:25:03.465 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package ceph-test. 2024-09-11T07:25:03.481 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../087-ceph-test_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:25:03.523 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking ceph-test (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:03.626 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package socat. 2024-09-11T07:25:03.643 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../085-socat_1.7.3.3-2_amd64.deb ... 2024-09-11T07:25:03.684 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking socat (1.7.3.3-2) ... 2024-09-11T07:25:03.979 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package xmlstarlet. 2024-09-11T07:25:03.997 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../086-xmlstarlet_1.6.1-2build1_amd64.deb ... 2024-09-11T07:25:04.070 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking xmlstarlet (1.6.1-2build1) ... 2024-09-11T07:25:04.409 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package ceph-test. 2024-09-11T07:25:04.426 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../087-ceph-test_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:25:04.467 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking ceph-test (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:05.410 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package ceph-volume. 2024-09-11T07:25:05.426 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../088-ceph-volume_17.2.7-1623-gd0e6828a-1focal_all.deb ... 2024-09-11T07:25:05.467 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking ceph-volume (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:05.798 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package fonts-mathjax. 2024-09-11T07:25:05.817 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../089-fonts-mathjax_2.7.4+dfsg-1_all.deb ... 2024-09-11T07:25:05.872 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking fonts-mathjax (2.7.4+dfsg-1) ... 2024-09-11T07:25:06.418 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package libcephfs-dev. 2024-09-11T07:25:06.435 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../090-libcephfs-dev_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:25:06.476 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking libcephfs-dev (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:06.879 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package nvme-cli. 2024-09-11T07:25:06.895 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../091-nvme-cli_1.9-1ubuntu0.1_amd64.deb ... 2024-09-11T07:25:06.955 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking nvme-cli (1.9-1ubuntu0.1) ... 2024-09-11T07:25:07.317 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package libjs-mathjax. 2024-09-11T07:25:07.337 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../092-libjs-mathjax_2.7.4+dfsg-1_all.deb ... 2024-09-11T07:25:07.375 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking libjs-mathjax (2.7.4+dfsg-1) ... 2024-09-11T07:25:08.261 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package ceph-volume. 2024-09-11T07:25:08.280 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../088-ceph-volume_17.2.7-1623-gd0e6828a-1focal_all.deb ... 2024-09-11T07:25:08.318 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking ceph-volume (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:08.640 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package fonts-mathjax. 2024-09-11T07:25:08.657 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../089-fonts-mathjax_2.7.4+dfsg-1_all.deb ... 2024-09-11T07:25:08.694 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking fonts-mathjax (2.7.4+dfsg-1) ... 2024-09-11T07:25:09.039 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python-natsort-doc. 2024-09-11T07:25:09.059 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../093-python-natsort-doc_7.0.1-1_all.deb ... 2024-09-11T07:25:09.071 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package ceph-volume. 2024-09-11T07:25:09.090 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../088-ceph-volume_17.2.7-1623-gd0e6828a-1focal_all.deb ... 2024-09-11T07:25:09.097 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python-natsort-doc (7.0.1-1) ... 2024-09-11T07:25:09.129 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking ceph-volume (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:09.173 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package libcephfs-dev. 2024-09-11T07:25:09.189 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../090-libcephfs-dev_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:25:09.231 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking libcephfs-dev (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:09.466 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-atomicwrites. 2024-09-11T07:25:09.483 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../094-python3-atomicwrites_1.1.5-2build1_all.deb ... 2024-09-11T07:25:09.484 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package fonts-mathjax. 2024-09-11T07:25:09.500 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../089-fonts-mathjax_2.7.4+dfsg-1_all.deb ... 2024-09-11T07:25:09.524 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-atomicwrites (1.1.5-2build1) ... 2024-09-11T07:25:09.542 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking fonts-mathjax (2.7.4+dfsg-1) ... 2024-09-11T07:25:09.618 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package nvme-cli. 2024-09-11T07:25:09.634 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../091-nvme-cli_1.9-1ubuntu0.1_amd64.deb ... 2024-09-11T07:25:09.695 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking nvme-cli (1.9-1ubuntu0.1) ... 2024-09-11T07:25:09.844 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-attr. 2024-09-11T07:25:09.865 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../095-python3-attr_19.3.0-2_all.deb ... 2024-09-11T07:25:09.927 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-attr (19.3.0-2) ... 2024-09-11T07:25:10.050 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package libjs-mathjax. 2024-09-11T07:25:10.068 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../092-libjs-mathjax_2.7.4+dfsg-1_all.deb ... 2024-09-11T07:25:10.083 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package libcephfs-dev. 2024-09-11T07:25:10.099 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../090-libcephfs-dev_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:25:10.108 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking libjs-mathjax (2.7.4+dfsg-1) ... 2024-09-11T07:25:10.141 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking libcephfs-dev (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:10.289 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-webencodings. 2024-09-11T07:25:10.306 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../096-python3-webencodings_0.5.1-1ubuntu1_all.deb ... 2024-09-11T07:25:10.346 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-webencodings (0.5.1-1ubuntu1) ... 2024-09-11T07:25:10.553 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package nvme-cli. 2024-09-11T07:25:10.569 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../091-nvme-cli_1.9-1ubuntu0.1_amd64.deb ... 2024-09-11T07:25:10.629 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking nvme-cli (1.9-1ubuntu0.1) ... 2024-09-11T07:25:10.674 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-html5lib. 2024-09-11T07:25:10.691 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../097-python3-html5lib_1.0.1-2_all.deb ... 2024-09-11T07:25:10.732 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-html5lib (1.0.1-2) ... 2024-09-11T07:25:11.010 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package libjs-mathjax. 2024-09-11T07:25:11.030 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../092-libjs-mathjax_2.7.4+dfsg-1_all.deb ... 2024-09-11T07:25:11.076 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking libjs-mathjax (2.7.4+dfsg-1) ... 2024-09-11T07:25:11.102 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-lxml:amd64. 2024-09-11T07:25:11.121 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../098-python3-lxml_4.5.0-1ubuntu0.5_amd64.deb ... 2024-09-11T07:25:11.185 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-lxml:amd64 (4.5.0-1ubuntu0.5) ... 2024-09-11T07:25:11.706 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-pastescript. 2024-09-11T07:25:11.719 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python-natsort-doc. 2024-09-11T07:25:11.723 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../099-python3-pastescript_2.0.2-4_all.deb ... 2024-09-11T07:25:11.738 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../093-python-natsort-doc_7.0.1-1_all.deb ... 2024-09-11T07:25:11.764 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-09-11T07:25:11.777 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python-natsort-doc (7.0.1-1) ... 2024-09-11T07:25:12.100 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-pluggy. 2024-09-11T07:25:12.121 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../100-python3-pluggy_0.13.0-2_all.deb ... 2024-09-11T07:25:12.130 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-atomicwrites. 2024-09-11T07:25:12.147 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../094-python3-atomicwrites_1.1.5-2build1_all.deb ... 2024-09-11T07:25:12.183 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-pluggy (0.13.0-2) ... 2024-09-11T07:25:12.188 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-atomicwrites (1.1.5-2build1) ... 2024-09-11T07:25:12.466 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-attr. 2024-09-11T07:25:12.485 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../095-python3-attr_19.3.0-2_all.deb ... 2024-09-11T07:25:12.516 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-attr (19.3.0-2) ... 2024-09-11T07:25:12.528 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-psutil. 2024-09-11T07:25:12.546 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../101-python3-psutil_5.5.1-1ubuntu4_amd64.deb ... 2024-09-11T07:25:12.586 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-psutil (5.5.1-1ubuntu4) ... 2024-09-11T07:25:12.761 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python-natsort-doc. 2024-09-11T07:25:12.780 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../093-python-natsort-doc_7.0.1-1_all.deb ... 2024-09-11T07:25:12.811 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-webencodings. 2024-09-11T07:25:12.819 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python-natsort-doc (7.0.1-1) ... 2024-09-11T07:25:12.831 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../096-python3-webencodings_0.5.1-1ubuntu1_all.deb ... 2024-09-11T07:25:12.868 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-webencodings (0.5.1-1ubuntu1) ... 2024-09-11T07:25:12.948 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-py. 2024-09-11T07:25:12.964 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../102-python3-py_1.8.1-1ubuntu0.1_all.deb ... 2024-09-11T07:25:13.006 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-py (1.8.1-1ubuntu0.1) ... 2024-09-11T07:25:13.113 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-atomicwrites. 2024-09-11T07:25:13.130 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../094-python3-atomicwrites_1.1.5-2build1_all.deb ... 2024-09-11T07:25:13.188 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-atomicwrites (1.1.5-2build1) ... 2024-09-11T07:25:13.188 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-html5lib. 2024-09-11T07:25:13.205 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../097-python3-html5lib_1.0.1-2_all.deb ... 2024-09-11T07:25:13.246 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-html5lib (1.0.1-2) ... 2024-09-11T07:25:13.359 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-pyinotify. 2024-09-11T07:25:13.380 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../103-python3-pyinotify_0.9.6-1.2ubuntu1_all.deb ... 2024-09-11T07:25:13.442 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-pyinotify (0.9.6-1.2ubuntu1) ... 2024-09-11T07:25:13.491 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-attr. 2024-09-11T07:25:13.508 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../095-python3-attr_19.3.0-2_all.deb ... 2024-09-11T07:25:13.549 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-attr (19.3.0-2) ... 2024-09-11T07:25:13.591 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-lxml:amd64. 2024-09-11T07:25:13.609 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../098-python3-lxml_4.5.0-1ubuntu0.5_amd64.deb ... 2024-09-11T07:25:13.649 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-lxml:amd64 (4.5.0-1ubuntu0.5) ... 2024-09-11T07:25:13.773 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-wcwidth. 2024-09-11T07:25:13.791 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../104-python3-wcwidth_0.1.8+dfsg1-3_all.deb ... 2024-09-11T07:25:13.831 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-wcwidth (0.1.8+dfsg1-3) ... 2024-09-11T07:25:13.894 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-webencodings. 2024-09-11T07:25:13.914 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../096-python3-webencodings_0.5.1-1ubuntu1_all.deb ... 2024-09-11T07:25:13.952 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-webencodings (0.5.1-1ubuntu1) ... 2024-09-11T07:25:14.128 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-pastescript. 2024-09-11T07:25:14.145 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../099-python3-pastescript_2.0.2-4_all.deb ... 2024-09-11T07:25:14.159 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-pytest. 2024-09-11T07:25:14.176 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../105-python3-pytest_4.6.9-1_all.deb ... 2024-09-11T07:25:14.185 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-09-11T07:25:14.217 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-pytest (4.6.9-1) ... 2024-09-11T07:25:14.280 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-html5lib. 2024-09-11T07:25:14.296 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../097-python3-html5lib_1.0.1-2_all.deb ... 2024-09-11T07:25:14.337 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-html5lib (1.0.1-2) ... 2024-09-11T07:25:14.506 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-pluggy. 2024-09-11T07:25:14.522 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../100-python3-pluggy_0.13.0-2_all.deb ... 2024-09-11T07:25:14.564 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-pluggy (0.13.0-2) ... 2024-09-11T07:25:14.596 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package python3-simplejson. 2024-09-11T07:25:14.614 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../106-python3-simplejson_3.16.0-2ubuntu2_amd64.deb ... 2024-09-11T07:25:14.654 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking python3-simplejson (3.16.0-2ubuntu2) ... 2024-09-11T07:25:14.682 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-lxml:amd64. 2024-09-11T07:25:14.700 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../098-python3-lxml_4.5.0-1ubuntu0.5_amd64.deb ... 2024-09-11T07:25:14.765 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-lxml:amd64 (4.5.0-1ubuntu0.5) ... 2024-09-11T07:25:14.867 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-psutil. 2024-09-11T07:25:14.883 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../101-python3-psutil_5.5.1-1ubuntu4_amd64.deb ... 2024-09-11T07:25:14.941 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-psutil (5.5.1-1ubuntu4) ... 2024-09-11T07:25:14.957 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-09-11T07:25:14.977 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../107-qttranslations5-l10n_5.12.8-0ubuntu1_all.deb ... 2024-09-11T07:25:15.048 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking qttranslations5-l10n (5.12.8-0ubuntu1) ... 2024-09-11T07:25:15.227 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-pastescript. 2024-09-11T07:25:15.244 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../099-python3-pastescript_2.0.2-4_all.deb ... 2024-09-11T07:25:15.278 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-py. 2024-09-11T07:25:15.296 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../102-python3-py_1.8.1-1ubuntu0.1_all.deb ... 2024-09-11T07:25:15.310 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-09-11T07:25:15.336 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-py (1.8.1-1ubuntu0.1) ... 2024-09-11T07:25:15.630 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-pluggy. 2024-09-11T07:25:15.647 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../100-python3-pluggy_0.13.0-2_all.deb ... 2024-09-11T07:25:15.664 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-pyinotify. 2024-09-11T07:25:15.681 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../103-python3-pyinotify_0.9.6-1.2ubuntu1_all.deb ... 2024-09-11T07:25:15.688 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-pluggy (0.13.0-2) ... 2024-09-11T07:25:15.713 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-pyinotify (0.9.6-1.2ubuntu1) ... 2024-09-11T07:25:15.870 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package radosgw. 2024-09-11T07:25:15.890 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../108-radosgw_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:25:15.929 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking radosgw (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:16.027 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-wcwidth. 2024-09-11T07:25:16.033 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-psutil. 2024-09-11T07:25:16.048 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../104-python3-wcwidth_0.1.8+dfsg1-3_all.deb ... 2024-09-11T07:25:16.051 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../101-python3-psutil_5.5.1-1ubuntu4_amd64.deb ... 2024-09-11T07:25:16.085 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-wcwidth (0.1.8+dfsg1-3) ... 2024-09-11T07:25:16.091 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-psutil (5.5.1-1ubuntu4) ... 2024-09-11T07:25:16.371 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-pytest. 2024-09-11T07:25:16.391 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../105-python3-pytest_4.6.9-1_all.deb ... 2024-09-11T07:25:16.429 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-pytest (4.6.9-1) ... 2024-09-11T07:25:16.461 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-py. 2024-09-11T07:25:16.477 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../102-python3-py_1.8.1-1ubuntu0.1_all.deb ... 2024-09-11T07:25:16.518 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-py (1.8.1-1ubuntu0.1) ... 2024-09-11T07:25:16.783 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package python3-simplejson. 2024-09-11T07:25:16.799 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../106-python3-simplejson_3.16.0-2ubuntu2_amd64.deb ... 2024-09-11T07:25:16.838 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-pyinotify. 2024-09-11T07:25:16.840 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking python3-simplejson (3.16.0-2ubuntu2) ... 2024-09-11T07:25:16.855 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../103-python3-pyinotify_0.9.6-1.2ubuntu1_all.deb ... 2024-09-11T07:25:16.897 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-pyinotify (0.9.6-1.2ubuntu1) ... 2024-09-11T07:25:17.169 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-09-11T07:25:17.187 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../107-qttranslations5-l10n_5.12.8-0ubuntu1_all.deb ... 2024-09-11T07:25:17.227 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking qttranslations5-l10n (5.12.8-0ubuntu1) ... 2024-09-11T07:25:17.233 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-wcwidth. 2024-09-11T07:25:17.249 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../104-python3-wcwidth_0.1.8+dfsg1-3_all.deb ... 2024-09-11T07:25:17.290 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-wcwidth (0.1.8+dfsg1-3) ... 2024-09-11T07:25:17.621 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-pytest. 2024-09-11T07:25:17.624 INFO:teuthology.orchestra.run.smithi115.stdout:Selecting previously unselected package rbd-fuse. 2024-09-11T07:25:17.637 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../105-python3-pytest_4.6.9-1_all.deb ... 2024-09-11T07:25:17.642 INFO:teuthology.orchestra.run.smithi115.stdout:Preparing to unpack .../109-rbd-fuse_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:25:17.678 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-pytest (4.6.9-1) ... 2024-09-11T07:25:17.682 INFO:teuthology.orchestra.run.smithi115.stdout:Unpacking rbd-fuse (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:17.998 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package radosgw. 2024-09-11T07:25:18.000 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-attr (19.3.0-2) ... 2024-09-11T07:25:18.014 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../108-radosgw_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:25:18.032 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package python3-simplejson. 2024-09-11T07:25:18.051 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../106-python3-simplejson_3.16.0-2ubuntu2_amd64.deb ... 2024-09-11T07:25:18.055 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking radosgw (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:18.090 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking python3-simplejson (3.16.0-2ubuntu2) ... 2024-09-11T07:25:18.368 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-09-11T07:25:18.371 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up librabbitmq4:amd64 (0.10.0-1) ... 2024-09-11T07:25:18.388 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../107-qttranslations5-l10n_5.12.8-0ubuntu1_all.deb ... 2024-09-11T07:25:18.418 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking qttranslations5-l10n (5.12.8-0ubuntu1) ... 2024-09-11T07:25:18.497 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up libdouble-conversion3:amd64 (3.1.5-4ubuntu1) ... 2024-09-11T07:25:18.623 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up nvme-cli (1.9-1ubuntu0.1) ... 2024-09-11T07:25:18.851 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up cephadm (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:19.181 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package radosgw. 2024-09-11T07:25:19.202 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../108-radosgw_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:25:19.265 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking radosgw (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:19.371 INFO:teuthology.orchestra.run.smithi115.stdout:Adding system user cephadm....done 2024-09-11T07:25:19.540 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up fonts-mathjax (2.7.4+dfsg-1) ... 2024-09-11T07:25:19.691 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-waitress (1.4.1-1ubuntu0.1) ... 2024-09-11T07:25:19.792 INFO:teuthology.orchestra.run.smithi181.stdout:Selecting previously unselected package rbd-fuse. 2024-09-11T07:25:19.809 INFO:teuthology.orchestra.run.smithi181.stdout:Preparing to unpack .../109-rbd-fuse_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:25:19.858 INFO:teuthology.orchestra.run.smithi181.stdout:Unpacking rbd-fuse (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:20.034 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-09-11T07:25:20.188 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-attr (19.3.0-2) ... 2024-09-11T07:25:20.294 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up libjs-mathjax (2.7.4+dfsg-1) ... 2024-09-11T07:25:20.428 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up liboath0 (2.6.1-1.3) ... 2024-09-11T07:25:20.517 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up librabbitmq4:amd64 (0.10.0-1) ... 2024-09-11T07:25:20.554 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-py (1.8.1-1ubuntu0.1) ... 2024-09-11T07:25:20.643 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up libdouble-conversion3:amd64 (3.1.5-4ubuntu1) ... 2024-09-11T07:25:20.769 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up nvme-cli (1.9-1ubuntu0.1) ... 2024-09-11T07:25:20.931 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-joblib (0.14.0-3) ... 2024-09-11T07:25:20.979 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up cephadm (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:21.050 INFO:teuthology.orchestra.run.smithi150.stdout:Selecting previously unselected package rbd-fuse. 2024-09-11T07:25:21.067 INFO:teuthology.orchestra.run.smithi150.stdout:Preparing to unpack .../109-rbd-fuse_17.2.7-1623-gd0e6828a-1focal_amd64.deb ... 2024-09-11T07:25:21.108 INFO:teuthology.orchestra.run.smithi150.stdout:Unpacking rbd-fuse (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:21.358 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-jwt (1.7.1-2ubuntu2.1) ... 2024-09-11T07:25:21.462 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-attr (19.3.0-2) ... 2024-09-11T07:25:21.531 INFO:teuthology.orchestra.run.smithi181.stdout:Adding system user cephadm....done 2024-09-11T07:25:21.617 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-cachetools (4.0.0-1) ... 2024-09-11T07:25:21.676 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up fonts-mathjax (2.7.4+dfsg-1) ... 2024-09-11T07:25:21.791 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up librabbitmq4:amd64 (0.10.0-1) ... 2024-09-11T07:25:21.802 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-waitress (1.4.1-1ubuntu0.1) ... 2024-09-11T07:25:21.902 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-bcrypt (3.1.7-2ubuntu1) ... 2024-09-11T07:25:21.917 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up libdouble-conversion3:amd64 (3.1.5-4ubuntu1) ... 2024-09-11T07:25:22.043 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up nvme-cli (1.9-1ubuntu0.1) ... 2024-09-11T07:25:22.171 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-09-11T07:25:22.228 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-pyinotify (0.9.6-1.2ubuntu1) ... 2024-09-11T07:25:22.268 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up cephadm (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:22.455 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up libjs-mathjax (2.7.4+dfsg-1) ... 2024-09-11T07:25:22.538 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-ceph-argparse (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:22.583 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up liboath0 (2.6.1-1.3) ... 2024-09-11T07:25:22.710 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-py (1.8.1-1ubuntu0.1) ... 2024-09-11T07:25:22.856 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-sklearn-lib (0.22.2.post1+dfsg-5) ... 2024-09-11T07:25:22.873 INFO:teuthology.orchestra.run.smithi150.stdout:Adding system user cephadm....done 2024-09-11T07:25:22.982 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-markupsafe (1.1.0-1build2) ... 2024-09-11T07:25:23.034 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up fonts-mathjax (2.7.4+dfsg-1) ... 2024-09-11T07:25:23.036 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-joblib (0.14.0-3) ... 2024-09-11T07:25:23.161 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-waitress (1.4.1-1ubuntu0.1) ... 2024-09-11T07:25:23.266 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-webencodings (0.5.1-1ubuntu1) ... 2024-09-11T07:25:23.438 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-jwt (1.7.1-2ubuntu2.1) ... 2024-09-11T07:25:23.495 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-09-11T07:25:23.544 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up libpcre2-16-0:amd64 (10.34-7ubuntu0.1) ... 2024-09-11T07:25:23.643 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-psutil (5.5.1-1ubuntu4) ... 2024-09-11T07:25:23.723 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-cachetools (4.0.0-1) ... 2024-09-11T07:25:23.789 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up libjs-mathjax (2.7.4+dfsg-1) ... 2024-09-11T07:25:23.948 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up liboath0 (2.6.1-1.3) ... 2024-09-11T07:25:23.995 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-natsort (7.0.1-1) ... 2024-09-11T07:25:24.024 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-bcrypt (3.1.7-2ubuntu1) ... 2024-09-11T07:25:24.076 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-py (1.8.1-1ubuntu0.1) ... 2024-09-11T07:25:24.279 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-atomicwrites (1.1.5-2build1) ... 2024-09-11T07:25:24.300 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-pyinotify (0.9.6-1.2ubuntu1) ... 2024-09-11T07:25:24.419 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-joblib (0.14.0-3) ... 2024-09-11T07:25:24.564 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-simplejson (3.16.0-2ubuntu2) ... 2024-09-11T07:25:24.601 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-ceph-argparse (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:24.838 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-jwt (1.7.1-2ubuntu2.1) ... 2024-09-11T07:25:24.902 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-sklearn-lib (0.22.2.post1+dfsg-5) ... 2024-09-11T07:25:24.915 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-decorator (4.4.2-0ubuntu1) ... 2024-09-11T07:25:25.021 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-markupsafe (1.1.0-1build2) ... 2024-09-11T07:25:25.156 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-cachetools (4.0.0-1) ... 2024-09-11T07:25:25.216 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-jinja2 (2.10.1-2ubuntu0.3) ... 2024-09-11T07:25:25.289 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-webencodings (0.5.1-1ubuntu1) ... 2024-09-11T07:25:25.440 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-bcrypt (3.1.7-2ubuntu1) ... 2024-09-11T07:25:25.551 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-tempita (0.5.2-6) ... 2024-09-11T07:25:25.592 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up libpcre2-16-0:amd64 (10.34-7ubuntu0.1) ... 2024-09-11T07:25:25.758 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-pyinotify (0.9.6-1.2ubuntu1) ... 2024-09-11T07:25:25.818 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-packaging (20.3-1) ... 2024-09-11T07:25:26.059 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-ceph-argparse (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:26.177 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-psutil (5.5.1-1ubuntu4) ... 2024-09-11T07:25:26.352 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-sklearn-lib (0.22.2.post1+dfsg-5) ... 2024-09-11T07:25:26.478 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-markupsafe (1.1.0-1build2) ... 2024-09-11T07:25:26.536 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python-pastedeploy-tpl (2.1.0-1) ... 2024-09-11T07:25:26.642 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-natsort (7.0.1-1) ... 2024-09-11T07:25:26.662 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up qttranslations5-l10n (5.12.8-0ubuntu1) ... 2024-09-11T07:25:26.788 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-wcwidth (0.1.8+dfsg1-3) ... 2024-09-11T07:25:26.822 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-webencodings (0.5.1-1ubuntu1) ... 2024-09-11T07:25:26.952 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-atomicwrites (1.1.5-2build1) ... 2024-09-11T07:25:27.106 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-paste (3.4.0+dfsg1-1) ... 2024-09-11T07:25:27.115 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up libpcre2-16-0:amd64 (10.34-7ubuntu0.1) ... 2024-09-11T07:25:27.241 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-psutil (5.5.1-1ubuntu4) ... 2024-09-11T07:25:27.244 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-simplejson (3.16.0-2ubuntu2) ... 2024-09-11T07:25:27.558 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-werkzeug (0.16.1+dfsg1-2ubuntu0.2) ... 2024-09-11T07:25:27.587 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-decorator (4.4.2-0ubuntu1) ... 2024-09-11T07:25:27.642 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-natsort (7.0.1-1) ... 2024-09-11T07:25:27.888 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-jinja2 (2.10.1-2ubuntu0.3) ... 2024-09-11T07:25:27.918 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-cryptography (2.8-3ubuntu0.3) ... 2024-09-11T07:25:27.943 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-atomicwrites (1.1.5-2build1) ... 2024-09-11T07:25:28.197 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-tempita (0.5.2-6) ... 2024-09-11T07:25:28.219 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-simplejson (3.16.0-2ubuntu2) ... 2024-09-11T07:25:28.270 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up socat (1.7.3.3-2) ... 2024-09-11T07:25:28.438 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-ceph-common (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:28.482 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-packaging (20.3-1) ... 2024-09-11T07:25:28.546 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-decorator (4.4.2-0ubuntu1) ... 2024-09-11T07:25:28.783 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python-pastedeploy-tpl (2.1.0-1) ... 2024-09-11T07:25:28.797 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up libqt5core5a:amd64 (5.12.8+dfsg-0ubuntu2.1) ... 2024-09-11T07:25:28.830 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-jinja2 (2.10.1-2ubuntu0.3) ... 2024-09-11T07:25:28.932 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-html5lib (1.0.1-2) ... 2024-09-11T07:25:28.951 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up qttranslations5-l10n (5.12.8-0ubuntu1) ... 2024-09-11T07:25:29.077 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-wcwidth (0.1.8+dfsg1-3) ... 2024-09-11T07:25:29.198 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-tempita (0.5.2-6) ... 2024-09-11T07:25:29.283 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up librdkafka1:amd64 (1.2.1-1ubuntu1) ... 2024-09-11T07:25:29.361 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-paste (3.4.0+dfsg1-1) ... 2024-09-11T07:25:29.417 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up xmlstarlet (1.6.1-2build1) ... 2024-09-11T07:25:29.518 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-pluggy (0.13.0-2) ... 2024-09-11T07:25:29.564 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-packaging (20.3-1) ... 2024-09-11T07:25:29.754 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-werkzeug (0.16.1+dfsg1-2ubuntu0.2) ... 2024-09-11T07:25:29.838 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-lxml:amd64 (4.5.0-1ubuntu0.5) ... 2024-09-11T07:25:30.097 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-cryptography (2.8-3ubuntu0.3) ... 2024-09-11T07:25:30.165 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up libqt5dbus5:amd64 (5.12.8+dfsg-0ubuntu2.1) ... 2024-09-11T07:25:30.292 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up liblua5.3-0:amd64 (5.3.3-1.1ubuntu2) ... 2024-09-11T07:25:30.308 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python-pastedeploy-tpl (2.1.0-1) ... 2024-09-11T07:25:30.425 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-pyasn1 (0.4.2-3build1) ... 2024-09-11T07:25:30.434 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up qttranslations5-l10n (5.12.8-0ubuntu1) ... 2024-09-11T07:25:30.449 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up socat (1.7.3.3-2) ... 2024-09-11T07:25:30.560 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-wcwidth (0.1.8+dfsg1-3) ... 2024-09-11T07:25:30.575 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-ceph-common (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:30.760 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-singledispatch (3.4.0.3-2build1) ... 2024-09-11T07:25:30.853 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-paste (3.4.0+dfsg1-1) ... 2024-09-11T07:25:30.910 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up libqt5core5a:amd64 (5.12.8+dfsg-0ubuntu2.1) ... 2024-09-11T07:25:31.044 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-html5lib (1.0.1-2) ... 2024-09-11T07:25:31.052 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-logutils (0.3.3-7) ... 2024-09-11T07:25:31.255 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-werkzeug (0.16.1+dfsg1-2ubuntu0.2) ... 2024-09-11T07:25:31.345 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up liblttng-ust0:amd64 (2.11.0-1) ... 2024-09-11T07:25:31.413 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up librdkafka1:amd64 (1.2.1-1ubuntu1) ... 2024-09-11T07:25:31.480 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-09-11T07:25:31.538 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up xmlstarlet (1.6.1-2build1) ... 2024-09-11T07:25:31.647 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-pluggy (0.13.0-2) ... 2024-09-11T07:25:31.648 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-cryptography (2.8-3ubuntu0.3) ... 2024-09-11T07:25:31.781 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-prettytable (0.7.2-5) ... 2024-09-11T07:25:31.940 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-lxml:amd64 (4.5.0-1ubuntu0.5) ... 2024-09-11T07:25:32.008 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up socat (1.7.3.3-2) ... 2024-09-11T07:25:32.073 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-soupsieve (1.9.5+dfsg-1) ... 2024-09-11T07:25:32.134 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-ceph-common (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:32.258 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up libqt5dbus5:amd64 (5.12.8+dfsg-0ubuntu2.1) ... 2024-09-11T07:25:32.358 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-websocket (0.53.0-2ubuntu1) ... 2024-09-11T07:25:32.393 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up liblua5.3-0:amd64 (5.3.3-1.1ubuntu2) ... 2024-09-11T07:25:32.452 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up libqt5core5a:amd64 (5.12.8+dfsg-0ubuntu2.1) ... 2024-09-11T07:25:32.519 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-pyasn1 (0.4.2-3build1) ... 2024-09-11T07:25:32.586 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-html5lib (1.0.1-2) ... 2024-09-11T07:25:32.729 INFO:teuthology.orchestra.run.smithi115.stdout:update-alternatives: using /usr/bin/python3-wsdump to provide /usr/bin/wsdump (wsdump) in auto mode 2024-09-11T07:25:32.870 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-singledispatch (3.4.0.3-2build1) ... 2024-09-11T07:25:32.929 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up librdkafka1:amd64 (1.2.1-1ubuntu1) ... 2024-09-11T07:25:32.993 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up libonig5:amd64 (6.9.4-1) ... 2024-09-11T07:25:33.055 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up xmlstarlet (1.6.1-2build1) ... 2024-09-11T07:25:33.119 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-mako (1.1.0+ds1-1ubuntu2.1) ... 2024-09-11T07:25:33.163 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-logutils (0.3.3-7) ... 2024-09-11T07:25:33.181 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-pluggy (0.13.0-2) ... 2024-09-11T07:25:33.447 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up liblttng-ust0:amd64 (2.11.0-1) ... 2024-09-11T07:25:33.454 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-cherrypy3 (8.9.1-6) ... 2024-09-11T07:25:33.483 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-lxml:amd64 (4.5.0-1ubuntu0.5) ... 2024-09-11T07:25:33.573 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-09-11T07:25:33.784 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up libqt5dbus5:amd64 (5.12.8+dfsg-0ubuntu2.1) ... 2024-09-11T07:25:33.839 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up libjs-underscore (1.9.1~dfsg-1ubuntu0.20.04.1) ... 2024-09-11T07:25:33.874 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-prettytable (0.7.2-5) ... 2024-09-11T07:25:33.910 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up liblua5.3-0:amd64 (5.3.3-1.1ubuntu2) ... 2024-09-11T07:25:33.981 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up liblbfgsb0:amd64 (3.0+dfsg.3-7build1) ... 2024-09-11T07:25:34.061 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-pyasn1 (0.4.2-3build1) ... 2024-09-11T07:25:34.082 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-webob (1:1.8.5-2ubuntu0.1) ... 2024-09-11T07:25:34.167 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-soupsieve (1.9.5+dfsg-1) ... 2024-09-11T07:25:34.384 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-blinker (1.4+dfsg1-0.3ubuntu1) ... 2024-09-11T07:25:34.395 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-singledispatch (3.4.0.3-2build1) ... 2024-09-11T07:25:34.477 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-websocket (0.53.0-2ubuntu1) ... 2024-09-11T07:25:34.652 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up librados2 (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:34.713 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-logutils (0.3.3-7) ... 2024-09-11T07:25:34.777 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-scipy (1.3.3-3build1) ... 2024-09-11T07:25:34.862 INFO:teuthology.orchestra.run.smithi181.stdout:update-alternatives: using /usr/bin/python3-wsdump to provide /usr/bin/wsdump (wsdump) in auto mode 2024-09-11T07:25:34.989 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up liblttng-ust0:amd64 (2.11.0-1) ... 2024-09-11T07:25:35.129 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up libonig5:amd64 (6.9.4-1) ... 2024-09-11T07:25:35.149 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-09-11T07:25:35.255 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-mako (1.1.0+ds1-1ubuntu2.1) ... 2024-09-11T07:25:35.433 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-prettytable (0.7.2-5) ... 2024-09-11T07:25:35.548 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-cherrypy3 (8.9.1-6) ... 2024-09-11T07:25:35.734 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-soupsieve (1.9.5+dfsg-1) ... 2024-09-11T07:25:35.891 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up libjs-underscore (1.9.1~dfsg-1ubuntu0.20.04.1) ... 2024-09-11T07:25:36.017 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up liblbfgsb0:amd64 (3.0+dfsg.3-7build1) ... 2024-09-11T07:25:36.027 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-websocket (0.53.0-2ubuntu1) ... 2024-09-11T07:25:36.143 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-webob (1:1.8.5-2ubuntu0.1) ... 2024-09-11T07:25:36.283 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up libsqlite3-mod-ceph (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:36.384 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up libjq1:amd64 (1.6-1ubuntu0.20.04.1) ... 2024-09-11T07:25:36.453 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-blinker (1.4+dfsg1-0.3ubuntu1) ... 2024-09-11T07:25:36.463 INFO:teuthology.orchestra.run.smithi150.stdout:update-alternatives: using /usr/bin/python3-wsdump to provide /usr/bin/wsdump (wsdump) in auto mode 2024-09-11T07:25:36.535 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-pytest (4.6.9-1) ... 2024-09-11T07:25:36.705 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up libonig5:amd64 (6.9.4-1) ... 2024-09-11T07:25:36.720 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up librados2 (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:36.831 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-mako (1.1.0+ds1-1ubuntu2.1) ... 2024-09-11T07:25:36.871 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-scipy (1.3.3-3build1) ... 2024-09-11T07:25:36.903 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-openssl (19.0.0-1build1) ... 2024-09-11T07:25:37.165 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-cherrypy3 (8.9.1-6) ... 2024-09-11T07:25:37.204 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-pastedeploy (2.1.0-1) ... 2024-09-11T07:25:37.505 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up libqt5network5:amd64 (5.12.8+dfsg-0ubuntu2.1) ... 2024-09-11T07:25:37.516 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up libjs-underscore (1.9.1~dfsg-1ubuntu0.20.04.1) ... 2024-09-11T07:25:37.631 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-bs4 (4.8.2-1) ... 2024-09-11T07:25:37.659 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up liblbfgsb0:amd64 (3.0+dfsg.3-7build1) ... 2024-09-11T07:25:37.785 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-webob (1:1.8.5-2ubuntu0.1) ... 2024-09-11T07:25:37.982 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up libcephfs2 (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:38.111 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-blinker (1.4+dfsg1-0.3ubuntu1) ... 2024-09-11T07:25:38.117 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-oauthlib (3.1.0-1ubuntu2) ... 2024-09-11T07:25:38.327 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up libsqlite3-mod-ceph (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:38.421 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up librados2 (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:38.435 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up libradosstriper1 (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:38.453 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up libjq1:amd64 (1.6-1ubuntu0.20.04.1) ... 2024-09-11T07:25:38.547 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-scipy (1.3.3-3build1) ... 2024-09-11T07:25:38.561 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-pyasn1-modules (0.2.1-0.2build1) ... 2024-09-11T07:25:38.579 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-pytest (4.6.9-1) ... 2024-09-11T07:25:38.921 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-sklearn (0.22.2.post1+dfsg-5) ... 2024-09-11T07:25:38.964 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-openssl (19.0.0-1build1) ... 2024-09-11T07:25:39.256 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-pastedeploy (2.1.0-1) ... 2024-09-11T07:25:39.533 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up libqt5network5:amd64 (5.12.8+dfsg-0ubuntu2.1) ... 2024-09-11T07:25:39.667 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-bs4 (4.8.2-1) ... 2024-09-11T07:25:40.001 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up librbd1 (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:40.002 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up libsqlite3-mod-ceph (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:40.010 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up libcephfs2 (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:40.119 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-oauthlib (3.1.0-1ubuntu2) ... 2024-09-11T07:25:40.127 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up libjs-sphinxdoc (1.8.5-7ubuntu3) ... 2024-09-11T07:25:40.137 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up libjq1:amd64 (1.6-1ubuntu0.20.04.1) ... 2024-09-11T07:25:40.286 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python-natsort-doc (7.0.1-1) ... 2024-09-11T07:25:40.305 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-pytest (4.6.9-1) ... 2024-09-11T07:25:40.421 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up jq (1.6-1ubuntu0.20.04.1) ... 2024-09-11T07:25:40.429 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up libradosstriper1 (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:40.546 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-rsa (4.0-3) ... 2024-09-11T07:25:40.555 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-pyasn1-modules (0.2.1-0.2build1) ... 2024-09-11T07:25:40.664 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-openssl (19.0.0-1build1) ... 2024-09-11T07:25:40.864 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up libthrift-0.13.0 (0.13.0-2build2) ... 2024-09-11T07:25:40.881 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-sklearn (0.22.2.post1+dfsg-5) ... 2024-09-11T07:25:40.957 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-pastedeploy (2.1.0-1) ... 2024-09-11T07:25:40.990 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-webtest (2.0.32-2) ... 2024-09-11T07:25:41.250 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up libqt5network5:amd64 (5.12.8+dfsg-0ubuntu2.1) ... 2024-09-11T07:25:41.275 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up ceph-mgr-modules-core (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:41.376 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up ceph-fuse (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:41.392 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-bs4 (4.8.2-1) ... 2024-09-11T07:25:41.597 INFO:teuthology.orchestra.run.smithi115.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-11T07:25:41.597 INFO:teuthology.orchestra.run.smithi115.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-11T07:25:41.727 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up libcephfs2 (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:41.845 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-oauthlib (3.1.0-1ubuntu2) ... 2024-09-11T07:25:41.937 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up librbd1 (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:42.060 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up libcephfs-dev (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:42.063 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up libjs-sphinxdoc (1.8.5-7ubuntu3) ... 2024-09-11T07:25:42.189 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python-natsort-doc (7.0.1-1) ... 2024-09-11T07:25:42.214 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up libradosstriper1 (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:42.297 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-requests-oauthlib (1.0.0-1.1build1) ... 2024-09-11T07:25:42.315 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up jq (1.6-1ubuntu0.20.04.1) ... 2024-09-11T07:25:42.339 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-pyasn1-modules (0.2.1-0.2build1) ... 2024-09-11T07:25:42.441 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-rsa (4.0-3) ... 2024-09-11T07:25:42.615 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-09-11T07:25:42.691 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-sklearn (0.22.2.post1+dfsg-5) ... 2024-09-11T07:25:42.742 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up libthrift-0.13.0 (0.13.0-2build2) ... 2024-09-11T07:25:42.885 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-webtest (2.0.32-2) ... 2024-09-11T07:25:42.908 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-pecan (1.3.3-3ubuntu1) ... 2024-09-11T07:25:43.186 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up ceph-mgr-modules-core (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:43.269 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-rados (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:43.312 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up ceph-fuse (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:43.403 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up librgw2 (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:43.540 INFO:teuthology.orchestra.run.smithi181.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-11T07:25:43.541 INFO:teuthology.orchestra.run.smithi181.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-11T07:25:43.554 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-rbd (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:43.688 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up rbd-fuse (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:43.746 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up librbd1 (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:43.848 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-routes (2.4.1-2) ... 2024-09-11T07:25:43.872 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up libjs-sphinxdoc (1.8.5-7ubuntu3) ... 2024-09-11T07:25:43.996 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up libcephfs-dev (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:43.998 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python-natsort-doc (7.0.1-1) ... 2024-09-11T07:25:44.149 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up jq (1.6-1ubuntu0.20.04.1) ... 2024-09-11T07:25:44.157 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-google-auth (1.5.1-2) ... 2024-09-11T07:25:44.208 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-requests-oauthlib (1.0.0-1.1build1) ... 2024-09-11T07:25:44.275 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-rsa (4.0-3) ... 2024-09-11T07:25:44.459 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-rgw (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:44.509 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-09-11T07:25:44.584 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up libthrift-0.13.0 (0.13.0-2build2) ... 2024-09-11T07:25:44.585 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-cephfs (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:44.711 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-webtest (2.0.32-2) ... 2024-09-11T07:25:44.711 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up python3-kubernetes (7.0.0~a1-2) ... 2024-09-11T07:25:44.811 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-pecan (1.3.3-3ubuntu1) ... 2024-09-11T07:25:45.012 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up ceph-mgr-modules-core (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:45.163 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up ceph-fuse (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:45.188 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-rados (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:45.314 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up librgw2 (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:45.388 INFO:teuthology.orchestra.run.smithi150.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-11T07:25:45.388 INFO:teuthology.orchestra.run.smithi150.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-11T07:25:45.441 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-rbd (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:45.566 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up rbd-fuse (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:45.708 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up ceph-common (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:45.709 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-routes (2.4.1-2) ... 2024-09-11T07:25:45.873 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up libcephfs-dev (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:45.994 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-google-auth (1.5.1-2) ... 2024-09-11T07:25:46.084 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-requests-oauthlib (1.0.0-1.1build1) ... 2024-09-11T07:25:46.283 INFO:teuthology.orchestra.run.smithi115.stdout:Adding group ceph....done 2024-09-11T07:25:46.287 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-rgw (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:46.377 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-09-11T07:25:46.413 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-cephfs (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:46.539 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up python3-kubernetes (7.0.0~a1-2) ... 2024-09-11T07:25:46.695 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-pecan (1.3.3-3ubuntu1) ... 2024-09-11T07:25:46.726 INFO:teuthology.orchestra.run.smithi115.stdout:Adding system user ceph....done 2024-09-11T07:25:46.878 INFO:teuthology.orchestra.run.smithi115.stdout:Setting system user ceph properties....done 2024-09-11T07:25:46.901 INFO:teuthology.orchestra.run.smithi115.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-09-11T07:25:47.056 INFO:teuthology.orchestra.run.smithi115.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-09-11T07:25:47.057 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-rados (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:47.207 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up librgw2 (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:47.333 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-rbd (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:47.382 INFO:teuthology.orchestra.run.smithi115.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-09-11T07:25:47.451 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up ceph-common (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:47.459 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up rbd-fuse (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:47.577 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-routes (2.4.1-2) ... 2024-09-11T07:25:47.831 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up ceph-test (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:47.870 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-google-auth (1.5.1-2) ... 2024-09-11T07:25:47.978 INFO:teuthology.orchestra.run.smithi181.stdout:Adding group ceph....done 2024-09-11T07:25:47.982 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up radosgw (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:48.188 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-rgw (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:48.239 INFO:teuthology.orchestra.run.smithi115.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-11T07:25:48.239 INFO:teuthology.orchestra.run.smithi115.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-11T07:25:48.339 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-cephfs (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:48.355 INFO:teuthology.orchestra.run.smithi181.stdout:Adding system user ceph....done 2024-09-11T07:25:48.465 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up python3-kubernetes (7.0.0~a1-2) ... 2024-09-11T07:25:48.531 INFO:teuthology.orchestra.run.smithi181.stdout:Setting system user ceph properties....done 2024-09-11T07:25:48.558 INFO:teuthology.orchestra.run.smithi181.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-09-11T07:25:48.705 INFO:teuthology.orchestra.run.smithi181.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-09-11T07:25:48.834 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up ceph-base (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:49.021 INFO:teuthology.orchestra.run.smithi181.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-09-11T07:25:49.244 INFO:teuthology.orchestra.run.smithi115.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-09-11T07:25:49.369 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up ceph-common (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:49.461 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up ceph-test (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:49.570 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up radosgw (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:49.686 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up ceph-mds (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:49.839 INFO:teuthology.orchestra.run.smithi181.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-11T07:25:49.839 INFO:teuthology.orchestra.run.smithi181.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-11T07:25:49.923 INFO:teuthology.orchestra.run.smithi115.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-11T07:25:49.924 INFO:teuthology.orchestra.run.smithi115.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-11T07:25:49.963 INFO:teuthology.orchestra.run.smithi150.stdout:Adding group ceph....done 2024-09-11T07:25:50.371 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up ceph-mgr (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:50.373 INFO:teuthology.orchestra.run.smithi150.stdout:Adding system user ceph....done 2024-09-11T07:25:50.480 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up ceph-base (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:50.558 INFO:teuthology.orchestra.run.smithi150.stdout:Setting system user ceph properties....done 2024-09-11T07:25:50.583 INFO:teuthology.orchestra.run.smithi150.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-09-11T07:25:50.599 INFO:teuthology.orchestra.run.smithi115.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-11T07:25:50.599 INFO:teuthology.orchestra.run.smithi115.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-11T07:25:50.736 INFO:teuthology.orchestra.run.smithi150.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-09-11T07:25:50.854 INFO:teuthology.orchestra.run.smithi181.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-09-11T07:25:51.053 INFO:teuthology.orchestra.run.smithi150.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-09-11T07:25:51.064 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up ceph-osd (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:51.274 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up ceph-mds (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:51.497 INFO:teuthology.orchestra.run.smithi181.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-11T07:25:51.497 INFO:teuthology.orchestra.run.smithi181.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-11T07:25:51.521 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up ceph-test (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:51.538 INFO:teuthology.orchestra.run.smithi115.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-11T07:25:51.538 INFO:teuthology.orchestra.run.smithi115.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-11T07:25:51.638 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up radosgw (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:51.910 INFO:teuthology.orchestra.run.smithi150.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-11T07:25:51.910 INFO:teuthology.orchestra.run.smithi150.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-11T07:25:51.926 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up ceph-mgr (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:51.966 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up ceph-mgr-k8sevents (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:52.125 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up ceph-mgr-diskprediction-local (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:52.155 INFO:teuthology.orchestra.run.smithi181.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-11T07:25:52.155 INFO:teuthology.orchestra.run.smithi181.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-11T07:25:52.268 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up ceph-mon (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:52.495 INFO:teuthology.orchestra.run.smithi115.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-11T07:25:52.495 INFO:teuthology.orchestra.run.smithi115.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-11T07:25:52.582 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up ceph-base (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:52.602 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up ceph-osd (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:52.953 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up ceph-mgr-cephadm (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:52.962 INFO:teuthology.orchestra.run.smithi150.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-09-11T07:25:53.075 INFO:teuthology.orchestra.run.smithi181.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-11T07:25:53.075 INFO:teuthology.orchestra.run.smithi181.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-11T07:25:53.112 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up ceph (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:53.238 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up ceph-mgr-dashboard (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:53.414 INFO:teuthology.orchestra.run.smithi115.stdout:Setting up ceph-volume (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:53.433 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up ceph-mds (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:53.495 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up ceph-mgr-k8sevents (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:53.541 INFO:teuthology.orchestra.run.smithi115.stdout:Processing triggers for libc-bin (2.31-0ubuntu9.9) ... 2024-09-11T07:25:53.604 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up ceph-mgr-diskprediction-local (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:53.676 INFO:teuthology.orchestra.run.smithi115.stdout:Processing triggers for systemd (245.4-4ubuntu3.17) ... 2024-09-11T07:25:53.693 INFO:teuthology.orchestra.run.smithi150.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-11T07:25:53.693 INFO:teuthology.orchestra.run.smithi150.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-11T07:25:53.722 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up ceph-mon (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:53.951 INFO:teuthology.orchestra.run.smithi181.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-11T07:25:53.952 INFO:teuthology.orchestra.run.smithi181.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-11T07:25:53.993 INFO:teuthology.orchestra.run.smithi115.stdout:Processing triggers for man-db (2.9.1-1) ... 2024-09-11T07:25:54.152 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up ceph-mgr (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:54.357 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up ceph-mgr-cephadm (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:54.382 INFO:teuthology.orchestra.run.smithi150.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-11T07:25:54.382 INFO:teuthology.orchestra.run.smithi150.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-11T07:25:54.500 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up ceph (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:54.626 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up ceph-mgr-dashboard (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:54.786 INFO:teuthology.orchestra.run.smithi181.stdout:Setting up ceph-volume (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:54.828 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up ceph-osd (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:54.912 INFO:teuthology.orchestra.run.smithi181.stdout:Processing triggers for libc-bin (2.31-0ubuntu9.9) ... 2024-09-11T07:25:55.064 INFO:teuthology.orchestra.run.smithi181.stdout:Processing triggers for systemd (245.4-4ubuntu3.17) ... 2024-09-11T07:25:55.323 INFO:teuthology.orchestra.run.smithi181.stdout:Processing triggers for man-db (2.9.1-1) ... 2024-09-11T07:25:55.332 INFO:teuthology.orchestra.run.smithi150.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-11T07:25:55.332 INFO:teuthology.orchestra.run.smithi150.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-11T07:25:55.797 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up ceph-mgr-k8sevents (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:55.923 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up ceph-mgr-diskprediction-local (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:56.066 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up ceph-mon (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:56.316 INFO:teuthology.orchestra.run.smithi150.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-11T07:25:56.316 INFO:teuthology.orchestra.run.smithi150.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-11T07:25:56.759 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up ceph-mgr-cephadm (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:56.812 INFO:teuthology.orchestra.run.smithi115.stdout:Processing triggers for fontconfig (2.13.1-2ubuntu3) ... 2024-09-11T07:25:56.901 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up ceph (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:57.028 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up ceph-mgr-dashboard (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:57.204 INFO:teuthology.orchestra.run.smithi150.stdout:Setting up ceph-volume (17.2.7-1623-gd0e6828a-1focal) ... 2024-09-11T07:25:57.314 INFO:teuthology.orchestra.run.smithi150.stdout:Processing triggers for libc-bin (2.31-0ubuntu9.9) ... 2024-09-11T07:25:57.466 INFO:teuthology.orchestra.run.smithi150.stdout:Processing triggers for systemd (245.4-4ubuntu3.17) ... 2024-09-11T07:25:57.749 INFO:teuthology.orchestra.run.smithi115.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-09-11T07:25:57.754 DEBUG:teuthology.parallel:result is None 2024-09-11T07:25:57.767 INFO:teuthology.orchestra.run.smithi150.stdout:Processing triggers for man-db (2.9.1-1) ... 2024-09-11T07:25:58.277 INFO:teuthology.orchestra.run.smithi181.stdout:Processing triggers for fontconfig (2.13.1-2ubuntu3) ... 2024-09-11T07:25:58.869 INFO:teuthology.orchestra.run.smithi181.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-09-11T07:25:58.873 DEBUG:teuthology.parallel:result is None 2024-09-11T07:26:00.578 INFO:teuthology.orchestra.run.smithi150.stdout:Processing triggers for fontconfig (2.13.1-2ubuntu3) ... 2024-09-11T07:26:01.499 INFO:teuthology.orchestra.run.smithi150.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-09-11T07:26:01.503 DEBUG:teuthology.parallel:result is None 2024-09-11T07:26:01.503 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F20.04%2Fx86_64&sha1=d0e6828a2016d48cf25ad84064e50742bb1c39b9 2024-09-11T07:26:01.646 DEBUG:teuthology.orchestra.run.smithi115:> dpkg-query -W -f '${Version}' ceph 2024-09-11T07:26:01.668 INFO:teuthology.orchestra.run.smithi115.stdout:17.2.7-1623-gd0e6828a-1focal 2024-09-11T07:26:01.669 INFO:teuthology.packaging:The installed version of ceph is 17.2.7-1623-gd0e6828a-1focal 2024-09-11T07:26:01.669 INFO:teuthology.task.install:The correct ceph version 17.2.7-1623-gd0e6828a-1focal is installed. 2024-09-11T07:26:01.671 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F20.04%2Fx86_64&sha1=d0e6828a2016d48cf25ad84064e50742bb1c39b9 2024-09-11T07:26:01.808 DEBUG:teuthology.orchestra.run.smithi150:> dpkg-query -W -f '${Version}' ceph 2024-09-11T07:26:01.832 INFO:teuthology.orchestra.run.smithi150.stdout:17.2.7-1623-gd0e6828a-1focal 2024-09-11T07:26:01.832 INFO:teuthology.packaging:The installed version of ceph is 17.2.7-1623-gd0e6828a-1focal 2024-09-11T07:26:01.832 INFO:teuthology.task.install:The correct ceph version 17.2.7-1623-gd0e6828a-1focal is installed. 2024-09-11T07:26:01.834 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F20.04%2Fx86_64&sha1=d0e6828a2016d48cf25ad84064e50742bb1c39b9 2024-09-11T07:26:01.972 DEBUG:teuthology.orchestra.run.smithi181:> dpkg-query -W -f '${Version}' ceph 2024-09-11T07:26:01.995 INFO:teuthology.orchestra.run.smithi181.stdout:17.2.7-1623-gd0e6828a-1focal 2024-09-11T07:26:01.995 INFO:teuthology.packaging:The installed version of ceph is 17.2.7-1623-gd0e6828a-1focal 2024-09-11T07:26:01.995 INFO:teuthology.task.install:The correct ceph version 17.2.7-1623-gd0e6828a-1focal is installed. 2024-09-11T07:26:01.997 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-09-11T07:26:01.997 DEBUG:teuthology.orchestra.run.smithi115:> set -ex 2024-09-11T07:26:01.997 DEBUG:teuthology.orchestra.run.smithi115:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-11T07:26:02.014 DEBUG:teuthology.orchestra.run.smithi150:> set -ex 2024-09-11T07:26:02.014 DEBUG:teuthology.orchestra.run.smithi150:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-11T07:26:02.030 DEBUG:teuthology.orchestra.run.smithi181:> set -ex 2024-09-11T07:26:02.030 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-11T07:26:02.047 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-09-11T07:26:02.047 DEBUG:teuthology.orchestra.run.smithi115:> set -ex 2024-09-11T07:26:02.048 DEBUG:teuthology.orchestra.run.smithi115:> sudo dd of=/usr/bin/daemon-helper 2024-09-11T07:26:02.070 DEBUG:teuthology.orchestra.run.smithi115:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-11T07:26:02.078 DEBUG:teuthology.orchestra.run.smithi150:> set -ex 2024-09-11T07:26:02.078 DEBUG:teuthology.orchestra.run.smithi150:> sudo dd of=/usr/bin/daemon-helper 2024-09-11T07:26:02.092 DEBUG:teuthology.orchestra.run.smithi150:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-11T07:26:02.149 DEBUG:teuthology.orchestra.run.smithi181:> set -ex 2024-09-11T07:26:02.149 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd of=/usr/bin/daemon-helper 2024-09-11T07:26:02.165 DEBUG:teuthology.orchestra.run.smithi181:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-11T07:26:02.175 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-09-11T07:26:02.176 DEBUG:teuthology.orchestra.run.smithi115:> set -ex 2024-09-11T07:26:02.176 DEBUG:teuthology.orchestra.run.smithi115:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-11T07:26:02.192 DEBUG:teuthology.orchestra.run.smithi115:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-11T07:26:02.249 DEBUG:teuthology.orchestra.run.smithi150:> set -ex 2024-09-11T07:26:02.250 DEBUG:teuthology.orchestra.run.smithi150:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-11T07:26:02.265 DEBUG:teuthology.orchestra.run.smithi150:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-11T07:26:02.279 DEBUG:teuthology.orchestra.run.smithi181:> set -ex 2024-09-11T07:26:02.279 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-11T07:26:02.295 DEBUG:teuthology.orchestra.run.smithi181:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-11T07:26:02.353 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-09-11T07:26:02.353 DEBUG:teuthology.orchestra.run.smithi115:> set -ex 2024-09-11T07:26:02.353 DEBUG:teuthology.orchestra.run.smithi115:> sudo dd of=/usr/bin/stdin-killer 2024-09-11T07:26:02.369 DEBUG:teuthology.orchestra.run.smithi115:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-11T07:26:02.379 DEBUG:teuthology.orchestra.run.smithi150:> set -ex 2024-09-11T07:26:02.379 DEBUG:teuthology.orchestra.run.smithi150:> sudo dd of=/usr/bin/stdin-killer 2024-09-11T07:26:02.395 DEBUG:teuthology.orchestra.run.smithi150:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-11T07:26:02.449 DEBUG:teuthology.orchestra.run.smithi181:> set -ex 2024-09-11T07:26:02.449 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd of=/usr/bin/stdin-killer 2024-09-11T07:26:02.465 DEBUG:teuthology.orchestra.run.smithi181:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-11T07:26:02.475 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-11T07:26:02.557 INFO:tasks.cephadm:Config: {'conf': {'global': {'mon election default strategy': 1}, 'mgr': {'debug mgr': 20, 'debug ms': 1, 'mgr/cephadm/use_agent': False}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)', 'MON_DOWN', 'mons down', 'mon down', 'out of quorum'], 'sha1': 'd0e6828a2016d48cf25ad84064e50742bb1c39b9'} 2024-09-11T07:26:02.557 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 2024-09-11T07:26:02.558 INFO:tasks.cephadm:Cluster fsid is 1973416c-700f-11ef-bcea-c7b262605968 2024-09-11T07:26:02.558 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-11T07:26:02.558 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.115', 'mon.b': '172.21.15.150', 'mon.c': '172.21.15.181'} 2024-09-11T07:26:02.558 INFO:tasks.cephadm:First mon is mon.a on smithi115 2024-09-11T07:26:02.558 INFO:tasks.cephadm:First mgr is a 2024-09-11T07:26:02.558 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-11T07:26:02.558 DEBUG:teuthology.orchestra.run.smithi115:> sudo hostname $(hostname -s) 2024-09-11T07:26:02.575 DEBUG:teuthology.orchestra.run.smithi150:> sudo hostname $(hostname -s) 2024-09-11T07:26:02.592 DEBUG:teuthology.orchestra.run.smithi181:> sudo hostname $(hostname -s) 2024-09-11T07:26:02.608 INFO:tasks.cephadm:Downloading cephadm (repo https://git.ceph.com/ceph-ci.git ref d0e6828a2016d48cf25ad84064e50742bb1c39b9)... 2024-09-11T07:26:02.608 DEBUG:teuthology.orchestra.run.smithi115:> git clone https://git.ceph.com/ceph-ci.git testrepo && cd testrepo && git show d0e6828a2016d48cf25ad84064e50742bb1c39b9:src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-11T07:26:02.616 INFO:teuthology.orchestra.run.smithi115.stderr:Cloning into 'testrepo'... 2024-09-11T07:27:02.647 INFO:teuthology.orchestra.run.smithi115.stdout:-rw-rw-r-- 1 ubuntu ubuntu 378585 Sep 11 07:27 /home/ubuntu/cephtest/cephadm 2024-09-11T07:27:02.648 DEBUG:teuthology.orchestra.run.smithi150:> git clone https://git.ceph.com/ceph-ci.git testrepo && cd testrepo && git show d0e6828a2016d48cf25ad84064e50742bb1c39b9:src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-11T07:27:02.656 INFO:teuthology.orchestra.run.smithi150.stderr:Cloning into 'testrepo'... 2024-09-11T07:28:03.376 INFO:teuthology.orchestra.run.smithi150.stdout:-rw-rw-r-- 1 ubuntu ubuntu 378585 Sep 11 07:28 /home/ubuntu/cephtest/cephadm 2024-09-11T07:28:03.377 DEBUG:teuthology.orchestra.run.smithi181:> git clone https://git.ceph.com/ceph-ci.git testrepo && cd testrepo && git show d0e6828a2016d48cf25ad84064e50742bb1c39b9:src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-11T07:28:03.385 INFO:teuthology.orchestra.run.smithi181.stderr:Cloning into 'testrepo'... 2024-09-11T07:29:03.061 INFO:teuthology.orchestra.run.smithi181.stdout:-rw-rw-r-- 1 ubuntu ubuntu 378585 Sep 11 07:29 /home/ubuntu/cephtest/cephadm 2024-09-11T07:29:03.062 DEBUG:teuthology.orchestra.run.smithi115:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-11T07:29:03.072 DEBUG:teuthology.orchestra.run.smithi150:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-11T07:29:03.081 DEBUG:teuthology.orchestra.run.smithi181:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-11T07:29:03.120 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 on all hosts... 2024-09-11T07:29:03.120 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 pull 2024-09-11T07:29:03.123 DEBUG:teuthology.orchestra.run.smithi150:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 pull 2024-09-11T07:29:03.125 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 pull 2024-09-11T07:29:03.390 INFO:teuthology.orchestra.run.smithi115.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9... 2024-09-11T07:29:03.400 INFO:teuthology.orchestra.run.smithi150.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9... 2024-09-11T07:29:03.407 INFO:teuthology.orchestra.run.smithi181.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9... 2024-09-11T07:29:49.460 INFO:teuthology.orchestra.run.smithi150.stdout:{ 2024-09-11T07:29:49.460 INFO:teuthology.orchestra.run.smithi150.stdout: "ceph_version": "ceph version 17.2.7-1623-gd0e6828a (d0e6828a2016d48cf25ad84064e50742bb1c39b9) quincy (stable)", 2024-09-11T07:29:49.460 INFO:teuthology.orchestra.run.smithi150.stdout: "image_id": "4a918172a49766385959227c53e75e2c302e923539324792cb5bee6cad0b2f2b", 2024-09-11T07:29:49.460 INFO:teuthology.orchestra.run.smithi150.stdout: "repo_digests": [ 2024-09-11T07:29:49.460 INFO:teuthology.orchestra.run.smithi150.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:ef9c65e2a6ea9377a732e309273ea235301c4d330f09e2972aeebc38173d3e40" 2024-09-11T07:29:49.461 INFO:teuthology.orchestra.run.smithi150.stdout: ] 2024-09-11T07:29:49.461 INFO:teuthology.orchestra.run.smithi150.stdout:} 2024-09-11T07:30:01.090 INFO:teuthology.orchestra.run.smithi181.stdout:{ 2024-09-11T07:30:01.091 INFO:teuthology.orchestra.run.smithi181.stdout: "ceph_version": "ceph version 17.2.7-1623-gd0e6828a (d0e6828a2016d48cf25ad84064e50742bb1c39b9) quincy (stable)", 2024-09-11T07:30:01.091 INFO:teuthology.orchestra.run.smithi181.stdout: "image_id": "4a918172a49766385959227c53e75e2c302e923539324792cb5bee6cad0b2f2b", 2024-09-11T07:30:01.091 INFO:teuthology.orchestra.run.smithi181.stdout: "repo_digests": [ 2024-09-11T07:30:01.091 INFO:teuthology.orchestra.run.smithi181.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:ef9c65e2a6ea9377a732e309273ea235301c4d330f09e2972aeebc38173d3e40" 2024-09-11T07:30:01.091 INFO:teuthology.orchestra.run.smithi181.stdout: ] 2024-09-11T07:30:01.091 INFO:teuthology.orchestra.run.smithi181.stdout:} 2024-09-11T07:30:12.676 INFO:teuthology.orchestra.run.smithi115.stdout:{ 2024-09-11T07:30:12.676 INFO:teuthology.orchestra.run.smithi115.stdout: "ceph_version": "ceph version 17.2.7-1623-gd0e6828a (d0e6828a2016d48cf25ad84064e50742bb1c39b9) quincy (stable)", 2024-09-11T07:30:12.676 INFO:teuthology.orchestra.run.smithi115.stdout: "image_id": "4a918172a49766385959227c53e75e2c302e923539324792cb5bee6cad0b2f2b", 2024-09-11T07:30:12.676 INFO:teuthology.orchestra.run.smithi115.stdout: "repo_digests": [ 2024-09-11T07:30:12.676 INFO:teuthology.orchestra.run.smithi115.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:ef9c65e2a6ea9377a732e309273ea235301c4d330f09e2972aeebc38173d3e40" 2024-09-11T07:30:12.676 INFO:teuthology.orchestra.run.smithi115.stdout: ] 2024-09-11T07:30:12.676 INFO:teuthology.orchestra.run.smithi115.stdout:} 2024-09-11T07:30:12.700 DEBUG:teuthology.orchestra.run.smithi115:> sudo mkdir -p /etc/ceph 2024-09-11T07:30:12.715 DEBUG:teuthology.orchestra.run.smithi150:> sudo mkdir -p /etc/ceph 2024-09-11T07:30:12.731 DEBUG:teuthology.orchestra.run.smithi181:> sudo mkdir -p /etc/ceph 2024-09-11T07:30:12.749 DEBUG:teuthology.orchestra.run.smithi115:> sudo chmod 777 /etc/ceph 2024-09-11T07:30:12.764 DEBUG:teuthology.orchestra.run.smithi150:> sudo chmod 777 /etc/ceph 2024-09-11T07:30:12.790 DEBUG:teuthology.orchestra.run.smithi181:> sudo chmod 777 /etc/ceph 2024-09-11T07:30:12.807 INFO:tasks.cephadm:Writing seed config... 2024-09-11T07:30:12.808 INFO:tasks.cephadm: override: [global] mon election default strategy = 1 2024-09-11T07:30:12.808 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-11T07:30:12.808 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-11T07:30:12.808 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = False 2024-09-11T07:30:12.808 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-11T07:30:12.808 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-11T07:30:12.809 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-11T07:30:12.809 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-11T07:30:12.809 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-11T07:30:12.809 DEBUG:teuthology.orchestra.run.smithi115:> set -ex 2024-09-11T07:30:12.809 DEBUG:teuthology.orchestra.run.smithi115:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-11T07:30:12.816 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false log to journald = false mon cluster log file level = debug mon clock drift allowed = 1.000 # replicate across OSDs, not hosts osd crush chooseleaf type = 0 #osd pool default size = 2 osd pool default erasure code profile = plugin=jerasure technique=reed_sol_van k=2 m=1 crush-failure-domain=osd # enable some debugging auth debug = true ms die on old message = true ms die on bug = true debug asserts on shutdown = true # adjust warnings mon max pg per osd = 10000# >= luminous mon pg warn max object skew = 0 mon osd allow primary affinity = true mon osd allow pg remap = true mon warn on legacy crush tunables = false mon warn on crush straw calc version zero = false mon warn on no sortbitwise = false mon warn on osd down out interval zero = false mon warn on too few osds = false mon_warn_on_pool_pg_num_not_power_of_two = false # disable pg_autoscaler by default for new pools osd_pool_default_pg_autoscale_mode = off # tests delete pools mon allow pool delete = true fsid = 1973416c-700f-11ef-bcea-c7b262605968 mon election default strategy = 1 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops osd recover clone overlap = true osd recovery max chunk = 1048576 osd deep scrub update digest min age = 30 osd map max advance = 10 osd memory target autotune = true # debugging osd debug shutdown = true osd debug op order = true osd debug verify stray on activate = true osd debug pg log writeout = true osd debug verify cached snaps = true osd debug verify missing on start = true osd debug misdirected ops = true osd op queue = debug_random osd op queue cut off = debug_random osd shutdown pgref assert = true bdev debug aio = true osd sloppy crc = true debug ms = 1 debug osd = 20 [mgr] mon reweight min pgs per osd = 4 mon reweight min bytes per osd = 10 mgr/telemetry/nag = false debug mgr = 20 debug ms = 1 mgr/cephadm/use_agent = False [mon] mon data avail warn = 5 mon mgr mkfs grace = 240 mon reweight min pgs per osd = 4 mon osd reporter subtree level = osd mon osd prime pg temp = true mon reweight min bytes per osd = 10 # rotate auth tickets quickly to exercise renewal paths auth mon ticket ttl = 660# 11m auth service ticket ttl = 240# 4m # don't complain about global id reclaim mon_warn_on_insecure_global_id_reclaim = false mon_warn_on_insecure_global_id_reclaim_allowed = false debug mon = 20 debug ms = 1 debug paxos = 20 [client.rgw] rgw cache enabled = true rgw enable ops log = true rgw enable usage log = true 2024-09-11T07:30:12.816 DEBUG:teuthology.orchestra.run.smithi115:mon.a> sudo journalctl -f -n 0 -u ceph-1973416c-700f-11ef-bcea-c7b262605968@mon.a.service 2024-09-11T07:30:12.860 DEBUG:teuthology.orchestra.run.smithi115:mgr.a> sudo journalctl -f -n 0 -u ceph-1973416c-700f-11ef-bcea-c7b262605968@mgr.a.service 2024-09-11T07:30:12.863 INFO:tasks.cephadm:Bootstrapping... 2024-09-11T07:30:12.863 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 -v bootstrap --fsid 1973416c-700f-11ef-bcea-c7b262605968 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-id a --mgr-id a --orphan-initial-daemons --skip-monitoring-stack --mon-ip 172.21.15.115 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-11T07:30:13.033 INFO:teuthology.orchestra.run.smithi115.stdout:-------------------------------------------------------------------------------- 2024-09-11T07:30:13.033 INFO:teuthology.orchestra.run.smithi115.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9', '-v', 'bootstrap', '--fsid', '1973416c-700f-11ef-bcea-c7b262605968', '--config', '/home/ubuntu/cephtest/seed.ceph.conf', '--output-config', '/etc/ceph/ceph.conf', '--output-keyring', '/etc/ceph/ceph.client.admin.keyring', '--output-pub-ssh-key', '/home/ubuntu/cephtest/ceph.pub', '--mon-id', 'a', '--mgr-id', 'a', '--orphan-initial-daemons', '--skip-monitoring-stack', '--mon-ip', '172.21.15.115', '--skip-admin-label'] 2024-09-11T07:30:13.033 INFO:teuthology.orchestra.run.smithi115.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-11T07:30:13.034 INFO:teuthology.orchestra.run.smithi115.stdout:Verifying podman|docker is present... 2024-09-11T07:30:13.034 INFO:teuthology.orchestra.run.smithi115.stdout:Verifying lvm2 is present... 2024-09-11T07:30:13.034 INFO:teuthology.orchestra.run.smithi115.stdout:Verifying time synchronization is in place... 2024-09-11T07:30:13.041 INFO:teuthology.orchestra.run.smithi115.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-11T07:30:13.041 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-11T07:30:13.049 INFO:teuthology.orchestra.run.smithi115.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-11T07:30:13.049 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stdout inactive 2024-09-11T07:30:13.054 INFO:teuthology.orchestra.run.smithi115.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-11T07:30:13.054 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-11T07:30:13.060 INFO:teuthology.orchestra.run.smithi115.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-11T07:30:13.061 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stdout inactive 2024-09-11T07:30:13.067 INFO:teuthology.orchestra.run.smithi115.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-11T07:30:13.067 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stdout masked 2024-09-11T07:30:13.073 INFO:teuthology.orchestra.run.smithi115.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-11T07:30:13.073 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stdout inactive 2024-09-11T07:30:13.079 INFO:teuthology.orchestra.run.smithi115.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-11T07:30:13.079 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-11T07:30:13.086 INFO:teuthology.orchestra.run.smithi115.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-11T07:30:13.087 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stdout inactive 2024-09-11T07:30:13.095 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stdout enabled 2024-09-11T07:30:13.101 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stdout active 2024-09-11T07:30:13.101 INFO:teuthology.orchestra.run.smithi115.stdout:Unit ntp.service is enabled and running 2024-09-11T07:30:13.102 INFO:teuthology.orchestra.run.smithi115.stdout:Repeating the final host check... 2024-09-11T07:30:13.102 INFO:teuthology.orchestra.run.smithi115.stdout:docker (/usr/bin/docker) is present 2024-09-11T07:30:13.102 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl is present 2024-09-11T07:30:13.102 INFO:teuthology.orchestra.run.smithi115.stdout:lvcreate is present 2024-09-11T07:30:13.107 INFO:teuthology.orchestra.run.smithi115.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-11T07:30:13.108 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-11T07:30:13.113 INFO:teuthology.orchestra.run.smithi115.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-11T07:30:13.113 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stdout inactive 2024-09-11T07:30:13.119 INFO:teuthology.orchestra.run.smithi115.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-11T07:30:13.120 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-11T07:30:13.126 INFO:teuthology.orchestra.run.smithi115.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-11T07:30:13.126 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stdout inactive 2024-09-11T07:30:13.133 INFO:teuthology.orchestra.run.smithi115.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-11T07:30:13.134 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stdout masked 2024-09-11T07:30:13.140 INFO:teuthology.orchestra.run.smithi115.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-11T07:30:13.140 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stdout inactive 2024-09-11T07:30:13.147 INFO:teuthology.orchestra.run.smithi115.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-11T07:30:13.147 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-11T07:30:13.155 INFO:teuthology.orchestra.run.smithi115.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-11T07:30:13.155 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stdout inactive 2024-09-11T07:30:13.164 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stdout enabled 2024-09-11T07:30:13.172 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stdout active 2024-09-11T07:30:13.172 INFO:teuthology.orchestra.run.smithi115.stdout:Unit ntp.service is enabled and running 2024-09-11T07:30:13.172 INFO:teuthology.orchestra.run.smithi115.stdout:Host looks OK 2024-09-11T07:30:13.172 INFO:teuthology.orchestra.run.smithi115.stdout:Cluster fsid: 1973416c-700f-11ef-bcea-c7b262605968 2024-09-11T07:30:13.172 INFO:teuthology.orchestra.run.smithi115.stdout:Acquiring lock 140596234544368 on /run/cephadm/1973416c-700f-11ef-bcea-c7b262605968.lock 2024-09-11T07:30:13.172 INFO:teuthology.orchestra.run.smithi115.stdout:Lock 140596234544368 acquired on /run/cephadm/1973416c-700f-11ef-bcea-c7b262605968.lock 2024-09-11T07:30:13.173 INFO:teuthology.orchestra.run.smithi115.stdout:Verifying IP 172.21.15.115 port 3300 ... 2024-09-11T07:30:13.173 INFO:teuthology.orchestra.run.smithi115.stdout:Verifying IP 172.21.15.115 port 6789 ... 2024-09-11T07:30:13.173 INFO:teuthology.orchestra.run.smithi115.stdout:Base mon IP(s) is [172.21.15.115:3300, 172.21.15.115:6789], mon addrv is [v2:172.21.15.115:3300,v1:172.21.15.115:6789] 2024-09-11T07:30:13.178 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 2024-09-11T07:30:13.178 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.115 metric 100 2024-09-11T07:30:13.178 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/sbin/ip: stdout 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-09-11T07:30:13.178 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/sbin/ip: stdout 172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.115 2024-09-11T07:30:13.178 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/sbin/ip: stdout 172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.115 metric 100 2024-09-11T07:30:13.183 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-11T07:30:13.183 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/sbin/ip: stdout fe80::/64 dev enp3s0f1 proto kernel metric 256 pref medium 2024-09-11T07:30:13.183 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev enp3s0f1 proto ra metric 100 expires 1799sec pref medium 2024-09-11T07:30:13.187 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-11T07:30:13.187 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-11T07:30:13.187 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-11T07:30:13.187 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/sbin/ip: stdout 5: enp3s0f1: mtu 1500 state UP qlen 1000 2024-09-11T07:30:13.188 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/sbin/ip: stdout inet6 fe80::ec4:7aff:fe8f:ce8f/64 scope link 2024-09-11T07:30:13.188 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-11T07:30:13.188 INFO:teuthology.orchestra.run.smithi115.stdout:Mon IP `172.21.15.115` is in CIDR network `172.21.0.0/20` 2024-09-11T07:30:13.189 INFO:teuthology.orchestra.run.smithi115.stdout:Mon IP `172.21.15.115` is in CIDR network `172.21.0.0/20` 2024-09-11T07:30:13.189 INFO:teuthology.orchestra.run.smithi115.stdout:Mon IP `172.21.15.115` is in CIDR network `172.21.15.254/32` 2024-09-11T07:30:13.189 INFO:teuthology.orchestra.run.smithi115.stdout:Mon IP `172.21.15.115` is in CIDR network `172.21.15.254/32` 2024-09-11T07:30:13.189 INFO:teuthology.orchestra.run.smithi115.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20', '172.21.15.254/32', '172.21.15.254/32'] 2024-09-11T07:30:13.189 INFO:teuthology.orchestra.run.smithi115.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-11T07:30:13.190 INFO:teuthology.orchestra.run.smithi115.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9... 2024-09-11T07:30:13.376 INFO:journalctl@ceph.mon.a.smithi115.stdout:-- Logs begin at Sun 2022-08-14 12:20:24 UTC. -- 2024-09-11T07:30:13.537 INFO:journalctl@ceph.mgr.a.smithi115.stdout:-- Logs begin at Sun 2022-08-14 12:20:24 UTC. -- 2024-09-11T07:30:13.566 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/docker: stdout d0e6828a2016d48cf25ad84064e50742bb1c39b9: Pulling from ceph-ci/ceph 2024-09-11T07:30:13.566 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/docker: stdout Digest: sha256:ef9c65e2a6ea9377a732e309273ea235301c4d330f09e2972aeebc38173d3e40 2024-09-11T07:30:13.566 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/docker: stdout Status: Image is up to date for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 2024-09-11T07:30:13.566 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/docker: stdout quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 2024-09-11T07:30:15.354 INFO:teuthology.orchestra.run.smithi115.stdout:ceph: stdout ceph version 17.2.7-1623-gd0e6828a (d0e6828a2016d48cf25ad84064e50742bb1c39b9) quincy (stable) 2024-09-11T07:30:15.354 INFO:teuthology.orchestra.run.smithi115.stdout:Ceph version: ceph version 17.2.7-1623-gd0e6828a (d0e6828a2016d48cf25ad84064e50742bb1c39b9) quincy (stable) 2024-09-11T07:30:15.354 INFO:teuthology.orchestra.run.smithi115.stdout:Extracting ceph user uid/gid from container image... 2024-09-11T07:30:16.867 INFO:teuthology.orchestra.run.smithi115.stdout:stat: stdout 167 167 2024-09-11T07:30:16.868 INFO:teuthology.orchestra.run.smithi115.stdout:Creating initial keys... 2024-09-11T07:30:18.532 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-authtool: stdout AQAJR+FmhWcwNRAApDObQ7BZ7HCDreIbblQEQw== 2024-09-11T07:30:20.046 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-authtool: stdout AQALR+Fm1K7GHBAAnjpRjU05PF+d27Xh6Qf+oQ== 2024-09-11T07:30:21.592 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-authtool: stdout AQANR+FmbDmMARAATnytzzHGLxtM6XPEqe02XQ== 2024-09-11T07:30:21.594 INFO:teuthology.orchestra.run.smithi115.stdout:Creating initial monmap... 2024-09-11T07:30:23.141 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-11T07:30:23.141 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = octopus 2024-09-11T07:30:23.141 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 1973416c-700f-11ef-bcea-c7b262605968 2024-09-11T07:30:23.141 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-11T07:30:23.141 INFO:teuthology.orchestra.run.smithi115.stdout:monmaptool for a [v2:172.21.15.115:3300,v1:172.21.15.115:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-11T07:30:23.141 INFO:teuthology.orchestra.run.smithi115.stdout:setting min_mon_release = octopus 2024-09-11T07:30:23.141 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/monmaptool: set fsid to 1973416c-700f-11ef-bcea-c7b262605968 2024-09-11T07:30:23.141 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-11T07:30:23.142 INFO:teuthology.orchestra.run.smithi115.stdout: 2024-09-11T07:30:23.142 INFO:teuthology.orchestra.run.smithi115.stdout:Creating mon... 2024-09-11T07:30:24.707 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-11T07:30:24.707 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 1 imported monmap: 2024-09-11T07:30:24.707 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr epoch 0 2024-09-11T07:30:24.707 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr fsid 1973416c-700f-11ef-bcea-c7b262605968 2024-09-11T07:30:24.707 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr last_changed 2024-09-11T07:30:22.567618+0000 2024-09-11T07:30:24.707 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr created 2024-09-11T07:30:22.567618+0000 2024-09-11T07:30:24.707 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr min_mon_release 15 (octopus) 2024-09-11T07:30:24.707 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr election_strategy: 1 2024-09-11T07:30:24.707 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr 0: [v2:172.21.15.115:3300/0,v1:172.21.15.115:6789/0] mon.a 2024-09-11T07:30:24.708 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr 2024-09-11T07:30:24.708 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 0 /usr/bin/ceph-mon: set fsid to 1973416c-700f-11ef-bcea-c7b262605968 2024-09-11T07:30:24.708 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: RocksDB version: 6.15.5 2024-09-11T07:30:24.708 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr 2024-09-11T07:30:24.708 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-09-11T07:30:24.732 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Compile date Sep 10 2024 2024-09-11T07:30:24.733 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: DB SUMMARY 2024-09-11T07:30:24.733 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr 2024-09-11T07:30:24.733 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: DB Session ID: FD341PNI4GAKX0CFN1U0 2024-09-11T07:30:24.733 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr 2024-09-11T07:30:24.733 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 0, files: 2024-09-11T07:30:24.733 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr 2024-09-11T07:30:24.733 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 2024-09-11T07:30:24.733 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr 2024-09-11T07:30:24.733 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.error_if_exists: 0 2024-09-11T07:30:24.733 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.create_if_missing: 1 2024-09-11T07:30:24.733 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.paranoid_checks: 1 2024-09-11T07:30:24.733 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-11T07:30:24.733 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.env: 0x556c1fe9c440 2024-09-11T07:30:24.734 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.fs: Posix File System 2024-09-11T07:30:24.734 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.info_log: 0x556c21f56660 2024-09-11T07:30:24.734 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-11T07:30:24.734 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.statistics: (nil) 2024-09-11T07:30:24.734 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.use_fsync: 0 2024-09-11T07:30:24.734 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.max_log_file_size: 0 2024-09-11T07:30:24.734 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-11T07:30:24.734 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-11T07:30:24.734 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-11T07:30:24.734 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-11T07:30:24.734 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.allow_fallocate: 1 2024-09-11T07:30:24.734 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-11T07:30:24.734 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-11T07:30:24.734 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.use_direct_reads: 0 2024-09-11T07:30:24.734 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-11T07:30:24.735 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.create_missing_column_families: 0 2024-09-11T07:30:24.735 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.db_log_dir: 2024-09-11T07:30:24.735 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-a/store.db 2024-09-11T07:30:24.735 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-11T07:30:24.735 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-11T07:30:24.735 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-11T07:30:24.735 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-11T07:30:24.735 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-11T07:30:24.735 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-11T07:30:24.735 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.advise_random_on_open: 1 2024-09-11T07:30:24.735 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-11T07:30:24.735 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.write_buffer_manager: 0x556c21f9fe90 2024-09-11T07:30:24.735 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-11T07:30:24.735 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-09-11T07:30:24.736 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-11T07:30:24.736 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-11T07:30:24.736 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.rate_limiter: (nil) 2024-09-11T07:30:24.736 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-11T07:30:24.736 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-11T07:30:24.736 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-11T07:30:24.736 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-11T07:30:24.736 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.unordered_write: 0 2024-09-11T07:30:24.736 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-11T07:30:24.736 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-11T07:30:24.736 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-11T07:30:24.736 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-11T07:30:24.736 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.row_cache: None 2024-09-11T07:30:24.737 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.wal_filter: None 2024-09-11T07:30:24.737 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-11T07:30:24.737 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-11T07:30:24.737 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.preserve_deletes: 0 2024-09-11T07:30:24.737 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.two_write_queues: 0 2024-09-11T07:30:24.737 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.manual_wal_flush: 0 2024-09-11T07:30:24.737 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.atomic_flush: 0 2024-09-11T07:30:24.737 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-11T07:30:24.737 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-11T07:30:24.737 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-11T07:30:24.737 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.log_readahead_size: 0 2024-09-11T07:30:24.737 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-11T07:30:24.737 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-11T07:30:24.737 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-11T07:30:24.738 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-11T07:30:24.738 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-11T07:30:24.738 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-11T07:30:24.738 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.max_background_jobs: 2 2024-09-11T07:30:24.738 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.max_background_compactions: -1 2024-09-11T07:30:24.738 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.max_subcompactions: 1 2024-09-11T07:30:24.738 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-11T07:30:24.738 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-11T07:30:24.738 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-11T07:30:24.738 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.max_total_wal_size: 0 2024-09-11T07:30:24.738 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-11T07:30:24.738 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-11T07:30:24.738 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-11T07:30:24.738 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-11T07:30:24.738 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.max_open_files: -1 2024-09-11T07:30:24.739 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.bytes_per_sync: 0 2024-09-11T07:30:24.739 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-11T07:30:24.739 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-11T07:30:24.739 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-11T07:30:24.739 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Options.max_background_flushes: -1 2024-09-11T07:30:24.739 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Compression algorithms supported: 2024-09-11T07:30:24.739 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: kZSTD supported: 0 2024-09-11T07:30:24.739 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: kXpressCompression supported: 0 2024-09-11T07:30:24.739 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: kBZip2Compression supported: 0 2024-09-11T07:30:24.739 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-11T07:30:24.739 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: kLZ4Compression supported: 1 2024-09-11T07:30:24.739 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: kZlibCompression supported: 1 2024-09-11T07:30:24.739 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-11T07:30:24.739 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: kSnappyCompression supported: 1 2024-09-11T07:30:24.739 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.169+0000 7f0014d82900 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-11T07:30:24.739 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: [db/db_impl/db_impl_open.cc:281] Creating manifest 1 2024-09-11T07:30:24.740 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr 2024-09-11T07:30:24.740 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: [db/version_set.cc:4724] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000001 2024-09-11T07:30:24.740 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr 2024-09-11T07:30:24.740 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: [db/column_family.cc:595] --------------- Options for column family [default]: 2024-09-11T07:30:24.740 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr 2024-09-11T07:30:24.740 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-11T07:30:24.740 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.merge_operator: 2024-09-11T07:30:24.740 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.compaction_filter: None 2024-09-11T07:30:24.740 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.compaction_filter_factory: None 2024-09-11T07:30:24.740 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-11T07:30:24.740 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-11T07:30:24.740 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-11T07:30:24.740 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x556c21ef6ee0) 2024-09-11T07:30:24.740 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks: 1 2024-09-11T07:30:24.741 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks_with_high_priority: 0 2024-09-11T07:30:24.741 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-11T07:30:24.741 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr pin_top_level_index_and_filter: 1 2024-09-11T07:30:24.741 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr index_type: 0 2024-09-11T07:30:24.741 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr data_block_index_type: 0 2024-09-11T07:30:24.741 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr index_shortening: 1 2024-09-11T07:30:24.741 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr data_block_hash_table_util_ratio: 0.750000 2024-09-11T07:30:24.741 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr hash_index_allow_collision: 1 2024-09-11T07:30:24.741 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr checksum: 1 2024-09-11T07:30:24.741 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr no_block_cache: 0 2024-09-11T07:30:24.741 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr block_cache: 0x556c21f2f1f0 2024-09-11T07:30:24.741 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr block_cache_name: BinnedLRUCache 2024-09-11T07:30:24.741 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr block_cache_options: 2024-09-11T07:30:24.741 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr capacity : 536870912 2024-09-11T07:30:24.741 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr num_shard_bits : 4 2024-09-11T07:30:24.741 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr strict_capacity_limit : 0 2024-09-11T07:30:24.742 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr high_pri_pool_ratio: 0.000 2024-09-11T07:30:24.742 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr block_cache_compressed: (nil) 2024-09-11T07:30:24.742 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr persistent_cache: (nil) 2024-09-11T07:30:24.742 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr block_size: 4096 2024-09-11T07:30:24.742 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr block_size_deviation: 10 2024-09-11T07:30:24.742 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr block_restart_interval: 16 2024-09-11T07:30:24.742 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr index_block_restart_interval: 1 2024-09-11T07:30:24.742 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr metadata_block_size: 4096 2024-09-11T07:30:24.742 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr partition_filters: 0 2024-09-11T07:30:24.742 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr use_delta_encoding: 1 2024-09-11T07:30:24.742 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr filter_policy: rocksdb.BuiltinBloomFilter 2024-09-11T07:30:24.742 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr whole_key_filtering: 1 2024-09-11T07:30:24.742 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr verify_compression: 0 2024-09-11T07:30:24.742 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr read_amp_bytes_per_bit: 0 2024-09-11T07:30:24.742 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr format_version: 4 2024-09-11T07:30:24.742 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr enable_index_compression: 1 2024-09-11T07:30:24.743 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr block_align: 0 2024-09-11T07:30:24.743 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr 2024-09-11T07:30:24.743 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-11T07:30:24.743 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-11T07:30:24.743 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.compression: NoCompression 2024-09-11T07:30:24.743 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-11T07:30:24.743 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-11T07:30:24.743 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-11T07:30:24.743 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.num_levels: 7 2024-09-11T07:30:24.743 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-11T07:30:24.743 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-11T07:30:24.743 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-11T07:30:24.743 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-11T07:30:24.743 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-11T07:30:24.743 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-11T07:30:24.744 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-11T07:30:24.744 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-11T07:30:24.744 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-11T07:30:24.744 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-11T07:30:24.744 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-11T07:30:24.744 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.compression_opts.level: 32767 2024-09-11T07:30:24.744 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-11T07:30:24.744 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-11T07:30:24.744 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-11T07:30:24.744 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-11T07:30:24.744 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.compression_opts.enabled: false 2024-09-11T07:30:24.744 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-11T07:30:24.744 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-11T07:30:24.744 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-11T07:30:24.745 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-11T07:30:24.745 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-11T07:30:24.745 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-11T07:30:24.745 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-11T07:30:24.745 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-11T07:30:24.745 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-11T07:30:24.745 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-11T07:30:24.745 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-11T07:30:24.745 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-11T07:30:24.745 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-11T07:30:24.745 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-11T07:30:24.745 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-11T07:30:24.745 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-11T07:30:24.745 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-11T07:30:24.745 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.arena_block_size: 4194304 2024-09-11T07:30:24.746 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-11T07:30:24.746 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-11T07:30:24.746 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-09-11T07:30:24.746 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-11T07:30:24.746 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-11T07:30:24.746 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-11T07:30:24.746 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-11T07:30:24.746 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-11T07:30:24.746 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-11T07:30:24.746 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-11T07:30:24.746 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-11T07:30:24.746 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-11T07:30:24.746 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-11T07:30:24.746 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-11T07:30:24.746 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-11T07:30:24.747 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.inplace_update_support: 0 2024-09-11T07:30:24.747 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-11T07:30:24.747 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-11T07:30:24.747 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-11T07:30:24.747 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-11T07:30:24.747 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.bloom_locality: 0 2024-09-11T07:30:24.747 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.max_successive_merges: 0 2024-09-11T07:30:24.747 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-11T07:30:24.747 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-11T07:30:24.747 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.force_consistency_checks: 1 2024-09-11T07:30:24.747 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-11T07:30:24.747 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.ttl: 2592000 2024-09-11T07:30:24.747 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-11T07:30:24.747 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.enable_blob_files: false 2024-09-11T07:30:24.747 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.min_blob_size: 0 2024-09-11T07:30:24.748 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.blob_file_size: 268435456 2024-09-11T07:30:24.748 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-11T07:30:24.748 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-11T07:30:24.748 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-11T07:30:24.748 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: [db/version_set.cc:4764] Recovered from manifest file:/var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000001 succeeded,manifest_file_number is 1, next_file_number is 3, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-09-11T07:30:24.748 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr 2024-09-11T07:30:24.748 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: [db/version_set.cc:4779] Column family [default] (ID 0), log number is 0 2024-09-11T07:30:24.748 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr 2024-09-11T07:30:24.748 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.173+0000 7f0014d82900 4 rocksdb: [db/version_set.cc:4082] Creating manifest 3 2024-09-11T07:30:24.748 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr 2024-09-11T07:30:24.748 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.177+0000 7f0014d82900 4 rocksdb: [db/db_impl/db_impl_open.cc:1700] SstFileManager instance 0x556c21f60700 2024-09-11T07:30:24.748 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.177+0000 7f0014d82900 4 rocksdb: DB pointer 0x556c21f32000 2024-09-11T07:30:24.748 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.177+0000 7f000c510640 4 rocksdb: [db/db_impl/db_impl.cc:901] ------- DUMPING STATS ------- 2024-09-11T07:30:24.748 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.177+0000 7f000c510640 4 rocksdb: [db/db_impl/db_impl.cc:903] 2024-09-11T07:30:24.748 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr ** DB Stats ** 2024-09-11T07:30:24.749 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-11T07:30:24.749 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-11T07:30:24.749 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-11T07:30:24.749 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-11T07:30:24.749 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-11T07:30:24.749 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-09-11T07:30:24.749 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-11T07:30:24.749 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr 2024-09-11T07:30:24.749 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-11T07:30:24.749 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-09-11T07:30:24.749 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-11T07:30:24.749 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2024-09-11T07:30:24.749 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2024-09-11T07:30:24.749 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr 2024-09-11T07:30:24.749 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-11T07:30:24.750 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-09-11T07:30:24.750 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-11T07:30:24.750 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-11T07:30:24.750 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr Flush(GB): cumulative 0.000, interval 0.000 2024-09-11T07:30:24.750 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr AddFile(GB): cumulative 0.000, interval 0.000 2024-09-11T07:30:24.750 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr AddFile(Total Files): cumulative 0, interval 0 2024-09-11T07:30:24.750 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr AddFile(L0 Files): cumulative 0, interval 0 2024-09-11T07:30:24.750 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr AddFile(Keys): cumulative 0, interval 0 2024-09-11T07:30:24.750 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-11T07:30:24.750 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-11T07:30:24.750 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-11T07:30:24.750 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr 2024-09-11T07:30:24.750 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr ** File Read Latency Histogram By Level [default] ** 2024-09-11T07:30:24.750 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr 2024-09-11T07:30:24.750 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-11T07:30:24.751 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-09-11T07:30:24.751 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-11T07:30:24.751 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2024-09-11T07:30:24.751 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2024-09-11T07:30:24.751 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr 2024-09-11T07:30:24.751 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-11T07:30:24.751 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-09-11T07:30:24.751 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-11T07:30:24.751 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-11T07:30:24.751 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr Flush(GB): cumulative 0.000, interval 0.000 2024-09-11T07:30:24.751 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr AddFile(GB): cumulative 0.000, interval 0.000 2024-09-11T07:30:24.751 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr AddFile(Total Files): cumulative 0, interval 0 2024-09-11T07:30:24.751 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr AddFile(L0 Files): cumulative 0, interval 0 2024-09-11T07:30:24.751 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr AddFile(Keys): cumulative 0, interval 0 2024-09-11T07:30:24.751 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-11T07:30:24.751 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-11T07:30:24.752 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-11T07:30:24.752 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr 2024-09-11T07:30:24.752 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr ** File Read Latency Histogram By Level [default] ** 2024-09-11T07:30:24.752 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr 2024-09-11T07:30:24.752 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.181+0000 7f0014d82900 4 rocksdb: [db/db_impl/db_impl.cc:446] Shutdown: canceling all background work 2024-09-11T07:30:24.752 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.181+0000 7f0014d82900 4 rocksdb: [db/db_impl/db_impl.cc:625] Shutdown complete 2024-09-11T07:30:24.752 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-11T07:30:24.181+0000 7f0014d82900 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-a for mon.a 2024-09-11T07:30:24.752 INFO:teuthology.orchestra.run.smithi115.stdout:create mon.a on 2024-09-11T07:30:24.922 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stderr Removed /etc/systemd/system/multi-user.target.wants/ceph.target. 2024-09-11T07:30:25.114 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-09-11T07:30:25.318 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-1973416c-700f-11ef-bcea-c7b262605968.target -> /etc/systemd/system/ceph-1973416c-700f-11ef-bcea-c7b262605968.target. 2024-09-11T07:30:25.318 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-1973416c-700f-11ef-bcea-c7b262605968.target -> /etc/systemd/system/ceph-1973416c-700f-11ef-bcea-c7b262605968.target. 2024-09-11T07:30:25.527 INFO:teuthology.orchestra.run.smithi115.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-1973416c-700f-11ef-bcea-c7b262605968@mon.a 2024-09-11T07:30:25.527 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stderr Failed to reset failed state of unit ceph-1973416c-700f-11ef-bcea-c7b262605968@mon.a.service: Unit ceph-1973416c-700f-11ef-bcea-c7b262605968@mon.a.service not loaded. 2024-09-11T07:30:25.730 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-1973416c-700f-11ef-bcea-c7b262605968.target.wants/ceph-1973416c-700f-11ef-bcea-c7b262605968@mon.a.service -> /etc/systemd/system/ceph-1973416c-700f-11ef-bcea-c7b262605968@.service. 2024-09-11T07:30:25.742 INFO:teuthology.orchestra.run.smithi115.stdout:firewalld does not appear to be present 2024-09-11T07:30:25.742 INFO:teuthology.orchestra.run.smithi115.stdout:Not possible to enable service . firewalld.service is not available 2024-09-11T07:30:25.743 INFO:teuthology.orchestra.run.smithi115.stdout:Waiting for mon to start... 2024-09-11T07:30:25.743 INFO:teuthology.orchestra.run.smithi115.stdout:Waiting for mon... 2024-09-11T07:30:25.848 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:25 smithi115 systemd[1]: Started Ceph mon.a for 1973416c-700f-11ef-bcea-c7b262605968. 2024-09-11T07:30:27.582 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:27 smithi115 bash[18166]: cluster 2024-09-11T07:30:27.344676+0000 mon.a (mon.0) 0 : cluster [INF] mkfs 1973416c-700f-11ef-bcea-c7b262605968 2024-09-11T07:30:27.582 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:27 smithi115 bash[18166]: cluster 2024-09-11T07:30:27.332753+0000 mon.a (mon.0) 1 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-11T07:30:28.109 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout cluster: 2024-09-11T07:30:28.109 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout id: 1973416c-700f-11ef-bcea-c7b262605968 2024-09-11T07:30:28.109 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-11T07:30:28.109 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout 2024-09-11T07:30:28.109 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout services: 2024-09-11T07:30:28.109 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.210522s) 2024-09-11T07:30:28.109 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-11T07:30:28.109 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-11T07:30:28.109 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout 2024-09-11T07:30:28.110 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout data: 2024-09-11T07:30:28.110 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-11T07:30:28.110 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-11T07:30:28.110 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-11T07:30:28.110 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout pgs: 2024-09-11T07:30:28.110 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout 2024-09-11T07:30:28.110 INFO:teuthology.orchestra.run.smithi115.stdout:mon is available 2024-09-11T07:30:28.110 INFO:teuthology.orchestra.run.smithi115.stdout:Assimilating anything we can from ceph.conf... 2024-09-11T07:30:28.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:28 smithi115 bash[18166]: cluster 2024-09-11T07:30:27.342518+0000 mon.a (mon.0) 2 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-11T07:30:28.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:28 smithi115 bash[18166]: cluster 2024-09-11T07:30:27.342833+0000 mon.a (mon.0) 3 : cluster [DBG] monmap e1: 1 mons at {a=[v2:172.21.15.115:3300/0,v1:172.21.15.115:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-11T07:30:28.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:28 smithi115 bash[18166]: cluster 2024-09-11T07:30:27.348318+0000 mon.a (mon.0) 4 : cluster [DBG] fsmap 2024-09-11T07:30:28.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:28 smithi115 bash[18166]: cluster 2024-09-11T07:30:27.351830+0000 mon.a (mon.0) 5 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-11T07:30:28.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:28 smithi115 bash[18166]: cluster 2024-09-11T07:30:27.352467+0000 mon.a (mon.0) 6 : cluster [DBG] mgrmap e1: no daemons active 2024-09-11T07:30:28.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:28 smithi115 bash[18166]: audit 2024-09-11T07:30:27.552949+0000 mon.a (mon.0) 7 : audit [DBG] from='client.? 172.21.15.115:0/658419127' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-09-11T07:30:29.845 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:29 smithi115 bash[18166]: audit 2024-09-11T07:30:29.372702+0000 mon.a (mon.0) 8 : audit [INF] from='client.? 172.21.15.115:0/3062722231' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-11T07:30:29.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:29 smithi115 bash[18166]: audit 2024-09-11T07:30:29.377619+0000 mon.a (mon.0) 9 : audit [INF] from='client.? 172.21.15.115:0/3062722231' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-11T07:30:29.882 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout 2024-09-11T07:30:29.882 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout [global] 2024-09-11T07:30:29.882 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout fsid = 1973416c-700f-11ef-bcea-c7b262605968 2024-09-11T07:30:29.882 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-11T07:30:29.882 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.115:3300,v1:172.21.15.115:6789] 2024-09-11T07:30:29.882 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-11T07:30:29.882 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-11T07:30:29.882 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-11T07:30:29.882 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-11T07:30:29.882 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout 2024-09-11T07:30:29.883 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-11T07:30:29.883 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = False 2024-09-11T07:30:29.883 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-11T07:30:29.883 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout 2024-09-11T07:30:29.883 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout [osd] 2024-09-11T07:30:29.883 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-11T07:30:29.883 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-11T07:30:29.883 INFO:teuthology.orchestra.run.smithi115.stdout:Generating new minimal ceph.conf... 2024-09-11T07:30:31.595 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:31 smithi115 bash[18166]: audit 2024-09-11T07:30:31.134253+0000 mon.a (mon.0) 10 : audit [DBG] from='client.? 172.21.15.115:0/268124187' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:30:31.753 INFO:teuthology.orchestra.run.smithi115.stdout:Restarting the monitor... 2024-09-11T07:30:32.071 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:31 smithi115 systemd[1]: Stopping Ceph mon.a for 1973416c-700f-11ef-bcea-c7b262605968... 2024-09-11T07:30:32.071 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:31 smithi115 bash[18166]: debug 2024-09-11T07:30:31.897+0000 7f714bfea640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-09-11T07:30:32.071 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:31 smithi115 bash[18166]: debug 2024-09-11T07:30:31.897+0000 7f714bfea640 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-09-11T07:30:32.643 INFO:teuthology.orchestra.run.smithi115.stdout:Setting public_network to 172.21.15.254/32,172.21.0.0/20 in mon config section 2024-09-11T07:30:32.787 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:32 smithi115 bash[18580]: ceph-1973416c-700f-11ef-bcea-c7b262605968-mon-a 2024-09-11T07:30:32.787 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:32 smithi115 bash[18641]: Error response from daemon: No such container: ceph-1973416c-700f-11ef-bcea-c7b262605968-mon-a 2024-09-11T07:30:32.788 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:32 smithi115 systemd[1]: ceph-1973416c-700f-11ef-bcea-c7b262605968@mon.a.service: Succeeded. 2024-09-11T07:30:32.788 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:32 smithi115 systemd[1]: Stopped Ceph mon.a for 1973416c-700f-11ef-bcea-c7b262605968. 2024-09-11T07:30:32.788 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:32 smithi115 systemd[1]: Started Ceph mon.a for 1973416c-700f-11ef-bcea-c7b262605968. 2024-09-11T07:30:34.255 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.973+0000 7f1ba0a61900 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-11T07:30:34.255 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.973+0000 7f1ba0a61900 0 ceph version 17.2.7-1623-gd0e6828a (d0e6828a2016d48cf25ad84064e50742bb1c39b9) quincy (stable), process ceph-mon, pid 6 2024-09-11T07:30:34.255 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.973+0000 7f1ba0a61900 0 pidfile_write: ignore empty --pid-file 2024-09-11T07:30:34.255 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 0 load: jerasure load: lrc 2024-09-11T07:30:34.255 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: RocksDB version: 6.15.5 2024-09-11T07:30:34.256 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-09-11T07:30:34.256 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Compile date Sep 10 2024 2024-09-11T07:30:34.256 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: DB SUMMARY 2024-09-11T07:30:34.256 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: DB Session ID: OGIVLX1GO3GLJEU35KGM 2024-09-11T07:30:34.256 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: CURRENT file: CURRENT 2024-09-11T07:30:34.256 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: IDENTITY file: IDENTITY 2024-09-11T07:30:34.256 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: MANIFEST file: MANIFEST-000009 size: 131 Bytes 2024-09-11T07:30:34.256 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2024-09-11T07:30:34.256 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000010.log size: 82870 ; 2024-09-11T07:30:34.256 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.error_if_exists: 0 2024-09-11T07:30:34.256 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.create_if_missing: 0 2024-09-11T07:30:34.256 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.paranoid_checks: 1 2024-09-11T07:30:34.256 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-11T07:30:34.257 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.env: 0x5560f9175440 2024-09-11T07:30:34.257 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.fs: Posix File System 2024-09-11T07:30:34.257 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.info_log: 0x5560fb7beee0 2024-09-11T07:30:34.257 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-11T07:30:34.257 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.statistics: (nil) 2024-09-11T07:30:34.257 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.use_fsync: 0 2024-09-11T07:30:34.257 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.max_log_file_size: 0 2024-09-11T07:30:34.257 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-11T07:30:34.257 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-11T07:30:34.258 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-11T07:30:34.258 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-11T07:30:34.259 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.allow_fallocate: 1 2024-09-11T07:30:34.259 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-11T07:30:34.259 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-11T07:30:34.259 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.use_direct_reads: 0 2024-09-11T07:30:34.259 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-11T07:30:34.259 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.create_missing_column_families: 0 2024-09-11T07:30:34.259 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.db_log_dir: 2024-09-11T07:30:34.259 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-a/store.db 2024-09-11T07:30:34.259 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-11T07:30:34.259 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-11T07:30:34.259 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-11T07:30:34.259 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-11T07:30:34.260 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-11T07:30:34.260 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-11T07:30:34.260 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.advise_random_on_open: 1 2024-09-11T07:30:34.260 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-11T07:30:34.260 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.write_buffer_manager: 0x5560fb87c780 2024-09-11T07:30:34.260 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-11T07:30:34.260 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-09-11T07:30:34.260 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-11T07:30:34.260 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-11T07:30:34.260 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.rate_limiter: (nil) 2024-09-11T07:30:34.260 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-11T07:30:34.260 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-11T07:30:34.261 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-11T07:30:34.261 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-11T07:30:34.261 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.unordered_write: 0 2024-09-11T07:30:34.261 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-11T07:30:34.261 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-11T07:30:34.261 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-11T07:30:34.261 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-11T07:30:34.261 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.row_cache: None 2024-09-11T07:30:34.261 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.wal_filter: None 2024-09-11T07:30:34.261 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-11T07:30:34.261 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-11T07:30:34.261 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.preserve_deletes: 0 2024-09-11T07:30:34.261 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.two_write_queues: 0 2024-09-11T07:30:34.261 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.manual_wal_flush: 0 2024-09-11T07:30:34.262 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.atomic_flush: 0 2024-09-11T07:30:34.262 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-11T07:30:34.262 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-11T07:30:34.262 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-11T07:30:34.262 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.log_readahead_size: 0 2024-09-11T07:30:34.262 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-11T07:30:34.262 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-11T07:30:34.262 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-11T07:30:34.262 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-11T07:30:34.262 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-11T07:30:34.262 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-11T07:30:34.262 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.max_background_jobs: 2 2024-09-11T07:30:34.262 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.max_background_compactions: -1 2024-09-11T07:30:34.262 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.max_subcompactions: 1 2024-09-11T07:30:34.262 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-11T07:30:34.263 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-11T07:30:34.263 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-11T07:30:34.263 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.max_total_wal_size: 0 2024-09-11T07:30:34.263 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-11T07:30:34.263 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-11T07:30:34.263 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-11T07:30:34.263 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-11T07:30:34.263 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.max_open_files: -1 2024-09-11T07:30:34.263 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.bytes_per_sync: 0 2024-09-11T07:30:34.263 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-11T07:30:34.263 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-11T07:30:34.263 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-11T07:30:34.263 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.max_background_flushes: -1 2024-09-11T07:30:34.263 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Compression algorithms supported: 2024-09-11T07:30:34.263 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: kZSTD supported: 0 2024-09-11T07:30:34.264 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: kXpressCompression supported: 0 2024-09-11T07:30:34.264 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: kBZip2Compression supported: 0 2024-09-11T07:30:34.264 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-11T07:30:34.264 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: kLZ4Compression supported: 1 2024-09-11T07:30:34.264 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: kZlibCompression supported: 1 2024-09-11T07:30:34.264 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-11T07:30:34.264 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: kSnappyCompression supported: 1 2024-09-11T07:30:34.264 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-11T07:30:34.264 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: [db/version_set.cc:4724] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000009 2024-09-11T07:30:34.264 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: [db/column_family.cc:595] --------------- Options for column family [default]: 2024-09-11T07:30:34.264 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-11T07:30:34.264 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.merge_operator: 2024-09-11T07:30:34.264 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.compaction_filter: None 2024-09-11T07:30:34.264 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.compaction_filter_factory: None 2024-09-11T07:30:34.264 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-11T07:30:34.264 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-11T07:30:34.265 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-11T07:30:34.265 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x5560fb767a38) 2024-09-11T07:30:34.265 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: cache_index_and_filter_blocks: 1 2024-09-11T07:30:34.265 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-11T07:30:34.265 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-11T07:30:34.265 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: pin_top_level_index_and_filter: 1 2024-09-11T07:30:34.265 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: index_type: 0 2024-09-11T07:30:34.265 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: data_block_index_type: 0 2024-09-11T07:30:34.265 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: index_shortening: 1 2024-09-11T07:30:34.265 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: data_block_hash_table_util_ratio: 0.750000 2024-09-11T07:30:34.265 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: hash_index_allow_collision: 1 2024-09-11T07:30:34.265 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: checksum: 1 2024-09-11T07:30:34.265 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: no_block_cache: 0 2024-09-11T07:30:34.265 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: block_cache: 0x5560fb79b350 2024-09-11T07:30:34.265 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: block_cache_name: BinnedLRUCache 2024-09-11T07:30:34.266 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: block_cache_options: 2024-09-11T07:30:34.266 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: capacity : 536870912 2024-09-11T07:30:34.266 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: num_shard_bits : 4 2024-09-11T07:30:34.266 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: strict_capacity_limit : 0 2024-09-11T07:30:34.266 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: high_pri_pool_ratio: 0.000 2024-09-11T07:30:34.266 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: block_cache_compressed: (nil) 2024-09-11T07:30:34.266 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: persistent_cache: (nil) 2024-09-11T07:30:34.266 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: block_size: 4096 2024-09-11T07:30:34.266 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: block_size_deviation: 10 2024-09-11T07:30:34.266 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: block_restart_interval: 16 2024-09-11T07:30:34.266 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: index_block_restart_interval: 1 2024-09-11T07:30:34.266 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: metadata_block_size: 4096 2024-09-11T07:30:34.266 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: partition_filters: 0 2024-09-11T07:30:34.266 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: use_delta_encoding: 1 2024-09-11T07:30:34.267 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: filter_policy: rocksdb.BuiltinBloomFilter 2024-09-11T07:30:34.267 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: whole_key_filtering: 1 2024-09-11T07:30:34.267 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: verify_compression: 0 2024-09-11T07:30:34.267 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: read_amp_bytes_per_bit: 0 2024-09-11T07:30:34.267 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: format_version: 4 2024-09-11T07:30:34.267 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: enable_index_compression: 1 2024-09-11T07:30:34.267 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: block_align: 0 2024-09-11T07:30:34.267 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-11T07:30:34.267 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-11T07:30:34.267 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.compression: NoCompression 2024-09-11T07:30:34.267 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-11T07:30:34.267 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-11T07:30:34.267 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-11T07:30:34.267 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.num_levels: 7 2024-09-11T07:30:34.267 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-11T07:30:34.268 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-11T07:30:34.268 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-11T07:30:34.268 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-11T07:30:34.268 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-11T07:30:34.268 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-11T07:30:34.268 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-11T07:30:34.268 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-11T07:30:34.268 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-11T07:30:34.268 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-11T07:30:34.268 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-11T07:30:34.268 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.compression_opts.level: 32767 2024-09-11T07:30:34.268 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-11T07:30:34.268 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-11T07:30:34.268 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-11T07:30:34.269 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-11T07:30:34.269 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.compression_opts.enabled: false 2024-09-11T07:30:34.269 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-11T07:30:34.269 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-11T07:30:34.269 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-11T07:30:34.269 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-11T07:30:34.269 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-11T07:30:34.269 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-11T07:30:34.269 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-11T07:30:34.269 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-11T07:30:34.269 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-11T07:30:34.269 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-11T07:30:34.269 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-11T07:30:34.269 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-11T07:30:34.270 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-11T07:30:34.270 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-11T07:30:34.270 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-11T07:30:34.270 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-11T07:30:34.270 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-11T07:30:34.270 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.arena_block_size: 4194304 2024-09-11T07:30:34.270 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-11T07:30:34.270 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-11T07:30:34.270 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-09-11T07:30:34.270 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-11T07:30:34.270 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-11T07:30:34.270 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-11T07:30:34.270 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-11T07:30:34.270 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-11T07:30:34.270 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-11T07:30:34.271 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-11T07:30:34.271 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-11T07:30:34.271 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-11T07:30:34.271 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-11T07:30:34.271 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-11T07:30:34.271 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-11T07:30:34.271 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.inplace_update_support: 0 2024-09-11T07:30:34.272 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-11T07:30:34.272 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-11T07:30:34.272 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-11T07:30:34.272 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-11T07:30:34.272 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.bloom_locality: 0 2024-09-11T07:30:34.272 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.max_successive_merges: 0 2024-09-11T07:30:34.272 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-11T07:30:34.272 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-11T07:30:34.272 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.force_consistency_checks: 1 2024-09-11T07:30:34.272 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-11T07:30:34.273 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.ttl: 2592000 2024-09-11T07:30:34.273 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-11T07:30:34.273 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.enable_blob_files: false 2024-09-11T07:30:34.273 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.min_blob_size: 0 2024-09-11T07:30:34.273 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.blob_file_size: 268435456 2024-09-11T07:30:34.273 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-11T07:30:34.273 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-11T07:30:34.273 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.977+0000 7f1ba0a61900 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-11T07:30:34.273 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.981+0000 7f1ba0a61900 4 rocksdb: [db/version_set.cc:4764] Recovered from manifest file:/var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000009 succeeded,manifest_file_number is 9, next_file_number is 11, last_sequence is 5, log_number is 5,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-09-11T07:30:34.273 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.981+0000 7f1ba0a61900 4 rocksdb: [db/version_set.cc:4779] Column family [default] (ID 0), log number is 5 2024-09-11T07:30:34.273 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.981+0000 7f1ba0a61900 4 rocksdb: [db/version_set.cc:4082] Creating manifest 13 2024-09-11T07:30:34.273 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.981+0000 7f1ba0a61900 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726039833983111, "job": 1, "event": "recovery_started", "wal_files": [10]} 2024-09-11T07:30:34.273 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.981+0000 7f1ba0a61900 4 rocksdb: [db/db_impl/db_impl_open.cc:845] Recovering log #10 mode 2 2024-09-11T07:30:34.273 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.981+0000 7f1ba0a61900 3 rocksdb: [table/block_based/filter_policy.cc:991] Using legacy Bloom filter with high (20) bits/key. Dramatic filter space and/or accuracy improvement is available with format_version>=5. 2024-09-11T07:30:34.274 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.981+0000 7f1ba0a61900 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726039833984471, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 14, "file_size": 79600, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 77832, "index_size": 230, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 581, "raw_key_size": 9759, "raw_average_key_size": 47, "raw_value_size": 72239, "raw_average_value_size": 348, "num_data_blocks": 10, "num_entries": 207, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; ", "creation_time": 1726039833, "oldest_key_time": 0, "file_creation_time": 0, "db_id": "983e9e35-73aa-4e1c-9e01-3675a1c724fb", "db_session_id": "OGIVLX1GO3GLJEU35KGM"}} 2024-09-11T07:30:34.274 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.981+0000 7f1ba0a61900 4 rocksdb: [db/version_set.cc:4082] Creating manifest 15 2024-09-11T07:30:34.274 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.981+0000 7f1ba0a61900 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726039833985168, "job": 1, "event": "recovery_finished"} 2024-09-11T07:30:34.274 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.981+0000 7f1ba0a61900 4 rocksdb: [file/delete_scheduler.cc:69] Deleted file /var/lib/ceph/mon/ceph-a/store.db/000010.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-11T07:30:34.274 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.985+0000 7f1ba0a61900 4 rocksdb: [db/db_impl/db_impl_open.cc:1700] SstFileManager instance 0x5560fb7d0700 2024-09-11T07:30:34.274 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.985+0000 7f1ba0a61900 4 rocksdb: DB pointer 0x5560fb79e000 2024-09-11T07:30:34.274 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.985+0000 7f1ba0a61900 0 starting mon.a rank 0 at public addrs [v2:172.21.15.115:3300/0,v1:172.21.15.115:6789/0] at bind addrs [v2:172.21.15.115:3300/0,v1:172.21.15.115:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid 1973416c-700f-11ef-bcea-c7b262605968 2024-09-11T07:30:34.274 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.985+0000 7f1b9682d640 4 rocksdb: [db/db_impl/db_impl.cc:901] ------- DUMPING STATS ------- 2024-09-11T07:30:34.274 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.985+0000 7f1b9682d640 4 rocksdb: [db/db_impl/db_impl.cc:903] 2024-09-11T07:30:34.274 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: ** DB Stats ** 2024-09-11T07:30:34.274 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-11T07:30:34.274 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-11T07:30:34.274 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-11T07:30:34.274 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-11T07:30:34.274 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-11T07:30:34.275 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-09-11T07:30:34.275 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-11T07:30:34.275 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: ** Compaction Stats [default] ** 2024-09-11T07:30:34.275 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-09-11T07:30:34.275 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-11T07:30:34.275 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: L0 2/0 79.52 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 86.9 0.00 0.00 1 0.001 0 0 2024-09-11T07:30:34.275 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: Sum 2/0 79.52 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 86.9 0.00 0.00 1 0.001 0 0 2024-09-11T07:30:34.275 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 86.9 0.00 0.00 1 0.001 0 0 2024-09-11T07:30:34.275 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: ** Compaction Stats [default] ** 2024-09-11T07:30:34.275 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-09-11T07:30:34.275 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-11T07:30:34.275 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 86.9 0.00 0.00 1 0.001 0 0 2024-09-11T07:30:34.275 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-11T07:30:34.275 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-11T07:30:34.275 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-11T07:30:34.276 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: AddFile(Total Files): cumulative 0, interval 0 2024-09-11T07:30:34.276 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-11T07:30:34.276 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: AddFile(Keys): cumulative 0, interval 0 2024-09-11T07:30:34.276 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: Cumulative compaction: 0.00 GB write, 11.76 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-11T07:30:34.276 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: Interval compaction: 0.00 GB write, 11.76 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-11T07:30:34.276 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-11T07:30:34.276 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: ** File Read Latency Histogram By Level [default] ** 2024-09-11T07:30:34.276 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: ** Compaction Stats [default] ** 2024-09-11T07:30:34.276 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-09-11T07:30:34.276 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-11T07:30:34.276 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: L0 2/0 79.52 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 86.9 0.00 0.00 1 0.001 0 0 2024-09-11T07:30:34.276 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: Sum 2/0 79.52 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 86.9 0.00 0.00 1 0.001 0 0 2024-09-11T07:30:34.276 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2024-09-11T07:30:34.276 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: ** Compaction Stats [default] ** 2024-09-11T07:30:34.276 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-09-11T07:30:34.277 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-11T07:30:34.277 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 86.9 0.00 0.00 1 0.001 0 0 2024-09-11T07:30:34.277 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-11T07:30:34.277 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-11T07:30:34.277 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-11T07:30:34.277 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: AddFile(Total Files): cumulative 0, interval 0 2024-09-11T07:30:34.277 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-11T07:30:34.277 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: AddFile(Keys): cumulative 0, interval 0 2024-09-11T07:30:34.277 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: Cumulative compaction: 0.00 GB write, 11.62 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-11T07:30:34.277 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-11T07:30:34.277 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-11T07:30:34.277 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: ** File Read Latency Histogram By Level [default] ** 2024-09-11T07:30:34.277 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.985+0000 7f1ba0a61900 1 mon.a@-1(???) e1 preinit fsid 1973416c-700f-11ef-bcea-c7b262605968 2024-09-11T07:30:34.277 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.989+0000 7f1ba0a61900 0 mon.a@-1(???).mds e1 new map 2024-09-11T07:30:34.277 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.989+0000 7f1ba0a61900 0 mon.a@-1(???).mds e1 print_map 2024-09-11T07:30:34.277 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: e1 2024-09-11T07:30:34.278 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-11T07:30:34.278 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2} 2024-09-11T07:30:34.278 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: legacy client fscid: -1 2024-09-11T07:30:34.278 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: 2024-09-11T07:30:34.278 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: No filesystems configured 2024-09-11T07:30:34.278 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.989+0000 7f1ba0a61900 0 mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-11T07:30:34.278 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.989+0000 7f1ba0a61900 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-11T07:30:34.278 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.989+0000 7f1ba0a61900 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-11T07:30:34.278 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.989+0000 7f1ba0a61900 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-11T07:30:34.278 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:33 smithi115 bash[18678]: debug 2024-09-11T07:30:33.989+0000 7f1ba0a61900 1 mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-11T07:30:34.278 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:34 smithi115 bash[18678]: cluster 2024-09-11T07:30:33.994520+0000 mon.a (mon.0) 1 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-11T07:30:34.278 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:34 smithi115 bash[18678]: cluster 2024-09-11T07:30:33.994595+0000 mon.a (mon.0) 2 : cluster [DBG] monmap e1: 1 mons at {a=[v2:172.21.15.115:3300/0,v1:172.21.15.115:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-11T07:30:34.278 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:34 smithi115 bash[18678]: cluster 2024-09-11T07:30:33.995155+0000 mon.a (mon.0) 3 : cluster [DBG] fsmap 2024-09-11T07:30:34.278 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:34 smithi115 bash[18678]: cluster 2024-09-11T07:30:33.995186+0000 mon.a (mon.0) 4 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-11T07:30:34.278 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:34 smithi115 bash[18678]: cluster 2024-09-11T07:30:33.995704+0000 mon.a (mon.0) 5 : cluster [DBG] mgrmap e1: no daemons active 2024-09-11T07:30:34.849 INFO:teuthology.orchestra.run.smithi115.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-11T07:30:34.849 INFO:teuthology.orchestra.run.smithi115.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-11T07:30:34.849 INFO:teuthology.orchestra.run.smithi115.stdout:Creating mgr... 2024-09-11T07:30:34.849 INFO:teuthology.orchestra.run.smithi115.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-11T07:30:34.850 INFO:teuthology.orchestra.run.smithi115.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-11T07:30:35.054 INFO:teuthology.orchestra.run.smithi115.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-1973416c-700f-11ef-bcea-c7b262605968@mgr.a 2024-09-11T07:30:35.054 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stderr Failed to reset failed state of unit ceph-1973416c-700f-11ef-bcea-c7b262605968@mgr.a.service: Unit ceph-1973416c-700f-11ef-bcea-c7b262605968@mgr.a.service not loaded. 2024-09-11T07:30:35.229 INFO:teuthology.orchestra.run.smithi115.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-1973416c-700f-11ef-bcea-c7b262605968.target.wants/ceph-1973416c-700f-11ef-bcea-c7b262605968@mgr.a.service -> /etc/systemd/system/ceph-1973416c-700f-11ef-bcea-c7b262605968@.service. 2024-09-11T07:30:35.241 INFO:teuthology.orchestra.run.smithi115.stdout:firewalld does not appear to be present 2024-09-11T07:30:35.241 INFO:teuthology.orchestra.run.smithi115.stdout:Not possible to enable service . firewalld.service is not available 2024-09-11T07:30:35.242 INFO:teuthology.orchestra.run.smithi115.stdout:firewalld does not appear to be present 2024-09-11T07:30:35.242 INFO:teuthology.orchestra.run.smithi115.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2024-09-11T07:30:35.242 INFO:teuthology.orchestra.run.smithi115.stdout:Waiting for mgr to start... 2024-09-11T07:30:35.242 INFO:teuthology.orchestra.run.smithi115.stdout:Waiting for mgr... 2024-09-11T07:30:35.595 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:35 smithi115 bash[18678]: audit 2024-09-11T07:30:34.229099+0000 mon.a (mon.0) 6 : audit [INF] from='client.? 172.21.15.115:0/2691060754' entity='client.admin' 2024-09-11T07:30:37.345 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:37 smithi115 bash[18678]: audit 2024-09-11T07:30:37.009380+0000 mon.a (mon.0) 7 : audit [DBG] from='client.? 172.21.15.115:0/660152992' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-11T07:30:37.346 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:36 smithi115 bash[18949]: debug 2024-09-11T07:30:36.937+0000 7f8d5147eec0 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-11T07:30:37.654 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout 2024-09-11T07:30:37.654 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout { 2024-09-11T07:30:37.654 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "fsid": "1973416c-700f-11ef-bcea-c7b262605968", 2024-09-11T07:30:37.655 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "health": { 2024-09-11T07:30:37.655 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-11T07:30:37.655 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-11T07:30:37.655 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-11T07:30:37.655 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout }, 2024-09-11T07:30:37.655 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-11T07:30:37.655 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-11T07:30:37.655 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout 0 2024-09-11T07:30:37.655 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout ], 2024-09-11T07:30:37.655 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-11T07:30:37.655 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "a" 2024-09-11T07:30:37.655 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout ], 2024-09-11T07:30:37.655 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "quorum_age": 3, 2024-09-11T07:30:37.655 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-11T07:30:37.656 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T07:30:37.656 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "quincy", 2024-09-11T07:30:37.656 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-11T07:30:37.656 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout }, 2024-09-11T07:30:37.656 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-11T07:30:37.656 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T07:30:37.656 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-11T07:30:37.656 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-11T07:30:37.656 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-11T07:30:37.656 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-11T07:30:37.656 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-11T07:30:37.656 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-11T07:30:37.656 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout }, 2024-09-11T07:30:37.656 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-11T07:30:37.657 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-11T07:30:37.657 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-11T07:30:37.657 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-11T07:30:37.657 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-11T07:30:37.657 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-11T07:30:37.657 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-11T07:30:37.657 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-11T07:30:37.657 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-11T07:30:37.657 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout }, 2024-09-11T07:30:37.657 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-11T07:30:37.657 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T07:30:37.657 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-11T07:30:37.657 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-11T07:30:37.657 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout }, 2024-09-11T07:30:37.658 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-11T07:30:37.658 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-11T07:30:37.658 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-11T07:30:37.658 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-11T07:30:37.658 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-11T07:30:37.658 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-11T07:30:37.658 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "restful" 2024-09-11T07:30:37.658 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout ], 2024-09-11T07:30:37.658 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-11T07:30:37.658 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout }, 2024-09-11T07:30:37.658 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-11T07:30:37.658 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T07:30:37.658 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "modified": "2024-09-11T07:30:27.345766+0000", 2024-09-11T07:30:37.658 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-11T07:30:37.658 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout }, 2024-09-11T07:30:37.659 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-11T07:30:37.659 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout } 2024-09-11T07:30:37.659 INFO:teuthology.orchestra.run.smithi115.stdout:mgr not available, waiting (1/15)... 2024-09-11T07:30:37.988 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:37 smithi115 bash[18949]: debug 2024-09-11T07:30:37.705+0000 7f8d5147eec0 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-11T07:30:37.988 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:37 smithi115 bash[18949]: debug 2024-09-11T07:30:37.769+0000 7f8d5147eec0 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-11T07:30:37.988 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:37 smithi115 bash[18949]: debug 2024-09-11T07:30:37.833+0000 7f8d5147eec0 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-11T07:30:38.294 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:37 smithi115 bash[18949]: debug 2024-09-11T07:30:37.985+0000 7f8d5147eec0 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-11T07:30:38.294 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:38 smithi115 bash[18949]: debug 2024-09-11T07:30:38.229+0000 7f8d5147eec0 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-11T07:30:38.595 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:38 smithi115 bash[18949]: debug 2024-09-11T07:30:38.289+0000 7f8d5147eec0 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-11T07:30:38.596 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:38 smithi115 bash[18949]: debug 2024-09-11T07:30:38.421+0000 7f8d5147eec0 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-11T07:30:39.345 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:39 smithi115 bash[18949]: debug 2024-09-11T07:30:39.049+0000 7f8d5147eec0 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-11T07:30:39.346 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:39 smithi115 bash[18949]: debug 2024-09-11T07:30:39.117+0000 7f8d5147eec0 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-11T07:30:39.346 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:39 smithi115 bash[18949]: debug 2024-09-11T07:30:39.193+0000 7f8d5147eec0 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-11T07:30:39.763 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:39 smithi115 bash[18949]: debug 2024-09-11T07:30:39.469+0000 7f8d5147eec0 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-11T07:30:39.763 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:39 smithi115 bash[18949]: debug 2024-09-11T07:30:39.605+0000 7f8d5147eec0 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-11T07:30:40.097 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:39 smithi115 bash[18949]: debug 2024-09-11T07:30:39.921+0000 7f8d5147eec0 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-11T07:30:40.553 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:40 smithi115 bash[18949]: debug 2024-09-11T07:30:40.133+0000 7f8d5147eec0 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-11T07:30:40.837 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:40 smithi115 bash[18949]: debug 2024-09-11T07:30:40.549+0000 7f8d5147eec0 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-11T07:30:40.838 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:40 smithi115 bash[18949]: debug 2024-09-11T07:30:40.613+0000 7f8d5147eec0 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-11T07:30:40.838 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:40 smithi115 bash[18949]: debug 2024-09-11T07:30:40.677+0000 7f8d5147eec0 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-11T07:30:40.838 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:40 smithi115 bash[18949]: debug 2024-09-11T07:30:40.773+0000 7f8d5147eec0 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-11T07:30:41.117 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:40 smithi115 bash[18949]: debug 2024-09-11T07:30:40.845+0000 7f8d5147eec0 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-11T07:30:41.117 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:40 smithi115 bash[18949]: debug 2024-09-11T07:30:40.921+0000 7f8d5147eec0 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-11T07:30:41.117 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:41 smithi115 bash[18949]: debug 2024-09-11T07:30:41.069+0000 7f8d5147eec0 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-11T07:30:41.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:41 smithi115 bash[18678]: audit 2024-09-11T07:30:41.091077+0000 mon.a (mon.0) 8 : audit [DBG] from='client.? 172.21.15.115:0/2668721638' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-11T07:30:41.596 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:41 smithi115 bash[18949]: debug 2024-09-11T07:30:41.153+0000 7f8d5147eec0 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-11T07:30:41.640 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout 2024-09-11T07:30:41.640 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout { 2024-09-11T07:30:41.640 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "fsid": "1973416c-700f-11ef-bcea-c7b262605968", 2024-09-11T07:30:41.641 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "health": { 2024-09-11T07:30:41.641 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-11T07:30:41.641 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-11T07:30:41.641 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-11T07:30:41.641 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout }, 2024-09-11T07:30:41.641 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-11T07:30:41.641 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-11T07:30:41.641 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout 0 2024-09-11T07:30:41.641 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout ], 2024-09-11T07:30:41.641 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-11T07:30:41.641 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "a" 2024-09-11T07:30:41.641 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout ], 2024-09-11T07:30:41.641 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "quorum_age": 7, 2024-09-11T07:30:41.641 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-11T07:30:41.642 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T07:30:41.642 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "quincy", 2024-09-11T07:30:41.642 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-11T07:30:41.642 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout }, 2024-09-11T07:30:41.642 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-11T07:30:41.642 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T07:30:41.642 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-11T07:30:41.642 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-11T07:30:41.642 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-11T07:30:41.645 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-11T07:30:41.645 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-11T07:30:41.646 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-11T07:30:41.646 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout }, 2024-09-11T07:30:41.646 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-11T07:30:41.646 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-11T07:30:41.646 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-11T07:30:41.646 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-11T07:30:41.646 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-11T07:30:41.646 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-11T07:30:41.646 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-11T07:30:41.646 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-11T07:30:41.646 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-11T07:30:41.646 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout }, 2024-09-11T07:30:41.646 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-11T07:30:41.646 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T07:30:41.647 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-11T07:30:41.647 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-11T07:30:41.647 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout }, 2024-09-11T07:30:41.647 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-11T07:30:41.647 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-11T07:30:41.647 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-11T07:30:41.647 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-11T07:30:41.647 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-11T07:30:41.647 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-11T07:30:41.647 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "restful" 2024-09-11T07:30:41.647 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout ], 2024-09-11T07:30:41.647 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-11T07:30:41.647 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout }, 2024-09-11T07:30:41.647 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-11T07:30:41.647 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T07:30:41.648 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "modified": "2024-09-11T07:30:27.345766+0000", 2024-09-11T07:30:41.648 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-11T07:30:41.648 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout }, 2024-09-11T07:30:41.648 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-11T07:30:41.648 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout } 2024-09-11T07:30:41.648 INFO:teuthology.orchestra.run.smithi115.stdout:mgr not available, waiting (2/15)... 2024-09-11T07:30:42.346 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:42 smithi115 bash[18949]: debug 2024-09-11T07:30:42.061+0000 7f8d5147eec0 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-11T07:30:42.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:42 smithi115 bash[18678]: cluster 2024-09-11T07:30:42.065834+0000 mon.a (mon.0) 9 : cluster [INF] Activating manager daemon a 2024-09-11T07:30:42.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:42 smithi115 bash[18678]: cluster 2024-09-11T07:30:42.072720+0000 mon.a (mon.0) 10 : cluster [DBG] mgrmap e2: a(active, starting, since 0.00709734s) 2024-09-11T07:30:42.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:42 smithi115 bash[18678]: audit 2024-09-11T07:30:42.074899+0000 mon.a (mon.0) 11 : audit [DBG] from='mgr.14100 172.21.15.115:0/2685412471' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-11T07:30:42.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:42 smithi115 bash[18678]: audit 2024-09-11T07:30:42.075167+0000 mon.a (mon.0) 12 : audit [DBG] from='mgr.14100 172.21.15.115:0/2685412471' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-11T07:30:42.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:42 smithi115 bash[18678]: audit 2024-09-11T07:30:42.075399+0000 mon.a (mon.0) 13 : audit [DBG] from='mgr.14100 172.21.15.115:0/2685412471' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-11T07:30:42.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:42 smithi115 bash[18678]: audit 2024-09-11T07:30:42.075763+0000 mon.a (mon.0) 14 : audit [DBG] from='mgr.14100 172.21.15.115:0/2685412471' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-11T07:30:42.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:42 smithi115 bash[18678]: audit 2024-09-11T07:30:42.076611+0000 mon.a (mon.0) 15 : audit [DBG] from='mgr.14100 172.21.15.115:0/2685412471' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-11T07:30:42.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:42 smithi115 bash[18678]: cluster 2024-09-11T07:30:42.087076+0000 mon.a (mon.0) 16 : cluster [INF] Manager daemon a is now available 2024-09-11T07:30:42.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:42 smithi115 bash[18678]: audit 2024-09-11T07:30:42.105969+0000 mon.a (mon.0) 17 : audit [INF] from='mgr.14100 172.21.15.115:0/2685412471' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-11T07:30:42.348 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:42 smithi115 bash[18678]: audit 2024-09-11T07:30:42.109714+0000 mon.a (mon.0) 18 : audit [INF] from='mgr.14100 172.21.15.115:0/2685412471' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-11T07:30:42.348 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:42 smithi115 bash[18678]: audit 2024-09-11T07:30:42.113124+0000 mon.a (mon.0) 19 : audit [INF] from='mgr.14100 172.21.15.115:0/2685412471' entity='mgr.a' 2024-09-11T07:30:42.348 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:42 smithi115 bash[18678]: audit 2024-09-11T07:30:42.117122+0000 mon.a (mon.0) 20 : audit [INF] from='mgr.14100 172.21.15.115:0/2685412471' entity='mgr.a' 2024-09-11T07:30:42.348 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:42 smithi115 bash[18678]: audit 2024-09-11T07:30:42.120228+0000 mon.a (mon.0) 21 : audit [INF] from='mgr.14100 172.21.15.115:0/2685412471' entity='mgr.a' 2024-09-11T07:30:44.345 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:44 smithi115 bash[18678]: cluster 2024-09-11T07:30:43.079805+0000 mon.a (mon.0) 22 : cluster [DBG] mgrmap e3: a(active, since 1.01418s) 2024-09-11T07:30:45.990 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout 2024-09-11T07:30:45.990 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout { 2024-09-11T07:30:45.991 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "fsid": "1973416c-700f-11ef-bcea-c7b262605968", 2024-09-11T07:30:45.991 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "health": { 2024-09-11T07:30:45.991 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-11T07:30:45.991 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-11T07:30:45.991 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-11T07:30:45.991 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout }, 2024-09-11T07:30:45.991 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-11T07:30:45.991 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-11T07:30:45.991 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout 0 2024-09-11T07:30:45.991 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout ], 2024-09-11T07:30:45.991 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-11T07:30:45.991 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "a" 2024-09-11T07:30:45.991 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout ], 2024-09-11T07:30:45.991 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "quorum_age": 11, 2024-09-11T07:30:45.992 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-11T07:30:45.992 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T07:30:45.992 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "quincy", 2024-09-11T07:30:45.992 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-11T07:30:45.992 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout }, 2024-09-11T07:30:45.992 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-11T07:30:45.992 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T07:30:45.992 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-11T07:30:45.992 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-11T07:30:45.992 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-11T07:30:45.995 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-11T07:30:45.995 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-11T07:30:45.995 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-11T07:30:45.996 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout }, 2024-09-11T07:30:45.996 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-11T07:30:45.996 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-11T07:30:45.996 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-11T07:30:45.996 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-11T07:30:45.996 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-11T07:30:45.996 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-11T07:30:45.996 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-11T07:30:45.996 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-11T07:30:45.996 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-11T07:30:45.996 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout }, 2024-09-11T07:30:45.996 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-11T07:30:45.996 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T07:30:45.996 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-11T07:30:45.996 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-11T07:30:45.997 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout }, 2024-09-11T07:30:45.997 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-11T07:30:45.997 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-11T07:30:45.997 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-11T07:30:45.997 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-11T07:30:45.997 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-11T07:30:45.997 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-11T07:30:45.997 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "restful" 2024-09-11T07:30:45.997 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout ], 2024-09-11T07:30:45.997 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-11T07:30:45.997 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout }, 2024-09-11T07:30:45.997 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-11T07:30:45.997 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T07:30:45.997 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "modified": "2024-09-11T07:30:27.345766+0000", 2024-09-11T07:30:45.997 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-11T07:30:45.998 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout }, 2024-09-11T07:30:45.998 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-11T07:30:45.998 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout } 2024-09-11T07:30:45.998 INFO:teuthology.orchestra.run.smithi115.stdout:mgr is available 2024-09-11T07:30:46.345 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:46 smithi115 bash[18678]: cluster 2024-09-11T07:30:45.079043+0000 mon.a (mon.0) 23 : cluster [DBG] mgrmap e4: a(active, since 3s) 2024-09-11T07:30:46.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:46 smithi115 bash[18678]: audit 2024-09-11T07:30:45.447659+0000 mon.a (mon.0) 24 : audit [DBG] from='client.? 172.21.15.115:0/2600866371' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-11T07:30:47.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:47 smithi115 bash[18678]: audit 2024-09-11T07:30:47.531937+0000 mon.a (mon.0) 25 : audit [INF] from='client.? 172.21.15.115:0/1716064100' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-11T07:30:47.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:47 smithi115 bash[18678]: audit 2024-09-11T07:30:47.538597+0000 mon.a (mon.0) 26 : audit [INF] from='client.? 172.21.15.115:0/1716064100' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-11T07:30:48.105 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout 2024-09-11T07:30:48.105 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout [global] 2024-09-11T07:30:48.105 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout fsid = 1973416c-700f-11ef-bcea-c7b262605968 2024-09-11T07:30:48.105 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-11T07:30:48.105 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-11T07:30:48.106 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-11T07:30:48.106 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-11T07:30:48.106 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-11T07:30:48.106 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout 2024-09-11T07:30:48.106 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-11T07:30:48.106 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-11T07:30:48.106 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout 2024-09-11T07:30:48.106 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout [osd] 2024-09-11T07:30:48.106 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-11T07:30:48.106 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-11T07:30:48.106 INFO:teuthology.orchestra.run.smithi115.stdout:Enabling cephadm module... 2024-09-11T07:30:50.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:49 smithi115 bash[18678]: audit 2024-09-11T07:30:49.652102+0000 mon.a (mon.0) 27 : audit [INF] from='client.? 172.21.15.115:0/553268839' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-09-11T07:30:50.096 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:49 smithi115 bash[18949]: ignoring --setuser ceph since I am not root 2024-09-11T07:30:50.096 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:49 smithi115 bash[18949]: ignoring --setgroup ceph since I am not root 2024-09-11T07:30:50.096 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:49 smithi115 bash[18949]: debug 2024-09-11T07:30:49.869+0000 7fd2afd0fec0 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-11T07:30:50.890 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:50 smithi115 bash[18678]: audit 2024-09-11T07:30:49.709262+0000 mon.a (mon.0) 28 : audit [INF] from='client.? 172.21.15.115:0/553268839' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-11T07:30:50.890 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:50 smithi115 bash[18678]: cluster 2024-09-11T07:30:49.709420+0000 mon.a (mon.0) 29 : cluster [DBG] mgrmap e5: a(active, since 7s) 2024-09-11T07:30:50.891 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:50 smithi115 bash[18949]: debug 2024-09-11T07:30:50.605+0000 7fd2afd0fec0 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-11T07:30:50.891 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:50 smithi115 bash[18949]: debug 2024-09-11T07:30:50.669+0000 7fd2afd0fec0 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-11T07:30:50.891 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:50 smithi115 bash[18949]: debug 2024-09-11T07:30:50.733+0000 7fd2afd0fec0 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-11T07:30:51.145 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:50 smithi115 bash[18949]: debug 2024-09-11T07:30:50.885+0000 7fd2afd0fec0 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-11T07:30:51.595 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:51 smithi115 bash[18949]: debug 2024-09-11T07:30:51.141+0000 7fd2afd0fec0 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-11T07:30:51.596 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:51 smithi115 bash[18949]: debug 2024-09-11T07:30:51.205+0000 7fd2afd0fec0 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-11T07:30:51.596 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:51 smithi115 bash[18949]: debug 2024-09-11T07:30:51.341+0000 7fd2afd0fec0 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-11T07:30:51.976 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:51 smithi115 bash[18678]: audit 2024-09-11T07:30:51.685818+0000 mon.a (mon.0) 30 : audit [DBG] from='client.? 172.21.15.115:0/1593632749' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-11T07:30:52.293 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout { 2024-09-11T07:30:52.293 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-09-11T07:30:52.293 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-11T07:30:52.293 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-11T07:30:52.293 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-11T07:30:52.293 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout } 2024-09-11T07:30:52.293 INFO:teuthology.orchestra.run.smithi115.stdout:Waiting for the mgr to restart... 2024-09-11T07:30:52.294 INFO:teuthology.orchestra.run.smithi115.stdout:Waiting for mgr epoch 5... 2024-09-11T07:30:52.345 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:51 smithi115 bash[18949]: debug 2024-09-11T07:30:51.973+0000 7fd2afd0fec0 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-11T07:30:52.345 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:52 smithi115 bash[18949]: debug 2024-09-11T07:30:52.041+0000 7fd2afd0fec0 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-11T07:30:52.346 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:52 smithi115 bash[18949]: debug 2024-09-11T07:30:52.117+0000 7fd2afd0fec0 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-11T07:30:52.844 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:52 smithi115 bash[18949]: debug 2024-09-11T07:30:52.397+0000 7fd2afd0fec0 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-11T07:30:52.844 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:52 smithi115 bash[18949]: debug 2024-09-11T07:30:52.533+0000 7fd2afd0fec0 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-11T07:30:53.095 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:52 smithi115 bash[18949]: debug 2024-09-11T07:30:52.841+0000 7fd2afd0fec0 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-11T07:30:53.096 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:53 smithi115 bash[18949]: debug 2024-09-11T07:30:53.053+0000 7fd2afd0fec0 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-11T07:30:53.700 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:53 smithi115 bash[18949]: debug 2024-09-11T07:30:53.469+0000 7fd2afd0fec0 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-11T07:30:53.708 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:53 smithi115 bash[18949]: debug 2024-09-11T07:30:53.537+0000 7fd2afd0fec0 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-11T07:30:53.708 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:53 smithi115 bash[18949]: debug 2024-09-11T07:30:53.605+0000 7fd2afd0fec0 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-11T07:30:53.981 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:53 smithi115 bash[18949]: debug 2024-09-11T07:30:53.697+0000 7fd2afd0fec0 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-11T07:30:53.981 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:53 smithi115 bash[18949]: debug 2024-09-11T07:30:53.761+0000 7fd2afd0fec0 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-11T07:30:53.981 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:53 smithi115 bash[18949]: debug 2024-09-11T07:30:53.833+0000 7fd2afd0fec0 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-11T07:30:54.346 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:53 smithi115 bash[18949]: debug 2024-09-11T07:30:53.977+0000 7fd2afd0fec0 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-11T07:30:54.346 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:54 smithi115 bash[18949]: debug 2024-09-11T07:30:54.053+0000 7fd2afd0fec0 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-11T07:30:55.346 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:54 smithi115 bash[18949]: debug 2024-09-11T07:30:54.953+0000 7fd2afd0fec0 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-11T07:30:55.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:55 smithi115 bash[18678]: cluster 2024-09-11T07:30:54.975942+0000 mon.a (mon.0) 31 : cluster [INF] Active manager daemon a restarted 2024-09-11T07:30:55.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:55 smithi115 bash[18678]: cluster 2024-09-11T07:30:54.976487+0000 mon.a (mon.0) 32 : cluster [INF] Activating manager daemon a 2024-09-11T07:30:55.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:55 smithi115 bash[18678]: cluster 2024-09-11T07:30:54.983112+0000 mon.a (mon.0) 33 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-09-11T07:30:55.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:55 smithi115 bash[18678]: cluster 2024-09-11T07:30:54.983335+0000 mon.a (mon.0) 34 : cluster [DBG] mgrmap e6: a(active, starting, since 0.00702355s) 2024-09-11T07:30:55.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:55 smithi115 bash[18678]: audit 2024-09-11T07:30:54.985665+0000 mon.a (mon.0) 35 : audit [DBG] from='mgr.14118 172.21.15.115:0/4036060799' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-11T07:30:55.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:55 smithi115 bash[18678]: audit 2024-09-11T07:30:54.987571+0000 mon.a (mon.0) 36 : audit [DBG] from='mgr.14118 172.21.15.115:0/4036060799' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-11T07:30:55.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:55 smithi115 bash[18678]: audit 2024-09-11T07:30:54.989004+0000 mon.a (mon.0) 37 : audit [DBG] from='mgr.14118 172.21.15.115:0/4036060799' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-11T07:30:55.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:55 smithi115 bash[18678]: audit 2024-09-11T07:30:54.989197+0000 mon.a (mon.0) 38 : audit [DBG] from='mgr.14118 172.21.15.115:0/4036060799' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-11T07:30:55.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:55 smithi115 bash[18678]: audit 2024-09-11T07:30:54.989321+0000 mon.a (mon.0) 39 : audit [DBG] from='mgr.14118 172.21.15.115:0/4036060799' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-11T07:30:55.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:55 smithi115 bash[18678]: cluster 2024-09-11T07:30:55.000904+0000 mon.a (mon.0) 40 : cluster [INF] Manager daemon a is now available 2024-09-11T07:30:55.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:55 smithi115 bash[18678]: audit 2024-09-11T07:30:55.020791+0000 mon.a (mon.0) 41 : audit [INF] from='mgr.14118 172.21.15.115:0/4036060799' entity='mgr.a' 2024-09-11T07:30:56.315 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:56 smithi115 bash[18678]: cephadm 2024-09-11T07:30:55.014978+0000 mgr.a (mgr.14118) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-09-11T07:30:56.315 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:56 smithi115 bash[18678]: audit 2024-09-11T07:30:55.028636+0000 mon.a (mon.0) 42 : audit [INF] from='mgr.14118 172.21.15.115:0/4036060799' entity='mgr.a' 2024-09-11T07:30:56.315 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:56 smithi115 bash[18678]: audit 2024-09-11T07:30:55.038144+0000 mon.a (mon.0) 43 : audit [DBG] from='mgr.14118 172.21.15.115:0/4036060799' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:30:56.316 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:56 smithi115 bash[18678]: audit 2024-09-11T07:30:55.042696+0000 mon.a (mon.0) 44 : audit [DBG] from='mgr.14118 172.21.15.115:0/4036060799' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:30:56.316 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:56 smithi115 bash[18678]: audit 2024-09-11T07:30:55.061116+0000 mon.a (mon.0) 45 : audit [INF] from='mgr.14118 172.21.15.115:0/4036060799' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-11T07:30:56.316 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:56 smithi115 bash[18678]: audit 2024-09-11T07:30:55.071422+0000 mon.a (mon.0) 46 : audit [INF] from='mgr.14118 172.21.15.115:0/4036060799' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-11T07:30:56.316 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:56 smithi115 bash[18678]: cluster 2024-09-11T07:30:55.988391+0000 mon.a (mon.0) 47 : cluster [DBG] mgrmap e7: a(active, since 1.01208s) 2024-09-11T07:30:56.596 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:56 smithi115 bash[18949]: debug 2024-09-11T07:30:56.309+0000 7fd2620e3640 -1 log_channel(cephadm) log [ERR] : [11/Sep/2024:07:30:56] ENGINE Error in HTTPServer.serve 2024-09-11T07:30:56.596 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:56 smithi115 bash[18949]: Traceback (most recent call last): 2024-09-11T07:30:56.596 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:56 smithi115 bash[18949]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-11T07:30:56.596 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:56 smithi115 bash[18949]: self._connections.run(self.expiration_interval) 2024-09-11T07:30:56.596 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:56 smithi115 bash[18949]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-11T07:30:56.596 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:56 smithi115 bash[18949]: self._run(expiration_interval) 2024-09-11T07:30:56.597 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:56 smithi115 bash[18949]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-11T07:30:56.597 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:56 smithi115 bash[18949]: new_conn = self._from_server_socket(self.server.socket) 2024-09-11T07:30:56.597 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:56 smithi115 bash[18949]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-11T07:30:56.597 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:56 smithi115 bash[18949]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-11T07:30:56.597 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:56 smithi115 bash[18949]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-11T07:30:56.597 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:56 smithi115 bash[18949]: s = self.context.wrap_socket( 2024-09-11T07:30:56.597 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:56 smithi115 bash[18949]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-11T07:30:56.597 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:56 smithi115 bash[18949]: return self.sslsocket_class._create( 2024-09-11T07:30:56.597 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:56 smithi115 bash[18949]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-11T07:30:56.597 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:56 smithi115 bash[18949]: self.do_handshake() 2024-09-11T07:30:56.597 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:56 smithi115 bash[18949]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-11T07:30:56.597 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:56 smithi115 bash[18949]: self._sslobj.do_handshake() 2024-09-11T07:30:56.597 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:30:56 smithi115 bash[18949]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-11T07:30:56.642 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout { 2024-09-11T07:30:56.642 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-11T07:30:56.642 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-11T07:30:56.642 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout } 2024-09-11T07:30:56.643 INFO:teuthology.orchestra.run.smithi115.stdout:mgr epoch 5 is available 2024-09-11T07:30:56.643 INFO:teuthology.orchestra.run.smithi115.stdout:Setting orchestrator backend to cephadm... 2024-09-11T07:30:57.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:57 smithi115 bash[18678]: audit 2024-09-11T07:30:55.985869+0000 mgr.a (mgr.14118) 2 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-11T07:30:57.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:57 smithi115 bash[18678]: audit 2024-09-11T07:30:55.998398+0000 mgr.a (mgr.14118) 3 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-11T07:30:57.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:57 smithi115 bash[18678]: cephadm 2024-09-11T07:30:56.182222+0000 mgr.a (mgr.14118) 4 : cephadm [INF] [11/Sep/2024:07:30:56] ENGINE Bus STARTING 2024-09-11T07:30:57.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:57 smithi115 bash[18678]: cephadm 2024-09-11T07:30:56.310088+0000 mgr.a (mgr.14118) 5 : cephadm [INF] [11/Sep/2024:07:30:56] ENGINE Serving on https://172.21.15.115:7150 2024-09-11T07:30:57.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:57 smithi115 bash[18678]: cephadm 2024-09-11T07:30:56.310344+0000 mgr.a (mgr.14118) 6 : cephadm [INF] [11/Sep/2024:07:30:56] ENGINE Bus STARTED 2024-09-11T07:30:57.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:57 smithi115 bash[18678]: cephadm 2024-09-11T07:30:56.313769+0000 mgr.a (mgr.14118) 7 : cephadm [ERR] [11/Sep/2024:07:30:56] ENGINE Error in HTTPServer.serve 2024-09-11T07:30:57.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:57 smithi115 bash[18678]: Traceback (most recent call last): 2024-09-11T07:30:57.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:57 smithi115 bash[18678]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-11T07:30:57.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:57 smithi115 bash[18678]: self._connections.run(self.expiration_interval) 2024-09-11T07:30:57.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:57 smithi115 bash[18678]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-11T07:30:57.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:57 smithi115 bash[18678]: self._run(expiration_interval) 2024-09-11T07:30:57.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:57 smithi115 bash[18678]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-11T07:30:57.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:57 smithi115 bash[18678]: new_conn = self._from_server_socket(self.server.socket) 2024-09-11T07:30:57.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:57 smithi115 bash[18678]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-11T07:30:57.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:57 smithi115 bash[18678]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-11T07:30:57.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:57 smithi115 bash[18678]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-11T07:30:57.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:57 smithi115 bash[18678]: s = self.context.wrap_socket( 2024-09-11T07:30:57.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:57 smithi115 bash[18678]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-11T07:30:57.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:57 smithi115 bash[18678]: return self.sslsocket_class._create( 2024-09-11T07:30:57.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:57 smithi115 bash[18678]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-11T07:30:57.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:57 smithi115 bash[18678]: self.do_handshake() 2024-09-11T07:30:57.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:57 smithi115 bash[18678]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-11T07:30:57.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:57 smithi115 bash[18678]: self._sslobj.do_handshake() 2024-09-11T07:30:57.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:57 smithi115 bash[18678]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-11T07:30:57.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:57 smithi115 bash[18678]: audit 2024-09-11T07:30:56.317001+0000 mon.a (mon.0) 48 : audit [INF] from='mgr.14118 172.21.15.115:0/4036060799' entity='mgr.a' 2024-09-11T07:30:57.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:57 smithi115 bash[18678]: audit 2024-09-11T07:30:56.318555+0000 mon.a (mon.0) 49 : audit [DBG] from='mgr.14118 172.21.15.115:0/4036060799' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:30:58.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:58 smithi115 bash[18678]: cluster 2024-09-11T07:30:57.327764+0000 mon.a (mon.0) 50 : cluster [DBG] mgrmap e8: a(active, since 2s) 2024-09-11T07:30:58.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:58 smithi115 bash[18678]: audit 2024-09-11T07:30:58.208968+0000 mon.a (mon.0) 51 : audit [INF] from='mgr.14118 172.21.15.115:0/4036060799' entity='mgr.a' 2024-09-11T07:30:58.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:58 smithi115 bash[18678]: audit 2024-09-11T07:30:58.229029+0000 mon.a (mon.0) 52 : audit [DBG] from='mgr.14118 172.21.15.115:0/4036060799' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:30:59.595 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:30:59 smithi115 bash[18678]: audit 2024-09-11T07:30:58.199811+0000 mgr.a (mgr.14118) 8 : audit [DBG] from='client.14130 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:31:00.797 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-11T07:31:00.797 INFO:teuthology.orchestra.run.smithi115.stdout:Generating ssh key... 2024-09-11T07:31:01.095 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:00 smithi115 bash[18678]: audit 2024-09-11T07:31:00.223254+0000 mgr.a (mgr.14118) 9 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:31:02.848 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:02 smithi115 bash[18949]: Generating public/private rsa key pair. 2024-09-11T07:31:02.848 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:02 smithi115 bash[18949]: Your identification has been saved in /tmp/tmpy66qe4lh/key 2024-09-11T07:31:02.848 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:02 smithi115 bash[18949]: Your public key has been saved in /tmp/tmpy66qe4lh/key.pub 2024-09-11T07:31:02.849 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:02 smithi115 bash[18949]: The key fingerprint is: 2024-09-11T07:31:02.849 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:02 smithi115 bash[18949]: SHA256:9sdFzGRYckGQovITd/tNCDGv6eXNIxXT/4MHHQcb0rA ceph-1973416c-700f-11ef-bcea-c7b262605968 2024-09-11T07:31:02.849 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:02 smithi115 bash[18949]: The key's randomart image is: 2024-09-11T07:31:02.849 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:02 smithi115 bash[18949]: +---[RSA 3072]----+ 2024-09-11T07:31:02.849 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:02 smithi115 bash[18949]: | +OB. | 2024-09-11T07:31:02.849 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:02 smithi115 bash[18949]: | . *O+ | 2024-09-11T07:31:02.850 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:02 smithi115 bash[18949]: | . .E=++.| 2024-09-11T07:31:02.850 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:02 smithi115 bash[18949]: | . o . o.o+o| 2024-09-11T07:31:02.850 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:02 smithi115 bash[18949]: | oSo . =o.*| 2024-09-11T07:31:02.850 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:02 smithi115 bash[18949]: | .o. .+oooo| 2024-09-11T07:31:02.850 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:02 smithi115 bash[18949]: | ...o++=.| 2024-09-11T07:31:02.850 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:02 smithi115 bash[18949]: | ..oo+=| 2024-09-11T07:31:02.851 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:02 smithi115 bash[18949]: | o o| 2024-09-11T07:31:02.851 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:02 smithi115 bash[18949]: +----[SHA256]-----+ 2024-09-11T07:31:03.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:03 smithi115 bash[18678]: audit 2024-09-11T07:31:02.345821+0000 mgr.a (mgr.14118) 10 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:31:03.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:03 smithi115 bash[18678]: cephadm 2024-09-11T07:31:02.346235+0000 mgr.a (mgr.14118) 11 : cephadm [INF] Generating ssh key... 2024-09-11T07:31:03.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:03 smithi115 bash[18678]: audit 2024-09-11T07:31:02.471947+0000 mon.a (mon.0) 53 : audit [INF] from='mgr.14118 172.21.15.115:0/4036060799' entity='mgr.a' 2024-09-11T07:31:03.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:03 smithi115 bash[18678]: audit 2024-09-11T07:31:02.474724+0000 mon.a (mon.0) 54 : audit [INF] from='mgr.14118 172.21.15.115:0/4036060799' entity='mgr.a' 2024-09-11T07:31:05.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:04 smithi115 bash[18678]: audit 2024-09-11T07:31:04.631822+0000 mgr.a (mgr.14118) 12 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:31:05.253 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCtt+Z1dgUCOAC25iTiMCuCS8yxOcSQZ5uWE6CEkXHQgAPqajull4s87j1dYh6CMCuYZVvnoyI0XIvqsq4CDwW61EtOnRo3q5fDIBM4rzZVdjazR13NnAt2piI2ACyXy6ypmHSPzRJHPf+g+UQgFHoqznGZhU7b/ZlE5xmOGt1HubMkjUnbzk/vISO4qsCovMMCVXO+bdTaYcfYW5/OEtJW/O6aAQVHmhztSsngCd+XXgzXUOra1oudc3fBkBJXLS/7P0KhSDWhOWQ+C3cQjmeJ8euHeRRbNqjmi92rQxn5T7KJxcvYnTnosVbW3en85Kh57UcfDAPk6WV2famJ/pvQ7pX4u+Np0KMbT24wJgjrAn5NIkb7iFFO+3GgLvrFElLzbONUS3Otxnsb1pHiIOJvG3WjA/oTGsaV72ZY37F7gJROAsFcDYv0wDn5dfeh7It+hpNV4VKyqfygwMplPO1rSIwHHo2QQ+82l5k59rzRG5dmvJKM7bcnNTpSOfR4ueM= ceph-1973416c-700f-11ef-bcea-c7b262605968 2024-09-11T07:31:05.253 INFO:teuthology.orchestra.run.smithi115.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-11T07:31:05.253 INFO:teuthology.orchestra.run.smithi115.stdout:Adding key to root@localhost authorized_keys... 2024-09-11T07:31:05.254 INFO:teuthology.orchestra.run.smithi115.stdout:Adding host smithi115... 2024-09-11T07:31:08.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:07 smithi115 bash[18678]: audit 2024-09-11T07:31:06.775465+0000 mgr.a (mgr.14118) 13 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi115", "addr": "172.21.15.115", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:31:09.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:08 smithi115 bash[18678]: cephadm 2024-09-11T07:31:08.010009+0000 mgr.a (mgr.14118) 14 : cephadm [INF] Deploying cephadm binary to smithi115 2024-09-11T07:31:11.557 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout Added host 'smithi115' with addr '172.21.15.115' 2024-09-11T07:31:11.557 INFO:teuthology.orchestra.run.smithi115.stdout:Deploying unmanaged mon service... 2024-09-11T07:31:11.979 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:11 smithi115 bash[18678]: audit 2024-09-11T07:31:10.615534+0000 mon.a (mon.0) 55 : audit [INF] from='mgr.14118 172.21.15.115:0/4036060799' entity='mgr.a' 2024-09-11T07:31:11.979 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:11 smithi115 bash[18678]: cephadm 2024-09-11T07:31:10.616159+0000 mgr.a (mgr.14118) 15 : cephadm [INF] Added host smithi115 2024-09-11T07:31:11.979 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:11 smithi115 bash[18678]: audit 2024-09-11T07:31:10.617029+0000 mon.a (mon.0) 56 : audit [DBG] from='mgr.14118 172.21.15.115:0/4036060799' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:31:14.430 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-11T07:31:14.431 INFO:teuthology.orchestra.run.smithi115.stdout:Deploying unmanaged mgr service... 2024-09-11T07:31:14.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:14 smithi115 bash[18678]: audit 2024-09-11T07:31:13.572493+0000 mgr.a (mgr.14118) 16 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:31:14.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:14 smithi115 bash[18678]: cephadm 2024-09-11T07:31:13.575747+0000 mgr.a (mgr.14118) 17 : cephadm [INF] Saving service mon spec with placement count:5 2024-09-11T07:31:14.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:14 smithi115 bash[18678]: audit 2024-09-11T07:31:13.579285+0000 mon.a (mon.0) 57 : audit [INF] from='mgr.14118 172.21.15.115:0/4036060799' entity='mgr.a' 2024-09-11T07:31:14.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:14 smithi115 bash[18678]: audit 2024-09-11T07:31:14.074364+0000 mon.a (mon.0) 58 : audit [INF] from='mgr.14118 172.21.15.115:0/4036060799' entity='mgr.a' 2024-09-11T07:31:14.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:14 smithi115 bash[18678]: audit 2024-09-11T07:31:14.390032+0000 mon.a (mon.0) 59 : audit [INF] from='mgr.14118 172.21.15.115:0/4036060799' entity='mgr.a' 2024-09-11T07:31:16.339 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:15 smithi115 bash[18678]: cluster 2024-09-11T07:31:14.990932+0000 mgr.a (mgr.14118) 18 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:31:16.771 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-11T07:31:17.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:17 smithi115 bash[18678]: audit 2024-09-11T07:31:16.115495+0000 mgr.a (mgr.14118) 19 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:31:17.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:17 smithi115 bash[18678]: cephadm 2024-09-11T07:31:16.117646+0000 mgr.a (mgr.14118) 20 : cephadm [INF] Saving service mgr spec with placement count:2 2024-09-11T07:31:17.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:17 smithi115 bash[18678]: audit 2024-09-11T07:31:16.124659+0000 mon.a (mon.0) 60 : audit [INF] from='mgr.14118 172.21.15.115:0/4036060799' entity='mgr.a' 2024-09-11T07:31:18.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:18 smithi115 bash[18678]: cluster 2024-09-11T07:31:16.991508+0000 mgr.a (mgr.14118) 21 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:31:19.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:19 smithi115 bash[18678]: audit 2024-09-11T07:31:18.464671+0000 mon.a (mon.0) 61 : audit [INF] from='client.? 172.21.15.115:0/2370125386' entity='client.admin' 2024-09-11T07:31:20.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:20 smithi115 bash[18678]: cluster 2024-09-11T07:31:18.992107+0000 mgr.a (mgr.14118) 22 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:31:20.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:20 smithi115 bash[18678]: audit 2024-09-11T07:31:19.901344+0000 mon.a (mon.0) 62 : audit [INF] from='mgr.14118 172.21.15.115:0/4036060799' entity='mgr.a' 2024-09-11T07:31:21.418 INFO:teuthology.orchestra.run.smithi115.stdout:Enabling the dashboard module... 2024-09-11T07:31:21.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:21 smithi115 bash[18678]: audit 2024-09-11T07:31:20.561952+0000 mon.a (mon.0) 63 : audit [INF] from='mgr.14118 172.21.15.115:0/4036060799' entity='mgr.a' 2024-09-11T07:31:21.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:21 smithi115 bash[18678]: audit 2024-09-11T07:31:20.648811+0000 mon.a (mon.0) 64 : audit [INF] from='client.? 172.21.15.115:0/191779540' entity='client.admin' 2024-09-11T07:31:22.845 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:22 smithi115 bash[18678]: cluster 2024-09-11T07:31:20.992525+0000 mgr.a (mgr.14118) 23 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:31:24.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:23 smithi115 bash[18678]: audit 2024-09-11T07:31:23.082655+0000 mon.a (mon.0) 65 : audit [INF] from='client.? 172.21.15.115:0/1196135483' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-09-11T07:31:24.096 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:23 smithi115 bash[18949]: ignoring --setuser ceph since I am not root 2024-09-11T07:31:24.096 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:23 smithi115 bash[18949]: ignoring --setgroup ceph since I am not root 2024-09-11T07:31:24.096 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:23 smithi115 bash[18949]: debug 2024-09-11T07:31:23.828+0000 7fabf8386ec0 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-11T07:31:24.842 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:24 smithi115 bash[18678]: audit 2024-09-11T07:31:23.659934+0000 mon.a (mon.0) 66 : audit [INF] from='client.? 172.21.15.115:0/1196135483' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-11T07:31:24.842 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:24 smithi115 bash[18678]: cluster 2024-09-11T07:31:23.660100+0000 mon.a (mon.0) 67 : cluster [DBG] mgrmap e9: a(active, since 28s) 2024-09-11T07:31:24.843 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:24 smithi115 bash[18949]: debug 2024-09-11T07:31:24.552+0000 7fabf8386ec0 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-11T07:31:24.843 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:24 smithi115 bash[18949]: debug 2024-09-11T07:31:24.620+0000 7fabf8386ec0 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-11T07:31:24.843 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:24 smithi115 bash[18949]: debug 2024-09-11T07:31:24.684+0000 7fabf8386ec0 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-11T07:31:25.093 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:24 smithi115 bash[18949]: debug 2024-09-11T07:31:24.836+0000 7fabf8386ec0 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-11T07:31:25.346 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:25 smithi115 bash[18949]: debug 2024-09-11T07:31:25.088+0000 7fabf8386ec0 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-11T07:31:25.346 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:25 smithi115 bash[18949]: debug 2024-09-11T07:31:25.152+0000 7fabf8386ec0 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-11T07:31:25.346 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:25 smithi115 bash[18949]: debug 2024-09-11T07:31:25.284+0000 7fabf8386ec0 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-11T07:31:26.364 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:26 smithi115 bash[18678]: audit 2024-09-11T07:31:25.954928+0000 mon.a (mon.0) 68 : audit [DBG] from='client.? 172.21.15.115:0/2616893863' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-11T07:31:26.365 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:25 smithi115 bash[18949]: debug 2024-09-11T07:31:25.932+0000 7fabf8386ec0 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-11T07:31:26.365 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:26 smithi115 bash[18949]: debug 2024-09-11T07:31:26.012+0000 7fabf8386ec0 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-11T07:31:26.365 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:26 smithi115 bash[18949]: debug 2024-09-11T07:31:26.088+0000 7fabf8386ec0 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-11T07:31:26.509 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:26 smithi115 bash[18949]: debug 2024-09-11T07:31:26.368+0000 7fabf8386ec0 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-11T07:31:26.617 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout { 2024-09-11T07:31:26.618 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-09-11T07:31:26.618 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-11T07:31:26.618 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-11T07:31:26.618 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-11T07:31:26.618 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout } 2024-09-11T07:31:26.618 INFO:teuthology.orchestra.run.smithi115.stdout:Waiting for the mgr to restart... 2024-09-11T07:31:26.618 INFO:teuthology.orchestra.run.smithi115.stdout:Waiting for mgr epoch 9... 2024-09-11T07:31:26.707 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:26 smithi115 bash[18949]: debug 2024-09-11T07:31:26.504+0000 7fabf8386ec0 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-11T07:31:27.039 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:26 smithi115 bash[18949]: debug 2024-09-11T07:31:26.820+0000 7fabf8386ec0 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-11T07:31:27.345 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:27 smithi115 bash[18949]: debug 2024-09-11T07:31:27.032+0000 7fabf8386ec0 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-11T07:31:27.681 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:27 smithi115 bash[18949]: debug 2024-09-11T07:31:27.452+0000 7fabf8386ec0 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-11T07:31:27.681 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:27 smithi115 bash[18949]: debug 2024-09-11T07:31:27.516+0000 7fabf8386ec0 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-11T07:31:27.681 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:27 smithi115 bash[18949]: debug 2024-09-11T07:31:27.580+0000 7fabf8386ec0 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-11T07:31:27.967 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:27 smithi115 bash[18949]: debug 2024-09-11T07:31:27.676+0000 7fabf8386ec0 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-11T07:31:27.967 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:27 smithi115 bash[18949]: debug 2024-09-11T07:31:27.740+0000 7fabf8386ec0 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-11T07:31:27.967 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:27 smithi115 bash[18949]: debug 2024-09-11T07:31:27.816+0000 7fabf8386ec0 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-11T07:31:28.346 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:27 smithi115 bash[18949]: debug 2024-09-11T07:31:27.960+0000 7fabf8386ec0 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-11T07:31:28.346 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:28 smithi115 bash[18949]: debug 2024-09-11T07:31:28.036+0000 7fabf8386ec0 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-11T07:31:29.037 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:29 smithi115 bash[18678]: cluster 2024-09-11T07:31:28.983675+0000 mon.a (mon.0) 69 : cluster [INF] Active manager daemon a restarted 2024-09-11T07:31:29.038 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:29 smithi115 bash[18678]: cluster 2024-09-11T07:31:28.984124+0000 mon.a (mon.0) 70 : cluster [INF] Activating manager daemon a 2024-09-11T07:31:29.038 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:28 smithi115 bash[18949]: debug 2024-09-11T07:31:28.976+0000 7fabf8386ec0 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-11T07:31:29.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:29 smithi115 bash[18678]: cluster 2024-09-11T07:31:28.990186+0000 mon.a (mon.0) 71 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-09-11T07:31:29.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:29 smithi115 bash[18678]: cluster 2024-09-11T07:31:28.990428+0000 mon.a (mon.0) 72 : cluster [DBG] mgrmap e10: a(active, starting, since 0.00648798s) 2024-09-11T07:31:29.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:29 smithi115 bash[18678]: audit 2024-09-11T07:31:28.992875+0000 mon.a (mon.0) 73 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-11T07:31:29.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:29 smithi115 bash[18678]: audit 2024-09-11T07:31:28.994696+0000 mon.a (mon.0) 74 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-11T07:31:29.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:29 smithi115 bash[18678]: audit 2024-09-11T07:31:28.995368+0000 mon.a (mon.0) 75 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-11T07:31:29.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:29 smithi115 bash[18678]: audit 2024-09-11T07:31:28.995575+0000 mon.a (mon.0) 76 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-11T07:31:29.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:29 smithi115 bash[18678]: audit 2024-09-11T07:31:28.995783+0000 mon.a (mon.0) 77 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-11T07:31:29.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:29 smithi115 bash[18678]: cluster 2024-09-11T07:31:29.003930+0000 mon.a (mon.0) 78 : cluster [INF] Manager daemon a is now available 2024-09-11T07:31:29.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:29 smithi115 bash[18678]: audit 2024-09-11T07:31:29.026900+0000 mon.a (mon.0) 79 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:31:30.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:30 smithi115 bash[18678]: audit 2024-09-11T07:31:29.057422+0000 mon.a (mon.0) 80 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-11T07:31:30.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:30 smithi115 bash[18678]: audit 2024-09-11T07:31:29.066781+0000 mon.a (mon.0) 81 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-11T07:31:30.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:30 smithi115 bash[18678]: cluster 2024-09-11T07:31:29.997311+0000 mon.a (mon.0) 82 : cluster [DBG] mgrmap e11: a(active, since 1.01337s) 2024-09-11T07:31:30.655 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout { 2024-09-11T07:31:30.655 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-09-11T07:31:30.655 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-11T07:31:30.655 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout } 2024-09-11T07:31:30.655 INFO:teuthology.orchestra.run.smithi115.stdout:mgr epoch 9 is available 2024-09-11T07:31:30.655 INFO:teuthology.orchestra.run.smithi115.stdout:Generating a dashboard self-signed certificate... 2024-09-11T07:31:31.040 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:30 smithi115 bash[18949]: debug 2024-09-11T07:31:30.752+0000 7faba8ed7640 -1 log_channel(cephadm) log [ERR] : [11/Sep/2024:07:31:30] ENGINE Error in HTTPServer.serve 2024-09-11T07:31:31.040 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:30 smithi115 bash[18949]: Traceback (most recent call last): 2024-09-11T07:31:31.040 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:30 smithi115 bash[18949]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-11T07:31:31.040 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:30 smithi115 bash[18949]: self._connections.run(self.expiration_interval) 2024-09-11T07:31:31.040 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:30 smithi115 bash[18949]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-11T07:31:31.040 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:30 smithi115 bash[18949]: self._run(expiration_interval) 2024-09-11T07:31:31.040 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:30 smithi115 bash[18949]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-11T07:31:31.041 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:30 smithi115 bash[18949]: new_conn = self._from_server_socket(self.server.socket) 2024-09-11T07:31:31.041 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:30 smithi115 bash[18949]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-11T07:31:31.041 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:30 smithi115 bash[18949]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-11T07:31:31.041 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:30 smithi115 bash[18949]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-11T07:31:31.041 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:30 smithi115 bash[18949]: s = self.context.wrap_socket( 2024-09-11T07:31:31.041 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:30 smithi115 bash[18949]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-11T07:31:31.041 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:30 smithi115 bash[18949]: return self.sslsocket_class._create( 2024-09-11T07:31:31.041 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:30 smithi115 bash[18949]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-11T07:31:31.041 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:30 smithi115 bash[18949]: self.do_handshake() 2024-09-11T07:31:31.041 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:30 smithi115 bash[18949]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-11T07:31:31.041 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:30 smithi115 bash[18949]: self._sslobj.do_handshake() 2024-09-11T07:31:31.041 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:31:30 smithi115 bash[18949]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-11T07:31:31.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:31 smithi115 bash[18678]: cephadm 2024-09-11T07:31:30.624318+0000 mgr.a (mgr.14150) 3 : cephadm [INF] [11/Sep/2024:07:31:30] ENGINE Bus STARTING 2024-09-11T07:31:31.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:31 smithi115 bash[18678]: audit 2024-09-11T07:31:30.757652+0000 mon.a (mon.0) 83 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:31:32.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:32 smithi115 bash[18678]: cephadm 2024-09-11T07:31:30.750383+0000 mgr.a (mgr.14150) 4 : cephadm [INF] [11/Sep/2024:07:31:30] ENGINE Serving on https://172.21.15.115:7150 2024-09-11T07:31:32.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:32 smithi115 bash[18678]: cephadm 2024-09-11T07:31:30.750692+0000 mgr.a (mgr.14150) 5 : cephadm [INF] [11/Sep/2024:07:31:30] ENGINE Bus STARTED 2024-09-11T07:31:32.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:32 smithi115 bash[18678]: cephadm 2024-09-11T07:31:30.754681+0000 mgr.a (mgr.14150) 6 : cephadm [ERR] [11/Sep/2024:07:31:30] ENGINE Error in HTTPServer.serve 2024-09-11T07:31:32.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:32 smithi115 bash[18678]: Traceback (most recent call last): 2024-09-11T07:31:32.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:32 smithi115 bash[18678]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-11T07:31:32.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:32 smithi115 bash[18678]: self._connections.run(self.expiration_interval) 2024-09-11T07:31:32.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:32 smithi115 bash[18678]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-11T07:31:32.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:32 smithi115 bash[18678]: self._run(expiration_interval) 2024-09-11T07:31:32.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:32 smithi115 bash[18678]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-11T07:31:32.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:32 smithi115 bash[18678]: new_conn = self._from_server_socket(self.server.socket) 2024-09-11T07:31:32.348 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:32 smithi115 bash[18678]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-11T07:31:32.348 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:32 smithi115 bash[18678]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-11T07:31:32.348 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:32 smithi115 bash[18678]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-11T07:31:32.348 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:32 smithi115 bash[18678]: s = self.context.wrap_socket( 2024-09-11T07:31:32.348 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:32 smithi115 bash[18678]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-11T07:31:32.348 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:32 smithi115 bash[18678]: return self.sslsocket_class._create( 2024-09-11T07:31:32.348 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:32 smithi115 bash[18678]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-11T07:31:32.349 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:32 smithi115 bash[18678]: self.do_handshake() 2024-09-11T07:31:32.349 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:32 smithi115 bash[18678]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-11T07:31:32.349 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:32 smithi115 bash[18678]: self._sslobj.do_handshake() 2024-09-11T07:31:32.349 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:32 smithi115 bash[18678]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-11T07:31:32.349 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:32 smithi115 bash[18678]: cluster 2024-09-11T07:31:31.761756+0000 mon.a (mon.0) 84 : cluster [DBG] mgrmap e12: a(active, since 2s) 2024-09-11T07:31:33.207 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-09-11T07:31:33.207 INFO:teuthology.orchestra.run.smithi115.stdout:Creating initial admin user... 2024-09-11T07:31:33.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:33 smithi115 bash[18678]: audit 2024-09-11T07:31:32.344766+0000 mgr.a (mgr.14150) 7 : audit [DBG] from='client.14162 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:31:33.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:33 smithi115 bash[18678]: audit 2024-09-11T07:31:32.504091+0000 mon.a (mon.0) 85 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:31:33.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:33 smithi115 bash[18678]: audit 2024-09-11T07:31:32.509572+0000 mon.a (mon.0) 86 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:31:35.863 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$E9dCgogVg1SPRGGmyAiWeu0Caq3qdWxW6j9pSElgJ3bchWzZQrv1C", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1726039895, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-11T07:31:35.863 INFO:teuthology.orchestra.run.smithi115.stdout:Fetching dashboard port number... 2024-09-11T07:31:36.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:35 smithi115 bash[18678]: audit 2024-09-11T07:31:34.910026+0000 mgr.a (mgr.14150) 8 : audit [DBG] from='client.14164 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:31:36.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:35 smithi115 bash[18678]: audit 2024-09-11T07:31:34.979731+0000 mon.a (mon.0) 87 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:31:36.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:35 smithi115 bash[18678]: audit 2024-09-11T07:31:35.154558+0000 mon.a (mon.0) 88 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:31:36.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:35 smithi115 bash[18678]: audit 2024-09-11T07:31:35.563007+0000 mon.a (mon.0) 89 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:31:37.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:36 smithi115 bash[18678]: cluster 2024-09-11T07:31:35.985946+0000 mon.a (mon.0) 90 : cluster [DBG] mgrmap e13: a(active, since 7s) 2024-09-11T07:31:38.020 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stdout 8443 2024-09-11T07:31:38.021 INFO:teuthology.orchestra.run.smithi115.stdout:firewalld does not appear to be present 2024-09-11T07:31:38.021 INFO:teuthology.orchestra.run.smithi115.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-11T07:31:38.024 INFO:teuthology.orchestra.run.smithi115.stdout:Ceph Dashboard is now available at: 2024-09-11T07:31:38.024 INFO:teuthology.orchestra.run.smithi115.stdout: 2024-09-11T07:31:38.024 INFO:teuthology.orchestra.run.smithi115.stdout: URL: https://smithi115.front.sepia.ceph.com:8443/ 2024-09-11T07:31:38.024 INFO:teuthology.orchestra.run.smithi115.stdout: User: admin 2024-09-11T07:31:38.024 INFO:teuthology.orchestra.run.smithi115.stdout: Password: mvn7pqbskn 2024-09-11T07:31:38.024 INFO:teuthology.orchestra.run.smithi115.stdout: 2024-09-11T07:31:38.025 INFO:teuthology.orchestra.run.smithi115.stdout:Saving cluster configuration to /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config directory 2024-09-11T07:31:38.025 INFO:teuthology.orchestra.run.smithi115.stdout:Enabling autotune for osd_memory_target 2024-09-11T07:31:38.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:37 smithi115 bash[18678]: audit 2024-09-11T07:31:37.403571+0000 mon.a (mon.0) 91 : audit [DBG] from='client.? 172.21.15.115:0/604508226' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-09-11T07:31:43.400 INFO:teuthology.orchestra.run.smithi115.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-11T07:31:43.400 INFO:teuthology.orchestra.run.smithi115.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-11T07:31:43.400 INFO:teuthology.orchestra.run.smithi115.stdout: 2024-09-11T07:31:43.400 INFO:teuthology.orchestra.run.smithi115.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 1973416c-700f-11ef-bcea-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-11T07:31:43.400 INFO:teuthology.orchestra.run.smithi115.stdout: 2024-09-11T07:31:43.400 INFO:teuthology.orchestra.run.smithi115.stdout:Or, if you are only running a single cluster on this host: 2024-09-11T07:31:43.400 INFO:teuthology.orchestra.run.smithi115.stdout: 2024-09-11T07:31:43.400 INFO:teuthology.orchestra.run.smithi115.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-11T07:31:43.400 INFO:teuthology.orchestra.run.smithi115.stdout: 2024-09-11T07:31:43.400 INFO:teuthology.orchestra.run.smithi115.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-11T07:31:43.400 INFO:teuthology.orchestra.run.smithi115.stdout: 2024-09-11T07:31:43.401 INFO:teuthology.orchestra.run.smithi115.stdout: ceph telemetry on 2024-09-11T07:31:43.401 INFO:teuthology.orchestra.run.smithi115.stdout: 2024-09-11T07:31:43.401 INFO:teuthology.orchestra.run.smithi115.stdout:For more information see: 2024-09-11T07:31:43.401 INFO:teuthology.orchestra.run.smithi115.stdout: 2024-09-11T07:31:43.401 INFO:teuthology.orchestra.run.smithi115.stdout: https://docs.ceph.com/docs/master/mgr/telemetry/ 2024-09-11T07:31:43.401 INFO:teuthology.orchestra.run.smithi115.stdout: 2024-09-11T07:31:43.401 INFO:teuthology.orchestra.run.smithi115.stdout:Bootstrap complete. 2024-09-11T07:31:43.436 INFO:tasks.cephadm:Fetching config... 2024-09-11T07:31:43.436 DEBUG:teuthology.orchestra.run.smithi115:> set -ex 2024-09-11T07:31:43.437 DEBUG:teuthology.orchestra.run.smithi115:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-11T07:31:43.444 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-11T07:31:43.444 DEBUG:teuthology.orchestra.run.smithi115:> set -ex 2024-09-11T07:31:43.444 DEBUG:teuthology.orchestra.run.smithi115:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-11T07:31:43.450 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-11T07:31:43.450 DEBUG:teuthology.orchestra.run.smithi115:> set -ex 2024-09-11T07:31:43.451 DEBUG:teuthology.orchestra.run.smithi115:> sudo dd if=/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/keyring of=/dev/stdout 2024-09-11T07:31:43.462 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-11T07:31:43.462 DEBUG:teuthology.orchestra.run.smithi115:> set -ex 2024-09-11T07:31:43.462 DEBUG:teuthology.orchestra.run.smithi115:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-11T07:31:43.512 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-11T07:31:43.513 DEBUG:teuthology.orchestra.run.smithi115:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCtt+Z1dgUCOAC25iTiMCuCS8yxOcSQZ5uWE6CEkXHQgAPqajull4s87j1dYh6CMCuYZVvnoyI0XIvqsq4CDwW61EtOnRo3q5fDIBM4rzZVdjazR13NnAt2piI2ACyXy6ypmHSPzRJHPf+g+UQgFHoqznGZhU7b/ZlE5xmOGt1HubMkjUnbzk/vISO4qsCovMMCVXO+bdTaYcfYW5/OEtJW/O6aAQVHmhztSsngCd+XXgzXUOra1oudc3fBkBJXLS/7P0KhSDWhOWQ+C3cQjmeJ8euHeRRbNqjmi92rQxn5T7KJxcvYnTnosVbW3en85Kh57UcfDAPk6WV2famJ/pvQ7pX4u+Np0KMbT24wJgjrAn5NIkb7iFFO+3GgLvrFElLzbONUS3Otxnsb1pHiIOJvG3WjA/oTGsaV72ZY37F7gJROAsFcDYv0wDn5dfeh7It+hpNV4VKyqfygwMplPO1rSIwHHo2QQ+82l5k59rzRG5dmvJKM7bcnNTpSOfR4ueM= ceph-1973416c-700f-11ef-bcea-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-11T07:31:43.534 INFO:teuthology.orchestra.run.smithi115.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCtt+Z1dgUCOAC25iTiMCuCS8yxOcSQZ5uWE6CEkXHQgAPqajull4s87j1dYh6CMCuYZVvnoyI0XIvqsq4CDwW61EtOnRo3q5fDIBM4rzZVdjazR13NnAt2piI2ACyXy6ypmHSPzRJHPf+g+UQgFHoqznGZhU7b/ZlE5xmOGt1HubMkjUnbzk/vISO4qsCovMMCVXO+bdTaYcfYW5/OEtJW/O6aAQVHmhztSsngCd+XXgzXUOra1oudc3fBkBJXLS/7P0KhSDWhOWQ+C3cQjmeJ8euHeRRbNqjmi92rQxn5T7KJxcvYnTnosVbW3en85Kh57UcfDAPk6WV2famJ/pvQ7pX4u+Np0KMbT24wJgjrAn5NIkb7iFFO+3GgLvrFElLzbONUS3Otxnsb1pHiIOJvG3WjA/oTGsaV72ZY37F7gJROAsFcDYv0wDn5dfeh7It+hpNV4VKyqfygwMplPO1rSIwHHo2QQ+82l5k59rzRG5dmvJKM7bcnNTpSOfR4ueM= ceph-1973416c-700f-11ef-bcea-c7b262605968 2024-09-11T07:31:43.542 DEBUG:teuthology.orchestra.run.smithi150:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCtt+Z1dgUCOAC25iTiMCuCS8yxOcSQZ5uWE6CEkXHQgAPqajull4s87j1dYh6CMCuYZVvnoyI0XIvqsq4CDwW61EtOnRo3q5fDIBM4rzZVdjazR13NnAt2piI2ACyXy6ypmHSPzRJHPf+g+UQgFHoqznGZhU7b/ZlE5xmOGt1HubMkjUnbzk/vISO4qsCovMMCVXO+bdTaYcfYW5/OEtJW/O6aAQVHmhztSsngCd+XXgzXUOra1oudc3fBkBJXLS/7P0KhSDWhOWQ+C3cQjmeJ8euHeRRbNqjmi92rQxn5T7KJxcvYnTnosVbW3en85Kh57UcfDAPk6WV2famJ/pvQ7pX4u+Np0KMbT24wJgjrAn5NIkb7iFFO+3GgLvrFElLzbONUS3Otxnsb1pHiIOJvG3WjA/oTGsaV72ZY37F7gJROAsFcDYv0wDn5dfeh7It+hpNV4VKyqfygwMplPO1rSIwHHo2QQ+82l5k59rzRG5dmvJKM7bcnNTpSOfR4ueM= ceph-1973416c-700f-11ef-bcea-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-11T07:31:43.570 INFO:teuthology.orchestra.run.smithi150.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCtt+Z1dgUCOAC25iTiMCuCS8yxOcSQZ5uWE6CEkXHQgAPqajull4s87j1dYh6CMCuYZVvnoyI0XIvqsq4CDwW61EtOnRo3q5fDIBM4rzZVdjazR13NnAt2piI2ACyXy6ypmHSPzRJHPf+g+UQgFHoqznGZhU7b/ZlE5xmOGt1HubMkjUnbzk/vISO4qsCovMMCVXO+bdTaYcfYW5/OEtJW/O6aAQVHmhztSsngCd+XXgzXUOra1oudc3fBkBJXLS/7P0KhSDWhOWQ+C3cQjmeJ8euHeRRbNqjmi92rQxn5T7KJxcvYnTnosVbW3en85Kh57UcfDAPk6WV2famJ/pvQ7pX4u+Np0KMbT24wJgjrAn5NIkb7iFFO+3GgLvrFElLzbONUS3Otxnsb1pHiIOJvG3WjA/oTGsaV72ZY37F7gJROAsFcDYv0wDn5dfeh7It+hpNV4VKyqfygwMplPO1rSIwHHo2QQ+82l5k59rzRG5dmvJKM7bcnNTpSOfR4ueM= ceph-1973416c-700f-11ef-bcea-c7b262605968 2024-09-11T07:31:43.583 DEBUG:teuthology.orchestra.run.smithi181:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCtt+Z1dgUCOAC25iTiMCuCS8yxOcSQZ5uWE6CEkXHQgAPqajull4s87j1dYh6CMCuYZVvnoyI0XIvqsq4CDwW61EtOnRo3q5fDIBM4rzZVdjazR13NnAt2piI2ACyXy6ypmHSPzRJHPf+g+UQgFHoqznGZhU7b/ZlE5xmOGt1HubMkjUnbzk/vISO4qsCovMMCVXO+bdTaYcfYW5/OEtJW/O6aAQVHmhztSsngCd+XXgzXUOra1oudc3fBkBJXLS/7P0KhSDWhOWQ+C3cQjmeJ8euHeRRbNqjmi92rQxn5T7KJxcvYnTnosVbW3en85Kh57UcfDAPk6WV2famJ/pvQ7pX4u+Np0KMbT24wJgjrAn5NIkb7iFFO+3GgLvrFElLzbONUS3Otxnsb1pHiIOJvG3WjA/oTGsaV72ZY37F7gJROAsFcDYv0wDn5dfeh7It+hpNV4VKyqfygwMplPO1rSIwHHo2QQ+82l5k59rzRG5dmvJKM7bcnNTpSOfR4ueM= ceph-1973416c-700f-11ef-bcea-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-11T07:31:43.612 INFO:teuthology.orchestra.run.smithi181.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCtt+Z1dgUCOAC25iTiMCuCS8yxOcSQZ5uWE6CEkXHQgAPqajull4s87j1dYh6CMCuYZVvnoyI0XIvqsq4CDwW61EtOnRo3q5fDIBM4rzZVdjazR13NnAt2piI2ACyXy6ypmHSPzRJHPf+g+UQgFHoqznGZhU7b/ZlE5xmOGt1HubMkjUnbzk/vISO4qsCovMMCVXO+bdTaYcfYW5/OEtJW/O6aAQVHmhztSsngCd+XXgzXUOra1oudc3fBkBJXLS/7P0KhSDWhOWQ+C3cQjmeJ8euHeRRbNqjmi92rQxn5T7KJxcvYnTnosVbW3en85Kh57UcfDAPk6WV2famJ/pvQ7pX4u+Np0KMbT24wJgjrAn5NIkb7iFFO+3GgLvrFElLzbONUS3Otxnsb1pHiIOJvG3WjA/oTGsaV72ZY37F7gJROAsFcDYv0wDn5dfeh7It+hpNV4VKyqfygwMplPO1rSIwHHo2QQ+82l5k59rzRG5dmvJKM7bcnNTpSOfR4ueM= ceph-1973416c-700f-11ef-bcea-c7b262605968 2024-09-11T07:31:43.623 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-11T07:31:43.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:43 smithi115 bash[18678]: audit 2024-09-11T07:31:42.497909+0000 mon.a (mon.0) 92 : audit [INF] from='client.? 172.21.15.115:0/2245319127' entity='client.admin' 2024-09-11T07:31:48.342 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:31:50.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:50 smithi115 bash[18678]: cluster 2024-09-11T07:31:48.997368+0000 mgr.a (mgr.14150) 9 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:31:52.340 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:52 smithi115 bash[18678]: cluster 2024-09-11T07:31:50.997883+0000 mgr.a (mgr.14150) 10 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:31:52.340 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:52 smithi115 bash[18678]: audit 2024-09-11T07:31:51.008568+0000 mon.a (mon.0) 93 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:31:52.340 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:52 smithi115 bash[18678]: audit 2024-09-11T07:31:51.014293+0000 mon.a (mon.0) 94 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:31:52.340 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:52 smithi115 bash[18678]: audit 2024-09-11T07:31:51.015641+0000 mon.a (mon.0) 95 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi115", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:31:52.340 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:52 smithi115 bash[18678]: audit 2024-09-11T07:31:51.022115+0000 mon.a (mon.0) 96 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:31:52.341 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:52 smithi115 bash[18678]: audit 2024-09-11T07:31:51.046368+0000 mon.a (mon.0) 97 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:31:52.341 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:52 smithi115 bash[18678]: audit 2024-09-11T07:31:51.057116+0000 mon.a (mon.0) 98 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:31:52.861 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-11T07:31:52.861 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-11T07:31:53.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:53 smithi115 bash[18678]: audit 2024-09-11T07:31:52.130203+0000 mon.a (mon.0) 99 : audit [INF] from='client.? 172.21.15.115:0/3805036919' entity='client.admin' 2024-09-11T07:31:53.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:53 smithi115 bash[18678]: audit 2024-09-11T07:31:52.148825+0000 mon.a (mon.0) 100 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:31:53.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:53 smithi115 bash[18678]: audit 2024-09-11T07:31:52.155203+0000 mon.a (mon.0) 101 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:31:54.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:54 smithi115 bash[18678]: cluster 2024-09-11T07:31:52.998419+0000 mgr.a (mgr.14150) 11 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:31:56.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:56 smithi115 bash[18678]: cluster 2024-09-11T07:31:54.998856+0000 mgr.a (mgr.14150) 12 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:31:57.578 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:31:58.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:31:58 smithi115 bash[18678]: cluster 2024-09-11T07:31:56.999392+0000 mgr.a (mgr.14150) 13 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:00.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:00 smithi115 bash[18678]: cluster 2024-09-11T07:31:58.999810+0000 mgr.a (mgr.14150) 14 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:01.909 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi150 2024-09-11T07:32:01.909 DEBUG:teuthology.orchestra.run.smithi150:> set -ex 2024-09-11T07:32:01.909 DEBUG:teuthology.orchestra.run.smithi150:> dd of=/etc/ceph/ceph.conf 2024-09-11T07:32:01.917 DEBUG:teuthology.orchestra.run.smithi150:> set -ex 2024-09-11T07:32:01.917 DEBUG:teuthology.orchestra.run.smithi150:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-11T07:32:01.966 INFO:tasks.cephadm:Adding host smithi150 to orchestrator... 2024-09-11T07:32:01.967 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph orch host add smithi150 2024-09-11T07:32:02.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:02 smithi115 bash[18678]: cluster 2024-09-11T07:32:01.000203+0000 mgr.a (mgr.14150) 15 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:02.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:02 smithi115 bash[18678]: audit 2024-09-11T07:32:01.148131+0000 mgr.a (mgr.14150) 16 : audit [DBG] from='client.14174 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:32:02.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:02 smithi115 bash[18678]: audit 2024-09-11T07:32:01.153421+0000 mon.a (mon.0) 102 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:02.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:02 smithi115 bash[18678]: audit 2024-09-11T07:32:01.154812+0000 mon.a (mon.0) 103 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:32:02.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:02 smithi115 bash[18678]: audit 2024-09-11T07:32:01.157880+0000 mon.a (mon.0) 104 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:32:02.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:02 smithi115 bash[18678]: audit 2024-09-11T07:32:01.159389+0000 mon.a (mon.0) 105 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:32:02.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:02 smithi115 bash[18678]: cephadm 2024-09-11T07:32:01.161553+0000 mgr.a (mgr.14150) 17 : cephadm [INF] Updating smithi115:/etc/ceph/ceph.conf 2024-09-11T07:32:02.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:02 smithi115 bash[18678]: cephadm 2024-09-11T07:32:01.274317+0000 mgr.a (mgr.14150) 18 : cephadm [INF] Updating smithi115:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T07:32:02.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:02 smithi115 bash[18678]: cephadm 2024-09-11T07:32:01.386214+0000 mgr.a (mgr.14150) 19 : cephadm [INF] Updating smithi115:/etc/ceph/ceph.client.admin.keyring 2024-09-11T07:32:02.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:02 smithi115 bash[18678]: cephadm 2024-09-11T07:32:01.549618+0000 mgr.a (mgr.14150) 20 : cephadm [INF] Updating smithi115:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-11T07:32:02.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:02 smithi115 bash[18678]: audit 2024-09-11T07:32:01.674846+0000 mon.a (mon.0) 106 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:02.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:02 smithi115 bash[18678]: audit 2024-09-11T07:32:01.680208+0000 mon.a (mon.0) 107 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:02.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:02 smithi115 bash[18678]: audit 2024-09-11T07:32:01.685559+0000 mon.a (mon.0) 108 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:04.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:04 smithi115 bash[18678]: cluster 2024-09-11T07:32:03.000647+0000 mgr.a (mgr.14150) 21 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:06.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:06 smithi115 bash[18678]: cluster 2024-09-11T07:32:05.001163+0000 mgr.a (mgr.14150) 22 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:06.689 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:32:08.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:08 smithi115 bash[18678]: cluster 2024-09-11T07:32:07.001611+0000 mgr.a (mgr.14150) 23 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:10.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:10 smithi115 bash[18678]: cluster 2024-09-11T07:32:09.002051+0000 mgr.a (mgr.14150) 24 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:11.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:11 smithi115 bash[18678]: audit 2024-09-11T07:32:09.987285+0000 mgr.a (mgr.14150) 25 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi150", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:32:12.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:12 smithi115 bash[18678]: cluster 2024-09-11T07:32:11.002440+0000 mgr.a (mgr.14150) 26 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:12.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:12 smithi115 bash[18678]: cephadm 2024-09-11T07:32:11.207011+0000 mgr.a (mgr.14150) 27 : cephadm [INF] Deploying cephadm binary to smithi150 2024-09-11T07:32:13.751 INFO:teuthology.orchestra.run.smithi115.stdout:Added host 'smithi150' with addr '172.21.15.150' 2024-09-11T07:32:14.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:14 smithi115 bash[18678]: cluster 2024-09-11T07:32:13.002821+0000 mgr.a (mgr.14150) 28 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:14.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:14 smithi115 bash[18678]: audit 2024-09-11T07:32:13.747958+0000 mon.a (mon.0) 109 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:14.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:14 smithi115 bash[18678]: audit 2024-09-11T07:32:13.749502+0000 mon.a (mon.0) 110 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:32:14.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:14 smithi115 bash[18678]: audit 2024-09-11T07:32:14.047261+0000 mon.a (mon.0) 111 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:14.470 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph orch host ls --format=json 2024-09-11T07:32:15.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:15 smithi115 bash[18678]: cephadm 2024-09-11T07:32:13.748606+0000 mgr.a (mgr.14150) 29 : cephadm [INF] Added host smithi150 2024-09-11T07:32:16.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:16 smithi115 bash[18678]: cluster 2024-09-11T07:32:15.003220+0000 mgr.a (mgr.14150) 30 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:16.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:16 smithi115 bash[18678]: audit 2024-09-11T07:32:15.345337+0000 mon.a (mon.0) 112 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:16.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:16 smithi115 bash[18678]: audit 2024-09-11T07:32:16.010411+0000 mon.a (mon.0) 113 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:18.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:18 smithi115 bash[18678]: cluster 2024-09-11T07:32:17.003635+0000 mgr.a (mgr.14150) 31 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:19.197 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:32:20.373 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:20 smithi115 bash[18678]: cluster 2024-09-11T07:32:19.004062+0000 mgr.a (mgr.14150) 32 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:22.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:22 smithi115 bash[18678]: cluster 2024-09-11T07:32:21.004538+0000 mgr.a (mgr.14150) 33 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:22.628 INFO:teuthology.orchestra.run.smithi115.stdout: 2024-09-11T07:32:22.628 INFO:teuthology.orchestra.run.smithi115.stdout:[{"addr": "172.21.15.115", "hostname": "smithi115", "labels": [], "status": ""}, {"addr": "172.21.15.150", "hostname": "smithi150", "labels": [], "status": ""}] 2024-09-11T07:32:23.317 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi181 2024-09-11T07:32:23.317 DEBUG:teuthology.orchestra.run.smithi181:> set -ex 2024-09-11T07:32:23.317 DEBUG:teuthology.orchestra.run.smithi181:> dd of=/etc/ceph/ceph.conf 2024-09-11T07:32:23.325 DEBUG:teuthology.orchestra.run.smithi181:> set -ex 2024-09-11T07:32:23.325 DEBUG:teuthology.orchestra.run.smithi181:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-11T07:32:23.374 INFO:tasks.cephadm:Adding host smithi181 to orchestrator... 2024-09-11T07:32:23.374 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph orch host add smithi181 2024-09-11T07:32:23.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:23 smithi115 bash[18678]: audit 2024-09-11T07:32:22.374233+0000 mon.a (mon.0) 114 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:23.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:23 smithi115 bash[18678]: audit 2024-09-11T07:32:22.379177+0000 mon.a (mon.0) 115 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:23.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:23 smithi115 bash[18678]: audit 2024-09-11T07:32:22.385125+0000 mon.a (mon.0) 116 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:23.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:23 smithi115 bash[18678]: audit 2024-09-11T07:32:22.389163+0000 mon.a (mon.0) 117 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:23.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:23 smithi115 bash[18678]: audit 2024-09-11T07:32:22.390364+0000 mon.a (mon.0) 118 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi150", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:32:23.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:23 smithi115 bash[18678]: audit 2024-09-11T07:32:22.391814+0000 mon.a (mon.0) 119 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:32:23.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:23 smithi115 bash[18678]: audit 2024-09-11T07:32:22.393086+0000 mon.a (mon.0) 120 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:32:23.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:23 smithi115 bash[18678]: cephadm 2024-09-11T07:32:22.395046+0000 mgr.a (mgr.14150) 34 : cephadm [INF] Updating smithi150:/etc/ceph/ceph.conf 2024-09-11T07:32:23.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:23 smithi115 bash[18678]: cephadm 2024-09-11T07:32:22.522168+0000 mgr.a (mgr.14150) 35 : cephadm [INF] Updating smithi150:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T07:32:23.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:23 smithi115 bash[18678]: audit 2024-09-11T07:32:22.625217+0000 mgr.a (mgr.14150) 36 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T07:32:23.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:23 smithi115 bash[18678]: cephadm 2024-09-11T07:32:22.648660+0000 mgr.a (mgr.14150) 37 : cephadm [INF] Updating smithi150:/etc/ceph/ceph.client.admin.keyring 2024-09-11T07:32:23.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:23 smithi115 bash[18678]: audit 2024-09-11T07:32:22.911092+0000 mon.a (mon.0) 121 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:23.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:23 smithi115 bash[18678]: audit 2024-09-11T07:32:22.915464+0000 mon.a (mon.0) 122 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:23.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:23 smithi115 bash[18678]: audit 2024-09-11T07:32:22.923999+0000 mon.a (mon.0) 123 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:24.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:24 smithi115 bash[18678]: cephadm 2024-09-11T07:32:22.774791+0000 mgr.a (mgr.14150) 38 : cephadm [INF] Updating smithi150:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-11T07:32:24.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:24 smithi115 bash[18678]: cluster 2024-09-11T07:32:23.004984+0000 mgr.a (mgr.14150) 39 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:26.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:26 smithi115 bash[18678]: cluster 2024-09-11T07:32:25.005414+0000 mgr.a (mgr.14150) 40 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:28.093 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:32:28.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:28 smithi115 bash[18678]: cluster 2024-09-11T07:32:27.005838+0000 mgr.a (mgr.14150) 41 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:30.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:30 smithi115 bash[18678]: cluster 2024-09-11T07:32:29.006230+0000 mgr.a (mgr.14150) 42 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:32.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:32 smithi115 bash[18678]: cluster 2024-09-11T07:32:31.006675+0000 mgr.a (mgr.14150) 43 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:32.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:32 smithi115 bash[18678]: audit 2024-09-11T07:32:31.613504+0000 mgr.a (mgr.14150) 44 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi181", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:32:34.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:34 smithi115 bash[18678]: cephadm 2024-09-11T07:32:32.850598+0000 mgr.a (mgr.14150) 45 : cephadm [INF] Deploying cephadm binary to smithi181 2024-09-11T07:32:34.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:34 smithi115 bash[18678]: cluster 2024-09-11T07:32:33.007083+0000 mgr.a (mgr.14150) 46 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:35.449 INFO:teuthology.orchestra.run.smithi115.stdout:Added host 'smithi181' with addr '172.21.15.181' 2024-09-11T07:32:36.194 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph orch host ls --format=json 2024-09-11T07:32:36.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:36 smithi115 bash[18678]: cluster 2024-09-11T07:32:35.007469+0000 mgr.a (mgr.14150) 47 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:36.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:36 smithi115 bash[18678]: audit 2024-09-11T07:32:35.445991+0000 mon.a (mon.0) 124 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:36.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:36 smithi115 bash[18678]: cephadm 2024-09-11T07:32:35.446668+0000 mgr.a (mgr.14150) 48 : cephadm [INF] Added host smithi181 2024-09-11T07:32:36.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:36 smithi115 bash[18678]: audit 2024-09-11T07:32:35.447490+0000 mon.a (mon.0) 125 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:32:36.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:36 smithi115 bash[18678]: audit 2024-09-11T07:32:35.756393+0000 mon.a (mon.0) 126 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:38.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:38 smithi115 bash[18678]: cluster 2024-09-11T07:32:37.007902+0000 mgr.a (mgr.14150) 49 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:38.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:38 smithi115 bash[18678]: audit 2024-09-11T07:32:37.114586+0000 mon.a (mon.0) 127 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:38.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:38 smithi115 bash[18678]: audit 2024-09-11T07:32:37.779836+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:40.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:40 smithi115 bash[18678]: cluster 2024-09-11T07:32:39.008309+0000 mgr.a (mgr.14150) 50 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:40.910 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:32:42.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:42 smithi115 bash[18678]: cluster 2024-09-11T07:32:41.008792+0000 mgr.a (mgr.14150) 51 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:44.266 INFO:teuthology.orchestra.run.smithi115.stdout: 2024-09-11T07:32:44.266 INFO:teuthology.orchestra.run.smithi115.stdout:[{"addr": "172.21.15.115", "hostname": "smithi115", "labels": [], "status": ""}, {"addr": "172.21.15.150", "hostname": "smithi150", "labels": [], "status": ""}, {"addr": "172.21.15.181", "hostname": "smithi181", "labels": [], "status": ""}] 2024-09-11T07:32:44.289 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:44 smithi115 bash[18678]: cluster 2024-09-11T07:32:43.009233+0000 mgr.a (mgr.14150) 52 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:44.289 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:44 smithi115 bash[18678]: audit 2024-09-11T07:32:43.847633+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:44.290 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:44 smithi115 bash[18678]: audit 2024-09-11T07:32:43.852284+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:44.290 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:44 smithi115 bash[18678]: audit 2024-09-11T07:32:43.858535+0000 mon.a (mon.0) 131 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:44.290 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:44 smithi115 bash[18678]: audit 2024-09-11T07:32:43.862946+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:44.290 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:44 smithi115 bash[18678]: audit 2024-09-11T07:32:43.864241+0000 mon.a (mon.0) 133 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi181", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:32:44.290 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:44 smithi115 bash[18678]: audit 2024-09-11T07:32:43.865909+0000 mon.a (mon.0) 134 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:32:44.290 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:44 smithi115 bash[18678]: audit 2024-09-11T07:32:43.867564+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:32:44.918 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-11T07:32:44.918 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph osd crush tunables default 2024-09-11T07:32:45.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:45 smithi115 bash[18678]: cephadm 2024-09-11T07:32:43.869972+0000 mgr.a (mgr.14150) 53 : cephadm [INF] Updating smithi181:/etc/ceph/ceph.conf 2024-09-11T07:32:45.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:45 smithi115 bash[18678]: cephadm 2024-09-11T07:32:44.009985+0000 mgr.a (mgr.14150) 54 : cephadm [INF] Updating smithi181:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T07:32:45.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:45 smithi115 bash[18678]: cephadm 2024-09-11T07:32:44.138743+0000 mgr.a (mgr.14150) 55 : cephadm [INF] Updating smithi181:/etc/ceph/ceph.client.admin.keyring 2024-09-11T07:32:45.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:45 smithi115 bash[18678]: cephadm 2024-09-11T07:32:44.256700+0000 mgr.a (mgr.14150) 56 : cephadm [INF] Updating smithi181:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-11T07:32:45.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:45 smithi115 bash[18678]: audit 2024-09-11T07:32:44.263621+0000 mgr.a (mgr.14150) 57 : audit [DBG] from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T07:32:45.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:45 smithi115 bash[18678]: audit 2024-09-11T07:32:44.385732+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:45.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:45 smithi115 bash[18678]: audit 2024-09-11T07:32:44.389830+0000 mon.a (mon.0) 137 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:45.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:45 smithi115 bash[18678]: audit 2024-09-11T07:32:44.395514+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:46.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:46 smithi115 bash[18678]: cluster 2024-09-11T07:32:45.009677+0000 mgr.a (mgr.14150) 58 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:48.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:48 smithi115 bash[18678]: cluster 2024-09-11T07:32:47.010106+0000 mgr.a (mgr.14150) 59 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:49.644 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:32:50.707 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:50 smithi115 bash[18678]: cluster 2024-09-11T07:32:49.010516+0000 mgr.a (mgr.14150) 60 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:52.659 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:52 smithi115 bash[18678]: cluster 2024-09-11T07:32:51.010938+0000 mgr.a (mgr.14150) 61 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:53.415 INFO:teuthology.orchestra.run.smithi115.stderr:adjusted tunables profile to default 2024-09-11T07:32:53.668 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:53 smithi115 bash[18678]: audit 2024-09-11T07:32:53.029556+0000 mon.a (mon.0) 139 : audit [INF] from='client.? 172.21.15.115:0/2906320618' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-11T07:32:54.136 INFO:tasks.cephadm:Adding mon.a on smithi115 2024-09-11T07:32:54.137 INFO:tasks.cephadm:Adding mon.b on smithi150 2024-09-11T07:32:54.137 INFO:tasks.cephadm:Adding mon.c on smithi181 2024-09-11T07:32:54.137 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph orch apply mon '3;smithi115:172.21.15.115=a;smithi150:172.21.15.150=b;smithi181:172.21.15.181=c' 2024-09-11T07:32:54.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:54 smithi115 bash[18678]: cluster 2024-09-11T07:32:53.011374+0000 mgr.a (mgr.14150) 62 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:54.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:54 smithi115 bash[18678]: audit 2024-09-11T07:32:53.412943+0000 mon.a (mon.0) 140 : audit [INF] from='client.? 172.21.15.115:0/2906320618' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-11T07:32:54.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:54 smithi115 bash[18678]: cluster 2024-09-11T07:32:53.413059+0000 mon.a (mon.0) 141 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-11T07:32:55.374 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T07:32:56.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:56 smithi115 bash[18678]: cluster 2024-09-11T07:32:55.011792+0000 mgr.a (mgr.14150) 63 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:58.331 INFO:teuthology.orchestra.run.smithi181.stdout:Scheduled mon update... 2024-09-11T07:32:58.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:58 smithi115 bash[18678]: cluster 2024-09-11T07:32:57.012186+0000 mgr.a (mgr.14150) 64 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:32:58.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:58 smithi115 bash[18678]: audit 2024-09-11T07:32:58.328576+0000 mon.a (mon.0) 142 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:58.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:58 smithi115 bash[18678]: audit 2024-09-11T07:32:58.330028+0000 mon.a (mon.0) 143 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:32:58.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:58 smithi115 bash[18678]: audit 2024-09-11T07:32:58.333318+0000 mon.a (mon.0) 144 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:32:58.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:58 smithi115 bash[18678]: audit 2024-09-11T07:32:58.335285+0000 mon.a (mon.0) 145 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:32:58.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:58 smithi115 bash[18678]: audit 2024-09-11T07:32:58.345869+0000 mon.a (mon.0) 146 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:32:58.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:58 smithi115 bash[18678]: audit 2024-09-11T07:32:58.349686+0000 mon.a (mon.0) 147 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-11T07:32:58.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:58 smithi115 bash[18678]: audit 2024-09-11T07:32:58.351243+0000 mon.a (mon.0) 148 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:32:59.145 DEBUG:teuthology.orchestra.run.smithi150:mon.b> sudo journalctl -f -n 0 -u ceph-1973416c-700f-11ef-bcea-c7b262605968@mon.b.service 2024-09-11T07:32:59.148 DEBUG:teuthology.orchestra.run.smithi181:mon.c> sudo journalctl -f -n 0 -u ceph-1973416c-700f-11ef-bcea-c7b262605968@mon.c.service 2024-09-11T07:32:59.151 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-11T07:32:59.151 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-11T07:32:59.333 INFO:journalctl@ceph.mon.b.smithi150.stdout:-- Logs begin at Sun 2022-08-14 12:20:24 UTC. -- 2024-09-11T07:32:59.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:59 smithi115 bash[18678]: audit 2024-09-11T07:32:58.317809+0000 mgr.a (mgr.14150) 65 : audit [DBG] from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi115:172.21.15.115=a;smithi150:172.21.15.150=b;smithi181:172.21.15.181=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:32:59.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:59 smithi115 bash[18678]: cephadm 2024-09-11T07:32:58.323013+0000 mgr.a (mgr.14150) 66 : cephadm [INF] Saving service mon spec with placement smithi115:172.21.15.115=a;smithi150:172.21.15.150=b;smithi181:172.21.15.181=c;count:3 2024-09-11T07:32:59.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:32:59 smithi115 bash[18678]: cephadm 2024-09-11T07:32:58.352951+0000 mgr.a (mgr.14150) 67 : cephadm [INF] Deploying daemon mon.c on smithi181 2024-09-11T07:33:00.092 INFO:journalctl@ceph.mon.c.smithi181.stdout:-- Logs begin at Sun 2022-08-14 12:20:24 UTC. -- 2024-09-11T07:33:00.434 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T07:33:00.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:00 smithi115 bash[18678]: cluster 2024-09-11T07:32:59.012585+0000 mgr.a (mgr.14150) 68 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:02.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:02 smithi115 bash[18678]: cluster 2024-09-11T07:33:01.013066+0000 mgr.a (mgr.14150) 69 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:04.741 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-11T07:33:04.741 INFO:teuthology.orchestra.run.smithi181.stdout:{"epoch":1,"fsid":"1973416c-700f-11ef-bcea-c7b262605968","modified":"2024-09-11T07:30:22.567618Z","created":"2024-09-11T07:30:22.567618Z","min_mon_release":17,"min_mon_release_name":"quincy","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:3300","nonce":0},{"type":"v1","addr":"172.21.15.115:6789","nonce":0}]},"addr":"172.21.15.115:6789/0","public_addr":"172.21.15.115:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-11T07:33:04.741 INFO:teuthology.orchestra.run.smithi181.stderr:dumped monmap epoch 1 2024-09-11T07:33:04.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:04 smithi115 bash[18678]: cluster 2024-09-11T07:33:03.013531+0000 mgr.a (mgr.14150) 70 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:05.848 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:05 smithi115 bash[18678]: audit 2024-09-11T07:33:04.738680+0000 mon.a (mon.0) 149 : audit [DBG] from='client.? 172.21.15.181:0/3675672049' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T07:33:05.848 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:05 smithi115 bash[18678]: audit 2024-09-11T07:33:04.774896+0000 mon.a (mon.0) 150 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:05.848 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:05 smithi115 bash[18678]: audit 2024-09-11T07:33:04.779808+0000 mon.a (mon.0) 151 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:05.848 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:05 smithi115 bash[18678]: audit 2024-09-11T07:33:04.786075+0000 mon.a (mon.0) 152 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:05.849 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:05 smithi115 bash[18678]: audit 2024-09-11T07:33:04.787239+0000 mon.a (mon.0) 153 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-11T07:33:05.849 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:05 smithi115 bash[18678]: audit 2024-09-11T07:33:04.788858+0000 mon.a (mon.0) 154 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:06.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:06 smithi181 bash[22002]: debug 2024-09-11T07:33:06.195+0000 7f9301f1f640 1 mon.c@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2024-09-11T07:33:06.735 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-11T07:33:06.736 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-11T07:33:09.560 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:09 smithi150 systemd[1]: Started Ceph mon.b for 1973416c-700f-11ef-bcea-c7b262605968. 2024-09-11T07:33:10.465 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.c/config 2024-09-11T07:33:10.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.583+0000 7feea8835900 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-11T07:33:10.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.583+0000 7feea8835900 0 ceph version 17.2.7-1623-gd0e6828a (d0e6828a2016d48cf25ad84064e50742bb1c39b9) quincy (stable), process ceph-mon, pid 6 2024-09-11T07:33:10.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.583+0000 7feea8835900 0 pidfile_write: ignore empty --pid-file 2024-09-11T07:33:10.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 0 load: jerasure load: lrc 2024-09-11T07:33:10.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: RocksDB version: 6.15.5 2024-09-11T07:33:10.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-09-11T07:33:10.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Compile date Sep 10 2024 2024-09-11T07:33:10.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: DB SUMMARY 2024-09-11T07:33:10.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: DB Session ID: LYS9EPL3PJ2BD4B07UTD 2024-09-11T07:33:10.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: CURRENT file: CURRENT 2024-09-11T07:33:10.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: IDENTITY file: IDENTITY 2024-09-11T07:33:10.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: MANIFEST file: MANIFEST-000003 size: 57 Bytes 2024-09-11T07:33:10.948 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-b/store.db dir, Total Num: 0, files: 2024-09-11T07:33:10.948 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-b/store.db: 000004.log size: 511 ; 2024-09-11T07:33:10.948 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.error_if_exists: 0 2024-09-11T07:33:10.948 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.create_if_missing: 0 2024-09-11T07:33:10.948 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.paranoid_checks: 1 2024-09-11T07:33:10.948 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-11T07:33:10.948 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.env: 0x55e4864b1440 2024-09-11T07:33:10.948 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.fs: Posix File System 2024-09-11T07:33:10.948 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.info_log: 0x55e4878bcee0 2024-09-11T07:33:10.948 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-11T07:33:10.948 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.statistics: (nil) 2024-09-11T07:33:10.949 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.use_fsync: 0 2024-09-11T07:33:10.949 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.max_log_file_size: 0 2024-09-11T07:33:10.949 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-11T07:33:10.949 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-11T07:33:10.949 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-11T07:33:10.949 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-11T07:33:10.949 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.allow_fallocate: 1 2024-09-11T07:33:10.949 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-11T07:33:10.949 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-11T07:33:10.949 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.use_direct_reads: 0 2024-09-11T07:33:10.949 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-11T07:33:10.950 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.create_missing_column_families: 0 2024-09-11T07:33:10.950 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.db_log_dir: 2024-09-11T07:33:10.950 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-b/store.db 2024-09-11T07:33:10.950 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-11T07:33:10.950 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-11T07:33:10.950 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-11T07:33:10.950 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-11T07:33:10.950 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-11T07:33:10.950 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-11T07:33:10.950 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.advise_random_on_open: 1 2024-09-11T07:33:10.950 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-11T07:33:10.950 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.write_buffer_manager: 0x55e48797a780 2024-09-11T07:33:10.950 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-11T07:33:10.951 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-09-11T07:33:10.951 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-11T07:33:10.951 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-11T07:33:10.951 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.rate_limiter: (nil) 2024-09-11T07:33:10.951 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-11T07:33:10.951 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-11T07:33:10.951 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-11T07:33:10.954 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-11T07:33:10.954 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.unordered_write: 0 2024-09-11T07:33:10.954 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-11T07:33:10.954 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-11T07:33:10.954 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-11T07:33:10.954 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-11T07:33:10.954 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.row_cache: None 2024-09-11T07:33:10.954 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.wal_filter: None 2024-09-11T07:33:10.954 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-11T07:33:10.954 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-11T07:33:10.955 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.preserve_deletes: 0 2024-09-11T07:33:10.955 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.two_write_queues: 0 2024-09-11T07:33:10.955 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.manual_wal_flush: 0 2024-09-11T07:33:10.955 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.atomic_flush: 0 2024-09-11T07:33:10.955 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-11T07:33:10.955 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-11T07:33:10.955 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-11T07:33:10.955 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.log_readahead_size: 0 2024-09-11T07:33:10.955 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-11T07:33:10.955 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-11T07:33:10.955 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-11T07:33:10.955 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-11T07:33:10.955 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-11T07:33:10.955 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-11T07:33:10.956 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.max_background_jobs: 2 2024-09-11T07:33:10.956 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.max_background_compactions: -1 2024-09-11T07:33:10.956 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.max_subcompactions: 1 2024-09-11T07:33:10.956 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-11T07:33:10.956 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-11T07:33:10.956 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-11T07:33:10.956 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.max_total_wal_size: 0 2024-09-11T07:33:10.956 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-11T07:33:10.956 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-11T07:33:10.956 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-11T07:33:10.956 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-11T07:33:10.956 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.max_open_files: -1 2024-09-11T07:33:10.956 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.bytes_per_sync: 0 2024-09-11T07:33:10.956 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-11T07:33:10.957 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-11T07:33:10.957 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-11T07:33:10.957 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Options.max_background_flushes: -1 2024-09-11T07:33:10.957 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Compression algorithms supported: 2024-09-11T07:33:10.957 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: kZSTD supported: 0 2024-09-11T07:33:10.957 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: kXpressCompression supported: 0 2024-09-11T07:33:10.957 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: kBZip2Compression supported: 0 2024-09-11T07:33:10.957 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-11T07:33:10.957 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: kLZ4Compression supported: 1 2024-09-11T07:33:10.957 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: kZlibCompression supported: 1 2024-09-11T07:33:10.957 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-11T07:33:10.957 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: kSnappyCompression supported: 1 2024-09-11T07:33:10.957 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-11T07:33:10.958 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.587+0000 7feea8835900 4 rocksdb: [db/version_set.cc:4724] Recovering from manifest file: /var/lib/ceph/mon/ceph-b/store.db/MANIFEST-000003 2024-09-11T07:33:10.958 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: [db/column_family.cc:595] --------------- Options for column family [default]: 2024-09-11T07:33:10.958 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-11T07:33:10.958 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.merge_operator: 2024-09-11T07:33:10.958 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.compaction_filter: None 2024-09-11T07:33:10.958 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.compaction_filter_factory: None 2024-09-11T07:33:10.958 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-11T07:33:10.958 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-11T07:33:10.958 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-11T07:33:10.958 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55e487865a38) 2024-09-11T07:33:10.958 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cache_index_and_filter_blocks: 1 2024-09-11T07:33:10.958 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-11T07:33:10.958 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-11T07:33:10.959 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: pin_top_level_index_and_filter: 1 2024-09-11T07:33:10.959 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: index_type: 0 2024-09-11T07:33:10.959 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: data_block_index_type: 0 2024-09-11T07:33:10.959 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: index_shortening: 1 2024-09-11T07:33:10.959 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: data_block_hash_table_util_ratio: 0.750000 2024-09-11T07:33:10.959 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: hash_index_allow_collision: 1 2024-09-11T07:33:10.959 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: checksum: 1 2024-09-11T07:33:10.959 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: no_block_cache: 0 2024-09-11T07:33:10.959 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: block_cache: 0x55e4878991f0 2024-09-11T07:33:10.959 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: block_cache_name: BinnedLRUCache 2024-09-11T07:33:10.959 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: block_cache_options: 2024-09-11T07:33:10.959 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: capacity : 536870912 2024-09-11T07:33:10.959 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: num_shard_bits : 4 2024-09-11T07:33:10.959 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: strict_capacity_limit : 0 2024-09-11T07:33:10.960 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: high_pri_pool_ratio: 0.000 2024-09-11T07:33:10.960 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: block_cache_compressed: (nil) 2024-09-11T07:33:10.960 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: persistent_cache: (nil) 2024-09-11T07:33:10.960 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: block_size: 4096 2024-09-11T07:33:10.960 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: block_size_deviation: 10 2024-09-11T07:33:10.960 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: block_restart_interval: 16 2024-09-11T07:33:10.960 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: index_block_restart_interval: 1 2024-09-11T07:33:10.960 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: metadata_block_size: 4096 2024-09-11T07:33:10.960 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: partition_filters: 0 2024-09-11T07:33:10.960 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: use_delta_encoding: 1 2024-09-11T07:33:10.960 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: filter_policy: rocksdb.BuiltinBloomFilter 2024-09-11T07:33:10.960 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: whole_key_filtering: 1 2024-09-11T07:33:10.960 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: verify_compression: 0 2024-09-11T07:33:10.960 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: read_amp_bytes_per_bit: 0 2024-09-11T07:33:10.961 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: format_version: 4 2024-09-11T07:33:10.961 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: enable_index_compression: 1 2024-09-11T07:33:10.961 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: block_align: 0 2024-09-11T07:33:10.961 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-11T07:33:10.961 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-11T07:33:10.961 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.compression: NoCompression 2024-09-11T07:33:10.961 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-11T07:33:10.961 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-11T07:33:10.961 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-11T07:33:10.961 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.num_levels: 7 2024-09-11T07:33:10.961 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-11T07:33:10.961 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-11T07:33:10.961 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-11T07:33:10.962 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-11T07:33:10.962 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-11T07:33:10.962 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-11T07:33:10.962 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-11T07:33:10.962 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-11T07:33:10.962 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-11T07:33:10.962 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-11T07:33:10.962 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-11T07:33:10.962 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.compression_opts.level: 32767 2024-09-11T07:33:10.962 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-11T07:33:10.962 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-11T07:33:10.962 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-11T07:33:10.962 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-11T07:33:10.963 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.compression_opts.enabled: false 2024-09-11T07:33:10.963 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-11T07:33:10.963 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-11T07:33:10.963 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-11T07:33:10.963 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-11T07:33:10.963 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-11T07:33:10.963 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-11T07:33:10.963 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-11T07:33:10.963 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-11T07:33:10.963 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-11T07:33:10.963 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-11T07:33:10.963 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-11T07:33:10.963 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-11T07:33:10.963 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-11T07:33:10.964 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-11T07:33:10.964 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-11T07:33:10.964 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-11T07:33:10.964 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-11T07:33:10.964 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.arena_block_size: 4194304 2024-09-11T07:33:10.964 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-11T07:33:10.964 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-11T07:33:10.964 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-09-11T07:33:10.964 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-11T07:33:10.964 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-11T07:33:10.964 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-11T07:33:10.964 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-11T07:33:10.964 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-11T07:33:10.965 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-11T07:33:10.965 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-11T07:33:10.969 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-11T07:33:10.969 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-11T07:33:10.969 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-11T07:33:10.969 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-11T07:33:10.969 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-11T07:33:10.969 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.inplace_update_support: 0 2024-09-11T07:33:10.969 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-11T07:33:10.969 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-11T07:33:10.969 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-11T07:33:10.970 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-11T07:33:10.970 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.bloom_locality: 0 2024-09-11T07:33:10.970 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.max_successive_merges: 0 2024-09-11T07:33:10.970 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-11T07:33:10.970 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-11T07:33:10.970 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.force_consistency_checks: 1 2024-09-11T07:33:10.970 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-11T07:33:10.970 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.ttl: 2592000 2024-09-11T07:33:10.970 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-11T07:33:10.970 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.enable_blob_files: false 2024-09-11T07:33:10.970 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.min_blob_size: 0 2024-09-11T07:33:10.970 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.blob_file_size: 268435456 2024-09-11T07:33:10.970 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-11T07:33:10.971 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-11T07:33:10.971 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-11T07:33:10.971 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: [db/version_set.cc:4764] Recovered from manifest file:/var/lib/ceph/mon/ceph-b/store.db/MANIFEST-000003 succeeded,manifest_file_number is 3, next_file_number is 5, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-09-11T07:33:10.971 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: [db/version_set.cc:4779] Column family [default] (ID 0), log number is 0 2024-09-11T07:33:10.971 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: [db/version_set.cc:4082] Creating manifest 7 2024-09-11T07:33:10.971 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726039990593542, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-09-11T07:33:10.971 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: [db/db_impl/db_impl_open.cc:845] Recovering log #4 mode 2 2024-09-11T07:33:10.971 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 3 rocksdb: [table/block_based/filter_policy.cc:991] Using legacy Bloom filter with high (20) bits/key. Dramatic filter space and/or accuracy improvement is available with format_version>=5. 2024-09-11T07:33:10.971 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726039990593967, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 8, "file_size": 1571, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 523, "index_size": 31, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 69, "raw_key_size": 115, "raw_average_key_size": 23, "raw_value_size": 401, "raw_average_value_size": 80, "num_data_blocks": 1, "num_entries": 5, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; ", "creation_time": 1726039990, "oldest_key_time": 0, "file_creation_time": 0, "db_id": "52b55b3d-6ce0-4a08-b4dc-1125af56b82d", "db_session_id": "LYS9EPL3PJ2BD4B07UTD"}} 2024-09-11T07:33:10.971 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: [db/version_set.cc:4082] Creating manifest 9 2024-09-11T07:33:10.971 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726039990594804, "job": 1, "event": "recovery_finished"} 2024-09-11T07:33:10.971 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.591+0000 7feea8835900 4 rocksdb: [file/delete_scheduler.cc:69] Deleted file /var/lib/ceph/mon/ceph-b/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-11T07:33:10.972 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.595+0000 7feea8835900 4 rocksdb: [db/db_impl/db_impl_open.cc:1700] SstFileManager instance 0x55e4878ce700 2024-09-11T07:33:10.972 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.595+0000 7feea8835900 4 rocksdb: DB pointer 0x55e48789c000 2024-09-11T07:33:10.972 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.595+0000 7fee9e601640 4 rocksdb: [db/db_impl/db_impl.cc:901] ------- DUMPING STATS ------- 2024-09-11T07:33:10.972 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.595+0000 7fee9e601640 4 rocksdb: [db/db_impl/db_impl.cc:903] 2024-09-11T07:33:10.972 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: ** DB Stats ** 2024-09-11T07:33:10.972 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-11T07:33:10.972 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-11T07:33:10.972 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-11T07:33:10.972 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-11T07:33:10.972 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-11T07:33:10.972 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-09-11T07:33:10.972 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-11T07:33:10.972 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: ** Compaction Stats [default] ** 2024-09-11T07:33:10.973 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-09-11T07:33:10.973 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-11T07:33:10.973 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: L0 1/0 1.53 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.7 0.00 0.00 1 0.000 0 0 2024-09-11T07:33:10.973 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: Sum 1/0 1.53 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.7 0.00 0.00 1 0.000 0 0 2024-09-11T07:33:10.973 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.7 0.00 0.00 1 0.000 0 0 2024-09-11T07:33:10.973 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: ** Compaction Stats [default] ** 2024-09-11T07:33:10.973 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-09-11T07:33:10.973 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-11T07:33:10.973 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.7 0.00 0.00 1 0.000 0 0 2024-09-11T07:33:10.973 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-11T07:33:10.973 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-11T07:33:10.973 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-11T07:33:10.974 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: AddFile(Total Files): cumulative 0, interval 0 2024-09-11T07:33:10.974 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-11T07:33:10.974 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: AddFile(Keys): cumulative 0, interval 0 2024-09-11T07:33:10.974 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: Cumulative compaction: 0.00 GB write, 0.29 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-11T07:33:10.974 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: Interval compaction: 0.00 GB write, 0.29 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-11T07:33:10.974 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-11T07:33:10.974 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: ** File Read Latency Histogram By Level [default] ** 2024-09-11T07:33:10.974 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: ** Compaction Stats [default] ** 2024-09-11T07:33:10.974 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-09-11T07:33:10.974 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-11T07:33:10.974 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: L0 1/0 1.53 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.7 0.00 0.00 1 0.000 0 0 2024-09-11T07:33:10.974 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: Sum 1/0 1.53 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.7 0.00 0.00 1 0.000 0 0 2024-09-11T07:33:10.974 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2024-09-11T07:33:10.974 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: ** Compaction Stats [default] ** 2024-09-11T07:33:10.975 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-09-11T07:33:10.975 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-11T07:33:10.975 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.7 0.00 0.00 1 0.000 0 0 2024-09-11T07:33:10.975 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-11T07:33:10.975 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-11T07:33:10.975 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-11T07:33:10.975 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: AddFile(Total Files): cumulative 0, interval 0 2024-09-11T07:33:10.975 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-11T07:33:10.975 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: AddFile(Keys): cumulative 0, interval 0 2024-09-11T07:33:10.975 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: Cumulative compaction: 0.00 GB write, 0.29 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-11T07:33:10.975 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-11T07:33:10.975 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-11T07:33:10.975 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: ** File Read Latency Histogram By Level [default] ** 2024-09-11T07:33:10.975 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.595+0000 7feea8835900 0 mon.b does not exist in monmap, will attempt to join an existing cluster 2024-09-11T07:33:10.976 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.595+0000 7feea8835900 0 using public_addr v2:172.21.15.150:0/0 -> [v2:172.21.15.150:3300/0,v1:172.21.15.150:6789/0] 2024-09-11T07:33:10.976 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.595+0000 7feea8835900 0 starting mon.b rank -1 at public addrs [v2:172.21.15.150:3300/0,v1:172.21.15.150:6789/0] at bind addrs [v2:172.21.15.150:3300/0,v1:172.21.15.150:6789/0] mon_data /var/lib/ceph/mon/ceph-b fsid 1973416c-700f-11ef-bcea-c7b262605968 2024-09-11T07:33:10.976 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.595+0000 7feea8835900 1 mon.b@-1(???) e0 preinit fsid 1973416c-700f-11ef-bcea-c7b262605968 2024-09-11T07:33:10.976 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.619+0000 7feea1607640 0 mon.b@-1(synchronizing).mds e1 new map 2024-09-11T07:33:10.976 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.619+0000 7feea1607640 0 mon.b@-1(synchronizing).mds e1 print_map 2024-09-11T07:33:10.976 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: e1 2024-09-11T07:33:10.976 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-11T07:33:10.976 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2} 2024-09-11T07:33:10.976 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: legacy client fscid: -1 2024-09-11T07:33:10.976 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: 2024-09-11T07:33:10.976 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: No filesystems configured 2024-09-11T07:33:10.976 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.619+0000 7feea1607640 1 mon.b@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-09-11T07:33:10.976 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.619+0000 7feea1607640 1 mon.b@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-09-11T07:33:10.977 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.619+0000 7feea1607640 1 mon.b@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-09-11T07:33:10.977 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.619+0000 7feea1607640 1 mon.b@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-09-11T07:33:10.977 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.619+0000 7feea1607640 1 mon.b@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-09-11T07:33:10.977 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.623+0000 7feea1607640 1 mon.b@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-09-11T07:33:10.977 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.623+0000 7feea1607640 0 mon.b@-1(synchronizing).osd e4 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-11T07:33:10.977 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.623+0000 7feea1607640 0 mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-11T07:33:10.977 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.623+0000 7feea1607640 0 mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-11T07:33:10.977 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.623+0000 7feea1607640 0 mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-11T07:33:10.977 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:31:54.998856+0000 mgr.a (mgr.14150) 12 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.977 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:31:56.999392+0000 mgr.a (mgr.14150) 13 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.977 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:31:58.999810+0000 mgr.a (mgr.14150) 14 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.977 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:01.000203+0000 mgr.a (mgr.14150) 15 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.978 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:01.148131+0000 mgr.a (mgr.14150) 16 : audit [DBG] from='client.14174 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:33:10.978 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:01.153421+0000 mon.a (mon.0) 102 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.978 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:01.154812+0000 mon.a (mon.0) 103 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:33:10.978 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:01.157880+0000 mon.a (mon.0) 104 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:10.978 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:01.159389+0000 mon.a (mon.0) 105 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:33:10.978 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cephadm 2024-09-11T07:32:01.161553+0000 mgr.a (mgr.14150) 17 : cephadm [INF] Updating smithi115:/etc/ceph/ceph.conf 2024-09-11T07:33:10.978 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cephadm 2024-09-11T07:32:01.274317+0000 mgr.a (mgr.14150) 18 : cephadm [INF] Updating smithi115:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T07:33:10.978 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cephadm 2024-09-11T07:32:01.386214+0000 mgr.a (mgr.14150) 19 : cephadm [INF] Updating smithi115:/etc/ceph/ceph.client.admin.keyring 2024-09-11T07:33:10.978 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cephadm 2024-09-11T07:32:01.549618+0000 mgr.a (mgr.14150) 20 : cephadm [INF] Updating smithi115:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-11T07:33:10.978 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:01.674846+0000 mon.a (mon.0) 106 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.978 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:01.680208+0000 mon.a (mon.0) 107 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.979 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:01.685559+0000 mon.a (mon.0) 108 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.979 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:03.000647+0000 mgr.a (mgr.14150) 21 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.979 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:05.001163+0000 mgr.a (mgr.14150) 22 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.979 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:07.001611+0000 mgr.a (mgr.14150) 23 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.979 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:09.002051+0000 mgr.a (mgr.14150) 24 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.979 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:09.987285+0000 mgr.a (mgr.14150) 25 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi150", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:33:10.979 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:11.002440+0000 mgr.a (mgr.14150) 26 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.979 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cephadm 2024-09-11T07:32:11.207011+0000 mgr.a (mgr.14150) 27 : cephadm [INF] Deploying cephadm binary to smithi150 2024-09-11T07:33:10.979 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:13.002821+0000 mgr.a (mgr.14150) 28 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.979 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:13.747958+0000 mon.a (mon.0) 109 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.979 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:13.749502+0000 mon.a (mon.0) 110 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:33:10.979 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:14.047261+0000 mon.a (mon.0) 111 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.979 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cephadm 2024-09-11T07:32:13.748606+0000 mgr.a (mgr.14150) 29 : cephadm [INF] Added host smithi150 2024-09-11T07:33:10.980 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:15.003220+0000 mgr.a (mgr.14150) 30 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.980 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:15.345337+0000 mon.a (mon.0) 112 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.980 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:16.010411+0000 mon.a (mon.0) 113 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.980 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:17.003635+0000 mgr.a (mgr.14150) 31 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.980 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:19.004062+0000 mgr.a (mgr.14150) 32 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.980 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:21.004538+0000 mgr.a (mgr.14150) 33 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.980 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:22.374233+0000 mon.a (mon.0) 114 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.980 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:22.379177+0000 mon.a (mon.0) 115 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.980 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:22.385125+0000 mon.a (mon.0) 116 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.980 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:22.389163+0000 mon.a (mon.0) 117 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.980 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:22.390364+0000 mon.a (mon.0) 118 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi150", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:33:10.980 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:22.391814+0000 mon.a (mon.0) 119 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:10.980 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:22.393086+0000 mon.a (mon.0) 120 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:33:10.981 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cephadm 2024-09-11T07:32:22.395046+0000 mgr.a (mgr.14150) 34 : cephadm [INF] Updating smithi150:/etc/ceph/ceph.conf 2024-09-11T07:33:10.981 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cephadm 2024-09-11T07:32:22.522168+0000 mgr.a (mgr.14150) 35 : cephadm [INF] Updating smithi150:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T07:33:10.981 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:22.625217+0000 mgr.a (mgr.14150) 36 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T07:33:10.981 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cephadm 2024-09-11T07:32:22.648660+0000 mgr.a (mgr.14150) 37 : cephadm [INF] Updating smithi150:/etc/ceph/ceph.client.admin.keyring 2024-09-11T07:33:10.981 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:22.911092+0000 mon.a (mon.0) 121 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.981 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:22.915464+0000 mon.a (mon.0) 122 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.981 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:22.923999+0000 mon.a (mon.0) 123 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.981 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cephadm 2024-09-11T07:32:22.774791+0000 mgr.a (mgr.14150) 38 : cephadm [INF] Updating smithi150:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-11T07:33:10.981 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:23.004984+0000 mgr.a (mgr.14150) 39 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.982 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:25.005414+0000 mgr.a (mgr.14150) 40 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.982 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:27.005838+0000 mgr.a (mgr.14150) 41 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.982 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:29.006230+0000 mgr.a (mgr.14150) 42 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.982 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:31.006675+0000 mgr.a (mgr.14150) 43 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.982 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:31.613504+0000 mgr.a (mgr.14150) 44 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi181", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:33:10.982 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cephadm 2024-09-11T07:32:32.850598+0000 mgr.a (mgr.14150) 45 : cephadm [INF] Deploying cephadm binary to smithi181 2024-09-11T07:33:10.982 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:33.007083+0000 mgr.a (mgr.14150) 46 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.982 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:35.007469+0000 mgr.a (mgr.14150) 47 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.982 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:35.445991+0000 mon.a (mon.0) 124 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.982 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cephadm 2024-09-11T07:32:35.446668+0000 mgr.a (mgr.14150) 48 : cephadm [INF] Added host smithi181 2024-09-11T07:33:10.982 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:35.447490+0000 mon.a (mon.0) 125 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:33:10.982 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:35.756393+0000 mon.a (mon.0) 126 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.982 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:37.007902+0000 mgr.a (mgr.14150) 49 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.982 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:37.114586+0000 mon.a (mon.0) 127 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.983 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:37.779836+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.983 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:39.008309+0000 mgr.a (mgr.14150) 50 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.983 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:41.008792+0000 mgr.a (mgr.14150) 51 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.983 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:43.009233+0000 mgr.a (mgr.14150) 52 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.983 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:43.847633+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.983 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:43.852284+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.983 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:43.858535+0000 mon.a (mon.0) 131 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.983 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:43.862946+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.983 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:43.864241+0000 mon.a (mon.0) 133 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi181", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:33:10.983 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:43.865909+0000 mon.a (mon.0) 134 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:10.983 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:43.867564+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:33:10.983 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cephadm 2024-09-11T07:32:43.869972+0000 mgr.a (mgr.14150) 53 : cephadm [INF] Updating smithi181:/etc/ceph/ceph.conf 2024-09-11T07:33:10.983 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cephadm 2024-09-11T07:32:44.009985+0000 mgr.a (mgr.14150) 54 : cephadm [INF] Updating smithi181:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T07:33:10.983 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cephadm 2024-09-11T07:32:44.138743+0000 mgr.a (mgr.14150) 55 : cephadm [INF] Updating smithi181:/etc/ceph/ceph.client.admin.keyring 2024-09-11T07:33:10.984 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cephadm 2024-09-11T07:32:44.256700+0000 mgr.a (mgr.14150) 56 : cephadm [INF] Updating smithi181:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-11T07:33:10.984 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:44.263621+0000 mgr.a (mgr.14150) 57 : audit [DBG] from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T07:33:10.984 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:44.385732+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.984 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:44.389830+0000 mon.a (mon.0) 137 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.984 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:44.395514+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.984 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:45.009677+0000 mgr.a (mgr.14150) 58 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.984 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:47.010106+0000 mgr.a (mgr.14150) 59 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.984 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:49.010516+0000 mgr.a (mgr.14150) 60 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.984 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:51.010938+0000 mgr.a (mgr.14150) 61 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.984 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:53.029556+0000 mon.a (mon.0) 139 : audit [INF] from='client.? 172.21.15.115:0/2906320618' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-11T07:33:10.984 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:53.011374+0000 mgr.a (mgr.14150) 62 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.984 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:53.412943+0000 mon.a (mon.0) 140 : audit [INF] from='client.? 172.21.15.115:0/2906320618' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-11T07:33:10.984 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:53.413059+0000 mon.a (mon.0) 141 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-11T07:33:10.985 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:55.011792+0000 mgr.a (mgr.14150) 63 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.985 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:57.012186+0000 mgr.a (mgr.14150) 64 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.985 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:58.328576+0000 mon.a (mon.0) 142 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.985 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:58.330028+0000 mon.a (mon.0) 143 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:33:10.985 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:58.333318+0000 mon.a (mon.0) 144 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:10.985 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:58.335285+0000 mon.a (mon.0) 145 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:33:10.985 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:58.345869+0000 mon.a (mon.0) 146 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.985 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:58.349686+0000 mon.a (mon.0) 147 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-11T07:33:10.985 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:58.351243+0000 mon.a (mon.0) 148 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:10.985 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:32:58.317809+0000 mgr.a (mgr.14150) 65 : audit [DBG] from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi115:172.21.15.115=a;smithi150:172.21.15.150=b;smithi181:172.21.15.181=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:33:10.985 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cephadm 2024-09-11T07:32:58.323013+0000 mgr.a (mgr.14150) 66 : cephadm [INF] Saving service mon spec with placement smithi115:172.21.15.115=a;smithi150:172.21.15.150=b;smithi181:172.21.15.181=c;count:3 2024-09-11T07:33:10.985 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cephadm 2024-09-11T07:32:58.352951+0000 mgr.a (mgr.14150) 67 : cephadm [INF] Deploying daemon mon.c on smithi181 2024-09-11T07:33:10.985 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:32:59.012585+0000 mgr.a (mgr.14150) 68 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.986 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:33:01.013066+0000 mgr.a (mgr.14150) 69 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.986 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: cluster 2024-09-11T07:33:03.013531+0000 mgr.a (mgr.14150) 70 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:10.986 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:33:04.738680+0000 mon.a (mon.0) 149 : audit [DBG] from='client.? 172.21.15.181:0/3675672049' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T07:33:10.986 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:33:04.774896+0000 mon.a (mon.0) 150 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.986 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:33:04.779808+0000 mon.a (mon.0) 151 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.986 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:33:04.786075+0000 mon.a (mon.0) 152 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:10.986 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:33:04.787239+0000 mon.a (mon.0) 153 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-11T07:33:10.986 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: audit 2024-09-11T07:33:04.788858+0000 mon.a (mon.0) 154 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:10.986 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:10 smithi150 bash[22110]: debug 2024-09-11T07:33:10.631+0000 7feea1607640 1 mon.b@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2024-09-11T07:33:11.558 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:11 smithi181 bash[22002]: audit 2024-09-11T07:33:06.209325+0000 mon.a (mon.0) 156 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-11T07:33:11.558 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:11 smithi181 bash[22002]: cluster 2024-09-11T07:33:06.209858+0000 mon.a (mon.0) 157 : cluster [INF] mon.a calling monitor election 2024-09-11T07:33:11.558 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:11 smithi181 bash[22002]: audit 2024-09-11T07:33:06.211967+0000 mon.a (mon.0) 158 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:33:11.558 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:11 smithi181 bash[22002]: cluster 2024-09-11T07:33:07.014300+0000 mgr.a (mgr.14150) 73 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:11.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:11 smithi181 bash[22002]: audit 2024-09-11T07:33:07.203535+0000 mon.a (mon.0) 159 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:33:11.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:11 smithi181 bash[22002]: audit 2024-09-11T07:33:08.203512+0000 mon.a (mon.0) 160 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:33:11.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:11 smithi181 bash[22002]: cluster 2024-09-11T07:33:08.206261+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-11T07:33:11.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:11 smithi181 bash[22002]: cluster 2024-09-11T07:33:09.014636+0000 mgr.a (mgr.14150) 74 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:11.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:11 smithi181 bash[22002]: audit 2024-09-11T07:33:09.203829+0000 mon.a (mon.0) 161 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:33:11.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:11 smithi181 bash[22002]: audit 2024-09-11T07:33:10.204206+0000 mon.a (mon.0) 162 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:33:11.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:11 smithi181 bash[22002]: audit 2024-09-11T07:33:10.640033+0000 mon.a (mon.0) 163 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:11.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:11 smithi181 bash[22002]: audit 2024-09-11T07:33:11.204348+0000 mon.a (mon.0) 164 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:33:11.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:11 smithi181 bash[22002]: cluster 2024-09-11T07:33:11.233079+0000 mon.a (mon.0) 165 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-11T07:33:11.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:11 smithi181 bash[22002]: cluster 2024-09-11T07:33:11.239171+0000 mon.a (mon.0) 166 : cluster [DBG] monmap e2: 2 mons at {a=[v2:172.21.15.115:3300/0,v1:172.21.15.115:6789/0],c=[v2:172.21.15.181:3300/0,v1:172.21.15.181:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-11T07:33:11.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:11 smithi181 bash[22002]: cluster 2024-09-11T07:33:11.240253+0000 mon.a (mon.0) 167 : cluster [DBG] fsmap 2024-09-11T07:33:11.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:11 smithi181 bash[22002]: cluster 2024-09-11T07:33:11.240310+0000 mon.a (mon.0) 168 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-11T07:33:11.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:11 smithi181 bash[22002]: cluster 2024-09-11T07:33:11.240590+0000 mon.a (mon.0) 169 : cluster [DBG] mgrmap e13: a(active, since 102s) 2024-09-11T07:33:11.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:11 smithi181 bash[22002]: cluster 2024-09-11T07:33:11.240844+0000 mon.a (mon.0) 170 : cluster [INF] overall HEALTH_OK 2024-09-11T07:33:11.560 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:11 smithi181 bash[22002]: audit 2024-09-11T07:33:11.247497+0000 mon.a (mon.0) 171 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:11.560 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:11 smithi181 bash[22002]: audit 2024-09-11T07:33:11.253766+0000 mon.a (mon.0) 172 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:11.560 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:11 smithi181 bash[22002]: audit 2024-09-11T07:33:11.260851+0000 mon.a (mon.0) 173 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:11.560 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:11 smithi181 bash[22002]: audit 2024-09-11T07:33:11.266077+0000 mon.a (mon.0) 174 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:11.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:11 smithi115 bash[18678]: audit 2024-09-11T07:33:06.209325+0000 mon.a (mon.0) 156 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-11T07:33:11.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:11 smithi115 bash[18678]: cluster 2024-09-11T07:33:06.209858+0000 mon.a (mon.0) 157 : cluster [INF] mon.a calling monitor election 2024-09-11T07:33:11.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:11 smithi115 bash[18678]: audit 2024-09-11T07:33:06.211967+0000 mon.a (mon.0) 158 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:33:11.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:11 smithi115 bash[18678]: cluster 2024-09-11T07:33:07.014300+0000 mgr.a (mgr.14150) 73 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:11.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:11 smithi115 bash[18678]: audit 2024-09-11T07:33:07.203535+0000 mon.a (mon.0) 159 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:33:11.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:11 smithi115 bash[18678]: audit 2024-09-11T07:33:08.203512+0000 mon.a (mon.0) 160 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:33:11.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:11 smithi115 bash[18678]: cluster 2024-09-11T07:33:08.206261+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-11T07:33:11.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:11 smithi115 bash[18678]: cluster 2024-09-11T07:33:09.014636+0000 mgr.a (mgr.14150) 74 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:11.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:11 smithi115 bash[18678]: audit 2024-09-11T07:33:09.203829+0000 mon.a (mon.0) 161 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:33:11.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:11 smithi115 bash[18678]: audit 2024-09-11T07:33:10.204206+0000 mon.a (mon.0) 162 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:33:11.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:11 smithi115 bash[18678]: audit 2024-09-11T07:33:10.640033+0000 mon.a (mon.0) 163 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:11.599 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:11 smithi115 bash[18678]: audit 2024-09-11T07:33:11.204348+0000 mon.a (mon.0) 164 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:33:11.599 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:11 smithi115 bash[18678]: cluster 2024-09-11T07:33:11.233079+0000 mon.a (mon.0) 165 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-11T07:33:11.599 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:11 smithi115 bash[18678]: cluster 2024-09-11T07:33:11.239171+0000 mon.a (mon.0) 166 : cluster [DBG] monmap e2: 2 mons at {a=[v2:172.21.15.115:3300/0,v1:172.21.15.115:6789/0],c=[v2:172.21.15.181:3300/0,v1:172.21.15.181:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-11T07:33:11.599 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:11 smithi115 bash[18678]: cluster 2024-09-11T07:33:11.240253+0000 mon.a (mon.0) 167 : cluster [DBG] fsmap 2024-09-11T07:33:11.599 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:11 smithi115 bash[18678]: cluster 2024-09-11T07:33:11.240310+0000 mon.a (mon.0) 168 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-11T07:33:11.599 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:11 smithi115 bash[18678]: cluster 2024-09-11T07:33:11.240590+0000 mon.a (mon.0) 169 : cluster [DBG] mgrmap e13: a(active, since 102s) 2024-09-11T07:33:11.599 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:11 smithi115 bash[18678]: cluster 2024-09-11T07:33:11.240844+0000 mon.a (mon.0) 170 : cluster [INF] overall HEALTH_OK 2024-09-11T07:33:11.600 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:11 smithi115 bash[18678]: audit 2024-09-11T07:33:11.247497+0000 mon.a (mon.0) 171 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:11.600 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:11 smithi115 bash[18678]: audit 2024-09-11T07:33:11.253766+0000 mon.a (mon.0) 172 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:11.600 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:11 smithi115 bash[18678]: audit 2024-09-11T07:33:11.260851+0000 mon.a (mon.0) 173 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:11.600 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:11 smithi115 bash[18678]: audit 2024-09-11T07:33:11.266077+0000 mon.a (mon.0) 174 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:12.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:12 smithi181 bash[22002]: cluster 2024-09-11T07:33:11.014985+0000 mgr.a (mgr.14150) 75 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:12.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:12 smithi181 bash[22002]: audit 2024-09-11T07:33:11.332021+0000 mon.a (mon.0) 175 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:33:12.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:12 smithi181 bash[22002]: audit 2024-09-11T07:33:11.640885+0000 mon.a (mon.0) 176 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:12.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:12 smithi181 bash[22002]: audit 2024-09-11T07:33:12.204299+0000 mon.a (mon.0) 177 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:33:12.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:12 smithi115 bash[18678]: cluster 2024-09-11T07:33:11.014985+0000 mgr.a (mgr.14150) 75 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:12.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:12 smithi115 bash[18678]: audit 2024-09-11T07:33:11.332021+0000 mon.a (mon.0) 175 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:33:12.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:12 smithi115 bash[18678]: audit 2024-09-11T07:33:11.640885+0000 mon.a (mon.0) 176 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:12.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:12 smithi115 bash[18678]: audit 2024-09-11T07:33:12.204299+0000 mon.a (mon.0) 177 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:33:17.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:06.209325+0000 mon.a (mon.0) 156 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-11T07:33:17.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: cluster 2024-09-11T07:33:06.209858+0000 mon.a (mon.0) 157 : cluster [INF] mon.a calling monitor election 2024-09-11T07:33:17.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:06.211967+0000 mon.a (mon.0) 158 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:33:17.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: cluster 2024-09-11T07:33:07.014300+0000 mgr.a (mgr.14150) 73 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:17.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:07.203535+0000 mon.a (mon.0) 159 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:33:17.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:08.203512+0000 mon.a (mon.0) 160 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:33:17.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: cluster 2024-09-11T07:33:08.206261+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-11T07:33:17.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: cluster 2024-09-11T07:33:09.014636+0000 mgr.a (mgr.14150) 74 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:17.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:09.203829+0000 mon.a (mon.0) 161 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:33:17.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:10.204206+0000 mon.a (mon.0) 162 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:33:17.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:10.640033+0000 mon.a (mon.0) 163 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:17.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:11.204348+0000 mon.a (mon.0) 164 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:33:17.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: cluster 2024-09-11T07:33:11.233079+0000 mon.a (mon.0) 165 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-11T07:33:17.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: cluster 2024-09-11T07:33:11.239171+0000 mon.a (mon.0) 166 : cluster [DBG] monmap e2: 2 mons at {a=[v2:172.21.15.115:3300/0,v1:172.21.15.115:6789/0],c=[v2:172.21.15.181:3300/0,v1:172.21.15.181:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-11T07:33:17.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: cluster 2024-09-11T07:33:11.240253+0000 mon.a (mon.0) 167 : cluster [DBG] fsmap 2024-09-11T07:33:17.948 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: cluster 2024-09-11T07:33:11.240310+0000 mon.a (mon.0) 168 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-11T07:33:17.948 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: cluster 2024-09-11T07:33:11.240590+0000 mon.a (mon.0) 169 : cluster [DBG] mgrmap e13: a(active, since 102s) 2024-09-11T07:33:17.948 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: cluster 2024-09-11T07:33:11.240844+0000 mon.a (mon.0) 170 : cluster [INF] overall HEALTH_OK 2024-09-11T07:33:17.948 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:11.247497+0000 mon.a (mon.0) 171 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:17.948 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:11.253766+0000 mon.a (mon.0) 172 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:17.948 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:11.260851+0000 mon.a (mon.0) 173 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:17.948 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:11.266077+0000 mon.a (mon.0) 174 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:17.948 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: cluster 2024-09-11T07:33:11.014985+0000 mgr.a (mgr.14150) 75 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:17.948 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:11.332021+0000 mon.a (mon.0) 175 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:33:17.948 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:11.640885+0000 mon.a (mon.0) 176 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:17.948 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:12.204299+0000 mon.a (mon.0) 177 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:33:17.948 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:12.647743+0000 mon.a (mon.0) 179 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-11T07:33:17.948 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: cluster 2024-09-11T07:33:12.648282+0000 mon.a (mon.0) 180 : cluster [INF] mon.a calling monitor election 2024-09-11T07:33:17.949 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: cluster 2024-09-11T07:33:12.649559+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-11T07:33:17.949 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:12.667396+0000 mon.a (mon.0) 181 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:17.949 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:12.667639+0000 mon.a (mon.0) 182 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:33:17.949 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: cluster 2024-09-11T07:33:13.015351+0000 mgr.a (mgr.14150) 76 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:17.949 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:13.640486+0000 mon.a (mon.0) 183 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:17.949 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:14.640432+0000 mon.a (mon.0) 184 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:17.949 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: cluster 2024-09-11T07:33:14.643074+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-11T07:33:17.949 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: cluster 2024-09-11T07:33:15.015703+0000 mgr.a (mgr.14150) 77 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:17.949 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:15.640755+0000 mon.a (mon.0) 185 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:17.949 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:16.640784+0000 mon.a (mon.0) 186 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:17.949 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:17.640869+0000 mon.a (mon.0) 187 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:17.950 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: cluster 2024-09-11T07:33:17.652578+0000 mon.a (mon.0) 188 : cluster [INF] mon.a calling monitor election 2024-09-11T07:33:17.950 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: cluster 2024-09-11T07:33:17.674985+0000 mon.a (mon.0) 189 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-11T07:33:17.950 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: cluster 2024-09-11T07:33:17.681379+0000 mon.a (mon.0) 190 : cluster [DBG] monmap e3: 3 mons at {a=[v2:172.21.15.115:3300/0,v1:172.21.15.115:6789/0],b=[v2:172.21.15.150:3300/0,v1:172.21.15.150:6789/0],c=[v2:172.21.15.181:3300/0,v1:172.21.15.181:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-11T07:33:17.950 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: cluster 2024-09-11T07:33:17.682514+0000 mon.a (mon.0) 191 : cluster [DBG] fsmap 2024-09-11T07:33:17.950 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: cluster 2024-09-11T07:33:17.682573+0000 mon.a (mon.0) 192 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-11T07:33:17.950 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: cluster 2024-09-11T07:33:17.682829+0000 mon.a (mon.0) 193 : cluster [DBG] mgrmap e13: a(active, since 108s) 2024-09-11T07:33:17.950 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: cluster 2024-09-11T07:33:17.683084+0000 mon.a (mon.0) 194 : cluster [INF] overall HEALTH_OK 2024-09-11T07:33:17.950 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:17.690234+0000 mon.a (mon.0) 195 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:17.950 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:17.695223+0000 mon.a (mon.0) 196 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:17.950 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:17.699724+0000 mon.a (mon.0) 197 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:17.950 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:17.704263+0000 mon.a (mon.0) 198 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:17.950 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:17 smithi150 bash[22110]: audit 2024-09-11T07:33:17.709794+0000 mon.a (mon.0) 199 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:18.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:17 smithi181 bash[22002]: audit 2024-09-11T07:33:12.647743+0000 mon.a (mon.0) 179 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-11T07:33:18.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:17 smithi181 bash[22002]: cluster 2024-09-11T07:33:12.648282+0000 mon.a (mon.0) 180 : cluster [INF] mon.a calling monitor election 2024-09-11T07:33:18.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:17 smithi181 bash[22002]: cluster 2024-09-11T07:33:12.649559+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-11T07:33:18.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:17 smithi181 bash[22002]: audit 2024-09-11T07:33:12.667396+0000 mon.a (mon.0) 181 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:18.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:17 smithi181 bash[22002]: audit 2024-09-11T07:33:12.667639+0000 mon.a (mon.0) 182 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:33:18.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:17 smithi181 bash[22002]: cluster 2024-09-11T07:33:13.015351+0000 mgr.a (mgr.14150) 76 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:18.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:17 smithi181 bash[22002]: audit 2024-09-11T07:33:13.640486+0000 mon.a (mon.0) 183 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:18.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:17 smithi181 bash[22002]: audit 2024-09-11T07:33:14.640432+0000 mon.a (mon.0) 184 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:18.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:17 smithi181 bash[22002]: cluster 2024-09-11T07:33:14.643074+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-11T07:33:18.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:17 smithi181 bash[22002]: cluster 2024-09-11T07:33:15.015703+0000 mgr.a (mgr.14150) 77 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:18.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:17 smithi181 bash[22002]: audit 2024-09-11T07:33:15.640755+0000 mon.a (mon.0) 185 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:18.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:17 smithi181 bash[22002]: audit 2024-09-11T07:33:16.640784+0000 mon.a (mon.0) 186 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:18.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:17 smithi181 bash[22002]: audit 2024-09-11T07:33:17.640869+0000 mon.a (mon.0) 187 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:18.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:17 smithi181 bash[22002]: cluster 2024-09-11T07:33:17.652578+0000 mon.a (mon.0) 188 : cluster [INF] mon.a calling monitor election 2024-09-11T07:33:18.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:17 smithi181 bash[22002]: cluster 2024-09-11T07:33:17.674985+0000 mon.a (mon.0) 189 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-11T07:33:18.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:17 smithi181 bash[22002]: cluster 2024-09-11T07:33:17.681379+0000 mon.a (mon.0) 190 : cluster [DBG] monmap e3: 3 mons at {a=[v2:172.21.15.115:3300/0,v1:172.21.15.115:6789/0],b=[v2:172.21.15.150:3300/0,v1:172.21.15.150:6789/0],c=[v2:172.21.15.181:3300/0,v1:172.21.15.181:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-11T07:33:18.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:17 smithi181 bash[22002]: cluster 2024-09-11T07:33:17.682514+0000 mon.a (mon.0) 191 : cluster [DBG] fsmap 2024-09-11T07:33:18.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:17 smithi181 bash[22002]: cluster 2024-09-11T07:33:17.682573+0000 mon.a (mon.0) 192 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-11T07:33:18.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:17 smithi181 bash[22002]: cluster 2024-09-11T07:33:17.682829+0000 mon.a (mon.0) 193 : cluster [DBG] mgrmap e13: a(active, since 108s) 2024-09-11T07:33:18.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:17 smithi181 bash[22002]: cluster 2024-09-11T07:33:17.683084+0000 mon.a (mon.0) 194 : cluster [INF] overall HEALTH_OK 2024-09-11T07:33:18.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:17 smithi181 bash[22002]: audit 2024-09-11T07:33:17.690234+0000 mon.a (mon.0) 195 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:18.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:17 smithi181 bash[22002]: audit 2024-09-11T07:33:17.695223+0000 mon.a (mon.0) 196 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:18.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:17 smithi181 bash[22002]: audit 2024-09-11T07:33:17.699724+0000 mon.a (mon.0) 197 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:18.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:17 smithi181 bash[22002]: audit 2024-09-11T07:33:17.704263+0000 mon.a (mon.0) 198 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:18.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:17 smithi181 bash[22002]: audit 2024-09-11T07:33:17.709794+0000 mon.a (mon.0) 199 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:18.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:17 smithi115 bash[18678]: audit 2024-09-11T07:33:12.647743+0000 mon.a (mon.0) 179 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-11T07:33:18.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:17 smithi115 bash[18678]: cluster 2024-09-11T07:33:12.648282+0000 mon.a (mon.0) 180 : cluster [INF] mon.a calling monitor election 2024-09-11T07:33:18.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:17 smithi115 bash[18678]: cluster 2024-09-11T07:33:12.649559+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-11T07:33:18.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:17 smithi115 bash[18678]: audit 2024-09-11T07:33:12.667396+0000 mon.a (mon.0) 181 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:18.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:17 smithi115 bash[18678]: audit 2024-09-11T07:33:12.667639+0000 mon.a (mon.0) 182 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:33:18.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:17 smithi115 bash[18678]: cluster 2024-09-11T07:33:13.015351+0000 mgr.a (mgr.14150) 76 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:18.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:17 smithi115 bash[18678]: audit 2024-09-11T07:33:13.640486+0000 mon.a (mon.0) 183 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:18.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:17 smithi115 bash[18678]: audit 2024-09-11T07:33:14.640432+0000 mon.a (mon.0) 184 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:18.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:17 smithi115 bash[18678]: cluster 2024-09-11T07:33:14.643074+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-11T07:33:18.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:17 smithi115 bash[18678]: cluster 2024-09-11T07:33:15.015703+0000 mgr.a (mgr.14150) 77 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:18.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:17 smithi115 bash[18678]: audit 2024-09-11T07:33:15.640755+0000 mon.a (mon.0) 185 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:18.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:17 smithi115 bash[18678]: audit 2024-09-11T07:33:16.640784+0000 mon.a (mon.0) 186 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:18.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:17 smithi115 bash[18678]: audit 2024-09-11T07:33:17.640869+0000 mon.a (mon.0) 187 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:18.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:17 smithi115 bash[18678]: cluster 2024-09-11T07:33:17.652578+0000 mon.a (mon.0) 188 : cluster [INF] mon.a calling monitor election 2024-09-11T07:33:18.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:17 smithi115 bash[18678]: cluster 2024-09-11T07:33:17.674985+0000 mon.a (mon.0) 189 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-11T07:33:18.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:17 smithi115 bash[18678]: cluster 2024-09-11T07:33:17.681379+0000 mon.a (mon.0) 190 : cluster [DBG] monmap e3: 3 mons at {a=[v2:172.21.15.115:3300/0,v1:172.21.15.115:6789/0],b=[v2:172.21.15.150:3300/0,v1:172.21.15.150:6789/0],c=[v2:172.21.15.181:3300/0,v1:172.21.15.181:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-11T07:33:18.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:17 smithi115 bash[18678]: cluster 2024-09-11T07:33:17.682514+0000 mon.a (mon.0) 191 : cluster [DBG] fsmap 2024-09-11T07:33:18.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:17 smithi115 bash[18678]: cluster 2024-09-11T07:33:17.682573+0000 mon.a (mon.0) 192 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-11T07:33:18.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:17 smithi115 bash[18678]: cluster 2024-09-11T07:33:17.682829+0000 mon.a (mon.0) 193 : cluster [DBG] mgrmap e13: a(active, since 108s) 2024-09-11T07:33:18.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:17 smithi115 bash[18678]: cluster 2024-09-11T07:33:17.683084+0000 mon.a (mon.0) 194 : cluster [INF] overall HEALTH_OK 2024-09-11T07:33:18.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:17 smithi115 bash[18678]: audit 2024-09-11T07:33:17.690234+0000 mon.a (mon.0) 195 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:18.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:17 smithi115 bash[18678]: audit 2024-09-11T07:33:17.695223+0000 mon.a (mon.0) 196 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:18.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:17 smithi115 bash[18678]: audit 2024-09-11T07:33:17.699724+0000 mon.a (mon.0) 197 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:18.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:17 smithi115 bash[18678]: audit 2024-09-11T07:33:17.704263+0000 mon.a (mon.0) 198 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:18.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:17 smithi115 bash[18678]: audit 2024-09-11T07:33:17.709794+0000 mon.a (mon.0) 199 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:18.177 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-11T07:33:18.177 INFO:teuthology.orchestra.run.smithi181.stdout:{"epoch":3,"fsid":"1973416c-700f-11ef-bcea-c7b262605968","modified":"2024-09-11T07:33:12.641337Z","created":"2024-09-11T07:30:22.567618Z","min_mon_release":17,"min_mon_release_name":"quincy","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:3300","nonce":0},{"type":"v1","addr":"172.21.15.115:6789","nonce":0}]},"addr":"172.21.15.115:6789/0","public_addr":"172.21.15.115:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:3300","nonce":0},{"type":"v1","addr":"172.21.15.181:6789","nonce":0}]},"addr":"172.21.15.181:6789/0","public_addr":"172.21.15.181:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.150:3300","nonce":0},{"type":"v1","addr":"172.21.15.150:6789","nonce":0}]},"addr":"172.21.15.150:6789/0","public_addr":"172.21.15.150:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1,2]} 2024-09-11T07:33:18.177 INFO:teuthology.orchestra.run.smithi181.stderr:dumped monmap epoch 3 2024-09-11T07:33:18.856 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-11T07:33:18.857 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph config generate-minimal-conf 2024-09-11T07:33:19.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:18 smithi181 bash[22002]: cluster 2024-09-11T07:33:17.016060+0000 mgr.a (mgr.14150) 78 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:19.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:18 smithi181 bash[22002]: audit 2024-09-11T07:33:18.085789+0000 mon.a (mon.0) 200 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:19.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:18 smithi181 bash[22002]: audit 2024-09-11T07:33:18.087288+0000 mon.a (mon.0) 201 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:33:19.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:18 smithi181 bash[22002]: cephadm 2024-09-11T07:33:18.089147+0000 mgr.a (mgr.14150) 79 : cephadm [INF] Updating smithi115:/etc/ceph/ceph.conf 2024-09-11T07:33:19.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:18 smithi181 bash[22002]: cephadm 2024-09-11T07:33:18.089952+0000 mgr.a (mgr.14150) 80 : cephadm [INF] Updating smithi150:/etc/ceph/ceph.conf 2024-09-11T07:33:19.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:18 smithi181 bash[22002]: cephadm 2024-09-11T07:33:18.090483+0000 mgr.a (mgr.14150) 81 : cephadm [INF] Updating smithi181:/etc/ceph/ceph.conf 2024-09-11T07:33:19.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:18 smithi181 bash[22002]: audit 2024-09-11T07:33:18.174881+0000 mon.a (mon.0) 202 : audit [DBG] from='client.? 172.21.15.181:0/240955624' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T07:33:19.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:18 smithi181 bash[22002]: cephadm 2024-09-11T07:33:18.267558+0000 mgr.a (mgr.14150) 82 : cephadm [INF] Updating smithi181:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T07:33:19.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:18 smithi181 bash[22002]: cephadm 2024-09-11T07:33:18.267967+0000 mgr.a (mgr.14150) 83 : cephadm [INF] Updating smithi115:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T07:33:19.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:18 smithi181 bash[22002]: cephadm 2024-09-11T07:33:18.268562+0000 mgr.a (mgr.14150) 84 : cephadm [INF] Updating smithi150:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T07:33:19.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:18 smithi181 bash[22002]: audit 2024-09-11T07:33:18.439777+0000 mon.a (mon.0) 203 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:19.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:18 smithi181 bash[22002]: audit 2024-09-11T07:33:18.443589+0000 mon.a (mon.0) 204 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:19.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:18 smithi181 bash[22002]: audit 2024-09-11T07:33:18.449831+0000 mon.a (mon.0) 205 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:19.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:18 smithi181 bash[22002]: audit 2024-09-11T07:33:18.456038+0000 mon.a (mon.0) 206 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:19.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:18 smithi181 bash[22002]: audit 2024-09-11T07:33:18.462380+0000 mon.a (mon.0) 207 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:19.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:18 smithi181 bash[22002]: audit 2024-09-11T07:33:18.468175+0000 mon.a (mon.0) 208 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:19.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:18 smithi181 bash[22002]: audit 2024-09-11T07:33:18.474495+0000 mon.a (mon.0) 209 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:19.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:18 smithi181 bash[22002]: cephadm 2024-09-11T07:33:18.535809+0000 mgr.a (mgr.14150) 85 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-11T07:33:19.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:18 smithi181 bash[22002]: audit 2024-09-11T07:33:18.536337+0000 mon.a (mon.0) 210 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-11T07:33:19.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:18 smithi181 bash[22002]: audit 2024-09-11T07:33:18.537819+0000 mon.a (mon.0) 211 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-11T07:33:19.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:18 smithi181 bash[22002]: audit 2024-09-11T07:33:18.539209+0000 mon.a (mon.0) 212 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:19.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:18 smithi181 bash[22002]: cephadm 2024-09-11T07:33:18.540596+0000 mgr.a (mgr.14150) 86 : cephadm [INF] Reconfiguring daemon mon.a on smithi115 2024-09-11T07:33:19.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:18 smithi181 bash[22002]: audit 2024-09-11T07:33:18.641184+0000 mon.a (mon.0) 213 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:19.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:18 smithi115 bash[18678]: cluster 2024-09-11T07:33:17.016060+0000 mgr.a (mgr.14150) 78 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:19.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:18 smithi115 bash[18678]: audit 2024-09-11T07:33:18.085789+0000 mon.a (mon.0) 200 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:19.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:18 smithi115 bash[18678]: audit 2024-09-11T07:33:18.087288+0000 mon.a (mon.0) 201 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:33:19.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:18 smithi115 bash[18678]: cephadm 2024-09-11T07:33:18.089147+0000 mgr.a (mgr.14150) 79 : cephadm [INF] Updating smithi115:/etc/ceph/ceph.conf 2024-09-11T07:33:19.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:18 smithi115 bash[18678]: cephadm 2024-09-11T07:33:18.089952+0000 mgr.a (mgr.14150) 80 : cephadm [INF] Updating smithi150:/etc/ceph/ceph.conf 2024-09-11T07:33:19.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:18 smithi115 bash[18678]: cephadm 2024-09-11T07:33:18.090483+0000 mgr.a (mgr.14150) 81 : cephadm [INF] Updating smithi181:/etc/ceph/ceph.conf 2024-09-11T07:33:19.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:18 smithi115 bash[18678]: audit 2024-09-11T07:33:18.174881+0000 mon.a (mon.0) 202 : audit [DBG] from='client.? 172.21.15.181:0/240955624' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T07:33:19.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:18 smithi115 bash[18678]: cephadm 2024-09-11T07:33:18.267558+0000 mgr.a (mgr.14150) 82 : cephadm [INF] Updating smithi181:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T07:33:19.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:18 smithi115 bash[18678]: cephadm 2024-09-11T07:33:18.267967+0000 mgr.a (mgr.14150) 83 : cephadm [INF] Updating smithi115:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T07:33:19.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:18 smithi115 bash[18678]: cephadm 2024-09-11T07:33:18.268562+0000 mgr.a (mgr.14150) 84 : cephadm [INF] Updating smithi150:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T07:33:19.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:18 smithi115 bash[18678]: audit 2024-09-11T07:33:18.439777+0000 mon.a (mon.0) 203 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:19.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:18 smithi115 bash[18678]: audit 2024-09-11T07:33:18.443589+0000 mon.a (mon.0) 204 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:19.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:18 smithi115 bash[18678]: audit 2024-09-11T07:33:18.449831+0000 mon.a (mon.0) 205 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:19.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:18 smithi115 bash[18678]: audit 2024-09-11T07:33:18.456038+0000 mon.a (mon.0) 206 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:19.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:18 smithi115 bash[18678]: audit 2024-09-11T07:33:18.462380+0000 mon.a (mon.0) 207 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:19.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:18 smithi115 bash[18678]: audit 2024-09-11T07:33:18.468175+0000 mon.a (mon.0) 208 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:19.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:18 smithi115 bash[18678]: audit 2024-09-11T07:33:18.474495+0000 mon.a (mon.0) 209 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:19.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:18 smithi115 bash[18678]: cephadm 2024-09-11T07:33:18.535809+0000 mgr.a (mgr.14150) 85 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-11T07:33:19.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:18 smithi115 bash[18678]: audit 2024-09-11T07:33:18.536337+0000 mon.a (mon.0) 210 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-11T07:33:19.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:18 smithi115 bash[18678]: audit 2024-09-11T07:33:18.537819+0000 mon.a (mon.0) 211 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-11T07:33:19.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:18 smithi115 bash[18678]: audit 2024-09-11T07:33:18.539209+0000 mon.a (mon.0) 212 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:19.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:18 smithi115 bash[18678]: cephadm 2024-09-11T07:33:18.540596+0000 mgr.a (mgr.14150) 86 : cephadm [INF] Reconfiguring daemon mon.a on smithi115 2024-09-11T07:33:19.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:18 smithi115 bash[18678]: audit 2024-09-11T07:33:18.641184+0000 mon.a (mon.0) 213 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:19.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:18 smithi150 bash[22110]: cluster 2024-09-11T07:33:17.016060+0000 mgr.a (mgr.14150) 78 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:19.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:18 smithi150 bash[22110]: audit 2024-09-11T07:33:18.085789+0000 mon.a (mon.0) 200 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:19.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:18 smithi150 bash[22110]: audit 2024-09-11T07:33:18.087288+0000 mon.a (mon.0) 201 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:33:19.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:18 smithi150 bash[22110]: cephadm 2024-09-11T07:33:18.089147+0000 mgr.a (mgr.14150) 79 : cephadm [INF] Updating smithi115:/etc/ceph/ceph.conf 2024-09-11T07:33:19.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:18 smithi150 bash[22110]: cephadm 2024-09-11T07:33:18.089952+0000 mgr.a (mgr.14150) 80 : cephadm [INF] Updating smithi150:/etc/ceph/ceph.conf 2024-09-11T07:33:19.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:18 smithi150 bash[22110]: cephadm 2024-09-11T07:33:18.090483+0000 mgr.a (mgr.14150) 81 : cephadm [INF] Updating smithi181:/etc/ceph/ceph.conf 2024-09-11T07:33:19.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:18 smithi150 bash[22110]: audit 2024-09-11T07:33:18.174881+0000 mon.a (mon.0) 202 : audit [DBG] from='client.? 172.21.15.181:0/240955624' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T07:33:19.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:18 smithi150 bash[22110]: cephadm 2024-09-11T07:33:18.267558+0000 mgr.a (mgr.14150) 82 : cephadm [INF] Updating smithi181:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T07:33:19.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:18 smithi150 bash[22110]: cephadm 2024-09-11T07:33:18.267967+0000 mgr.a (mgr.14150) 83 : cephadm [INF] Updating smithi115:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T07:33:19.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:18 smithi150 bash[22110]: cephadm 2024-09-11T07:33:18.268562+0000 mgr.a (mgr.14150) 84 : cephadm [INF] Updating smithi150:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T07:33:19.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:18 smithi150 bash[22110]: audit 2024-09-11T07:33:18.439777+0000 mon.a (mon.0) 203 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:19.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:18 smithi150 bash[22110]: audit 2024-09-11T07:33:18.443589+0000 mon.a (mon.0) 204 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:19.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:18 smithi150 bash[22110]: audit 2024-09-11T07:33:18.449831+0000 mon.a (mon.0) 205 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:19.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:18 smithi150 bash[22110]: audit 2024-09-11T07:33:18.456038+0000 mon.a (mon.0) 206 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:19.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:18 smithi150 bash[22110]: audit 2024-09-11T07:33:18.462380+0000 mon.a (mon.0) 207 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:19.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:18 smithi150 bash[22110]: audit 2024-09-11T07:33:18.468175+0000 mon.a (mon.0) 208 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:19.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:18 smithi150 bash[22110]: audit 2024-09-11T07:33:18.474495+0000 mon.a (mon.0) 209 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:19.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:18 smithi150 bash[22110]: cephadm 2024-09-11T07:33:18.535809+0000 mgr.a (mgr.14150) 85 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-11T07:33:19.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:18 smithi150 bash[22110]: audit 2024-09-11T07:33:18.536337+0000 mon.a (mon.0) 210 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-11T07:33:19.198 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:18 smithi150 bash[22110]: audit 2024-09-11T07:33:18.537819+0000 mon.a (mon.0) 211 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-11T07:33:19.198 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:18 smithi150 bash[22110]: audit 2024-09-11T07:33:18.539209+0000 mon.a (mon.0) 212 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:19.198 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:18 smithi150 bash[22110]: cephadm 2024-09-11T07:33:18.540596+0000 mgr.a (mgr.14150) 86 : cephadm [INF] Reconfiguring daemon mon.a on smithi115 2024-09-11T07:33:19.198 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:18 smithi150 bash[22110]: audit 2024-09-11T07:33:18.641184+0000 mon.a (mon.0) 213 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:33:20.058 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:19 smithi181 bash[22002]: cluster 2024-09-11T07:33:19.016441+0000 mgr.a (mgr.14150) 87 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:20.084 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:19 smithi115 bash[18678]: cluster 2024-09-11T07:33:19.016441+0000 mgr.a (mgr.14150) 87 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:20.195 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:19 smithi150 bash[22110]: cluster 2024-09-11T07:33:19.016441+0000 mgr.a (mgr.14150) 87 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:22.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:21 smithi181 bash[22002]: audit 2024-09-11T07:33:20.753309+0000 mon.a (mon.0) 214 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:22.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:21 smithi181 bash[22002]: audit 2024-09-11T07:33:20.760112+0000 mon.a (mon.0) 215 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:22.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:21 smithi181 bash[22002]: cephadm 2024-09-11T07:33:20.761114+0000 mgr.a (mgr.14150) 88 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-11T07:33:22.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:21 smithi181 bash[22002]: audit 2024-09-11T07:33:20.761555+0000 mon.a (mon.0) 216 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-11T07:33:22.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:21 smithi181 bash[22002]: audit 2024-09-11T07:33:20.762908+0000 mon.a (mon.0) 217 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-11T07:33:22.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:21 smithi181 bash[22002]: audit 2024-09-11T07:33:20.764094+0000 mon.a (mon.0) 218 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:22.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:21 smithi181 bash[22002]: cephadm 2024-09-11T07:33:20.765325+0000 mgr.a (mgr.14150) 89 : cephadm [INF] Reconfiguring daemon mon.b on smithi150 2024-09-11T07:33:22.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:21 smithi181 bash[22002]: cluster 2024-09-11T07:33:21.016842+0000 mgr.a (mgr.14150) 90 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:22.088 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:21 smithi150 bash[22110]: audit 2024-09-11T07:33:20.753309+0000 mon.a (mon.0) 214 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:22.088 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:21 smithi150 bash[22110]: audit 2024-09-11T07:33:20.760112+0000 mon.a (mon.0) 215 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:22.088 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:21 smithi150 bash[22110]: cephadm 2024-09-11T07:33:20.761114+0000 mgr.a (mgr.14150) 88 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-11T07:33:22.088 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:21 smithi150 bash[22110]: audit 2024-09-11T07:33:20.761555+0000 mon.a (mon.0) 216 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-11T07:33:22.088 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:21 smithi150 bash[22110]: audit 2024-09-11T07:33:20.762908+0000 mon.a (mon.0) 217 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-11T07:33:22.088 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:21 smithi150 bash[22110]: audit 2024-09-11T07:33:20.764094+0000 mon.a (mon.0) 218 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:22.088 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:21 smithi150 bash[22110]: cephadm 2024-09-11T07:33:20.765325+0000 mgr.a (mgr.14150) 89 : cephadm [INF] Reconfiguring daemon mon.b on smithi150 2024-09-11T07:33:22.088 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:21 smithi150 bash[22110]: cluster 2024-09-11T07:33:21.016842+0000 mgr.a (mgr.14150) 90 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:22.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:21 smithi115 bash[18678]: audit 2024-09-11T07:33:20.753309+0000 mon.a (mon.0) 214 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:22.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:21 smithi115 bash[18678]: audit 2024-09-11T07:33:20.760112+0000 mon.a (mon.0) 215 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:22.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:21 smithi115 bash[18678]: cephadm 2024-09-11T07:33:20.761114+0000 mgr.a (mgr.14150) 88 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-11T07:33:22.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:21 smithi115 bash[18678]: audit 2024-09-11T07:33:20.761555+0000 mon.a (mon.0) 216 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-11T07:33:22.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:21 smithi115 bash[18678]: audit 2024-09-11T07:33:20.762908+0000 mon.a (mon.0) 217 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-11T07:33:22.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:21 smithi115 bash[18678]: audit 2024-09-11T07:33:20.764094+0000 mon.a (mon.0) 218 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:22.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:21 smithi115 bash[18678]: cephadm 2024-09-11T07:33:20.765325+0000 mgr.a (mgr.14150) 89 : cephadm [INF] Reconfiguring daemon mon.b on smithi150 2024-09-11T07:33:22.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:21 smithi115 bash[18678]: cluster 2024-09-11T07:33:21.016842+0000 mgr.a (mgr.14150) 90 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:23.567 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:33:24.215 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:23 smithi181 bash[22002]: audit 2024-09-11T07:33:22.957216+0000 mon.a (mon.0) 219 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:24.216 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:23 smithi181 bash[22002]: audit 2024-09-11T07:33:22.964080+0000 mon.a (mon.0) 220 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:24.216 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:23 smithi181 bash[22002]: cephadm 2024-09-11T07:33:22.965141+0000 mgr.a (mgr.14150) 91 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-11T07:33:24.216 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:23 smithi181 bash[22002]: audit 2024-09-11T07:33:22.965629+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-11T07:33:24.216 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:23 smithi181 bash[22002]: audit 2024-09-11T07:33:22.967143+0000 mon.a (mon.0) 222 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-11T07:33:24.216 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:23 smithi181 bash[22002]: audit 2024-09-11T07:33:22.968476+0000 mon.a (mon.0) 223 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:24.216 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:23 smithi181 bash[22002]: cephadm 2024-09-11T07:33:22.969841+0000 mgr.a (mgr.14150) 92 : cephadm [INF] Reconfiguring daemon mon.c on smithi181 2024-09-11T07:33:24.216 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:23 smithi181 bash[22002]: cluster 2024-09-11T07:33:23.017295+0000 mgr.a (mgr.14150) 93 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:24.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:23 smithi115 bash[18678]: audit 2024-09-11T07:33:22.957216+0000 mon.a (mon.0) 219 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:24.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:23 smithi115 bash[18678]: audit 2024-09-11T07:33:22.964080+0000 mon.a (mon.0) 220 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:24.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:23 smithi115 bash[18678]: cephadm 2024-09-11T07:33:22.965141+0000 mgr.a (mgr.14150) 91 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-11T07:33:24.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:23 smithi115 bash[18678]: audit 2024-09-11T07:33:22.965629+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-11T07:33:24.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:23 smithi115 bash[18678]: audit 2024-09-11T07:33:22.967143+0000 mon.a (mon.0) 222 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-11T07:33:24.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:23 smithi115 bash[18678]: audit 2024-09-11T07:33:22.968476+0000 mon.a (mon.0) 223 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:24.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:23 smithi115 bash[18678]: cephadm 2024-09-11T07:33:22.969841+0000 mgr.a (mgr.14150) 92 : cephadm [INF] Reconfiguring daemon mon.c on smithi181 2024-09-11T07:33:24.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:23 smithi115 bash[18678]: cluster 2024-09-11T07:33:23.017295+0000 mgr.a (mgr.14150) 93 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:24.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:23 smithi150 bash[22110]: audit 2024-09-11T07:33:22.957216+0000 mon.a (mon.0) 219 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:24.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:23 smithi150 bash[22110]: audit 2024-09-11T07:33:22.964080+0000 mon.a (mon.0) 220 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:24.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:23 smithi150 bash[22110]: cephadm 2024-09-11T07:33:22.965141+0000 mgr.a (mgr.14150) 91 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-11T07:33:24.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:23 smithi150 bash[22110]: audit 2024-09-11T07:33:22.965629+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-11T07:33:24.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:23 smithi150 bash[22110]: audit 2024-09-11T07:33:22.967143+0000 mon.a (mon.0) 222 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-11T07:33:24.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:23 smithi150 bash[22110]: audit 2024-09-11T07:33:22.968476+0000 mon.a (mon.0) 223 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:24.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:23 smithi150 bash[22110]: cephadm 2024-09-11T07:33:22.969841+0000 mgr.a (mgr.14150) 92 : cephadm [INF] Reconfiguring daemon mon.c on smithi181 2024-09-11T07:33:24.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:23 smithi150 bash[22110]: cluster 2024-09-11T07:33:23.017295+0000 mgr.a (mgr.14150) 93 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:26.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:25 smithi115 bash[18678]: audit 2024-09-11T07:33:24.926696+0000 mon.a (mon.0) 224 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:26.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:25 smithi115 bash[18678]: audit 2024-09-11T07:33:24.934250+0000 mon.a (mon.0) 225 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:26.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:25 smithi115 bash[18678]: audit 2024-09-11T07:33:24.936102+0000 mon.a (mon.0) 226 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:33:26.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:25 smithi115 bash[18678]: audit 2024-09-11T07:33:24.939480+0000 mon.a (mon.0) 227 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:26.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:25 smithi115 bash[18678]: audit 2024-09-11T07:33:24.941183+0000 mon.a (mon.0) 228 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:33:26.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:25 smithi115 bash[18678]: audit 2024-09-11T07:33:24.947837+0000 mon.a (mon.0) 229 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:26.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:25 smithi115 bash[18678]: cluster 2024-09-11T07:33:25.017757+0000 mgr.a (mgr.14150) 94 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:26.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:25 smithi150 bash[22110]: audit 2024-09-11T07:33:24.926696+0000 mon.a (mon.0) 224 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:26.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:25 smithi150 bash[22110]: audit 2024-09-11T07:33:24.934250+0000 mon.a (mon.0) 225 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:26.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:25 smithi150 bash[22110]: audit 2024-09-11T07:33:24.936102+0000 mon.a (mon.0) 226 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:33:26.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:25 smithi150 bash[22110]: audit 2024-09-11T07:33:24.939480+0000 mon.a (mon.0) 227 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:26.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:25 smithi150 bash[22110]: audit 2024-09-11T07:33:24.941183+0000 mon.a (mon.0) 228 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:33:26.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:25 smithi150 bash[22110]: audit 2024-09-11T07:33:24.947837+0000 mon.a (mon.0) 229 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:26.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:25 smithi150 bash[22110]: cluster 2024-09-11T07:33:25.017757+0000 mgr.a (mgr.14150) 94 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:26.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:25 smithi181 bash[22002]: audit 2024-09-11T07:33:24.926696+0000 mon.a (mon.0) 224 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:26.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:25 smithi181 bash[22002]: audit 2024-09-11T07:33:24.934250+0000 mon.a (mon.0) 225 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:26.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:25 smithi181 bash[22002]: audit 2024-09-11T07:33:24.936102+0000 mon.a (mon.0) 226 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:33:26.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:25 smithi181 bash[22002]: audit 2024-09-11T07:33:24.939480+0000 mon.a (mon.0) 227 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:26.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:25 smithi181 bash[22002]: audit 2024-09-11T07:33:24.941183+0000 mon.a (mon.0) 228 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:33:26.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:25 smithi181 bash[22002]: audit 2024-09-11T07:33:24.947837+0000 mon.a (mon.0) 229 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:26.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:25 smithi181 bash[22002]: cluster 2024-09-11T07:33:25.017757+0000 mgr.a (mgr.14150) 94 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:27.165 INFO:teuthology.orchestra.run.smithi115.stdout:# minimal ceph.conf for 1973416c-700f-11ef-bcea-c7b262605968 2024-09-11T07:33:27.165 INFO:teuthology.orchestra.run.smithi115.stdout:[global] 2024-09-11T07:33:27.165 INFO:teuthology.orchestra.run.smithi115.stdout: fsid = 1973416c-700f-11ef-bcea-c7b262605968 2024-09-11T07:33:27.165 INFO:teuthology.orchestra.run.smithi115.stdout: mon_host = [v2:172.21.15.115:3300/0,v1:172.21.15.115:6789/0] [v2:172.21.15.150:3300/0,v1:172.21.15.150:6789/0] [v2:172.21.15.181:3300/0,v1:172.21.15.181:6789/0] 2024-09-11T07:33:27.845 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-11T07:33:27.845 DEBUG:teuthology.orchestra.run.smithi115:> set -ex 2024-09-11T07:33:27.845 DEBUG:teuthology.orchestra.run.smithi115:> sudo dd of=/etc/ceph/ceph.conf 2024-09-11T07:33:27.862 DEBUG:teuthology.orchestra.run.smithi115:> set -ex 2024-09-11T07:33:27.863 DEBUG:teuthology.orchestra.run.smithi115:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-11T07:33:27.917 DEBUG:teuthology.orchestra.run.smithi150:> set -ex 2024-09-11T07:33:27.917 DEBUG:teuthology.orchestra.run.smithi150:> sudo dd of=/etc/ceph/ceph.conf 2024-09-11T07:33:27.934 DEBUG:teuthology.orchestra.run.smithi150:> set -ex 2024-09-11T07:33:27.934 DEBUG:teuthology.orchestra.run.smithi150:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-11T07:33:27.993 DEBUG:teuthology.orchestra.run.smithi181:> set -ex 2024-09-11T07:33:27.993 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd of=/etc/ceph/ceph.conf 2024-09-11T07:33:28.009 DEBUG:teuthology.orchestra.run.smithi181:> set -ex 2024-09-11T07:33:28.009 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-11T07:33:28.068 INFO:tasks.cephadm:Adding mgr.a on smithi115 2024-09-11T07:33:28.068 INFO:tasks.cephadm:Adding mgr.b on smithi150 2024-09-11T07:33:28.068 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph orch apply mgr '2;smithi115=a;smithi150=b' 2024-09-11T07:33:28.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:28 smithi115 bash[18678]: cluster 2024-09-11T07:33:27.018180+0000 mgr.a (mgr.14150) 95 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:28.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:28 smithi115 bash[18678]: audit 2024-09-11T07:33:27.162952+0000 mon.a (mon.0) 230 : audit [DBG] from='client.? 172.21.15.115:0/2279121327' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:28.195 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:28 smithi150 bash[22110]: cluster 2024-09-11T07:33:27.018180+0000 mgr.a (mgr.14150) 95 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:28.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:28 smithi150 bash[22110]: audit 2024-09-11T07:33:27.162952+0000 mon.a (mon.0) 230 : audit [DBG] from='client.? 172.21.15.115:0/2279121327' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:28.308 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:28 smithi181 bash[22002]: cluster 2024-09-11T07:33:27.018180+0000 mgr.a (mgr.14150) 95 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:28.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:28 smithi181 bash[22002]: audit 2024-09-11T07:33:27.162952+0000 mon.a (mon.0) 230 : audit [DBG] from='client.? 172.21.15.115:0/2279121327' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:30.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:30 smithi115 bash[18678]: cluster 2024-09-11T07:33:29.018529+0000 mgr.a (mgr.14150) 96 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:30.445 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:30 smithi150 bash[22110]: cluster 2024-09-11T07:33:29.018529+0000 mgr.a (mgr.14150) 96 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:30.558 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:30 smithi181 bash[22002]: cluster 2024-09-11T07:33:29.018529+0000 mgr.a (mgr.14150) 96 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:31.772 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.c/config 2024-09-11T07:33:32.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:32 smithi181 bash[22002]: cluster 2024-09-11T07:33:31.018945+0000 mgr.a (mgr.14150) 97 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:32.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:32 smithi115 bash[18678]: cluster 2024-09-11T07:33:31.018945+0000 mgr.a (mgr.14150) 97 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:32.445 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:32 smithi150 bash[22110]: cluster 2024-09-11T07:33:31.018945+0000 mgr.a (mgr.14150) 97 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:34.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:34 smithi115 bash[18678]: cluster 2024-09-11T07:33:33.019366+0000 mgr.a (mgr.14150) 98 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:34.445 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:34 smithi150 bash[22110]: cluster 2024-09-11T07:33:33.019366+0000 mgr.a (mgr.14150) 98 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:34.464 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:34 smithi181 bash[22002]: cluster 2024-09-11T07:33:33.019366+0000 mgr.a (mgr.14150) 98 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:34.837 INFO:teuthology.orchestra.run.smithi181.stdout:Scheduled mgr update... 2024-09-11T07:33:35.542 DEBUG:teuthology.orchestra.run.smithi150:mgr.b> sudo journalctl -f -n 0 -u ceph-1973416c-700f-11ef-bcea-c7b262605968@mgr.b.service 2024-09-11T07:33:35.545 INFO:tasks.cephadm:Deploying OSDs... 2024-09-11T07:33:35.546 DEBUG:teuthology.orchestra.run.smithi115:> set -ex 2024-09-11T07:33:35.546 DEBUG:teuthology.orchestra.run.smithi115:> dd if=/scratch_devs of=/dev/stdout 2024-09-11T07:33:35.553 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-11T07:33:35.553 DEBUG:teuthology.orchestra.run.smithi115:> stat /dev/vg_nvme/lv_1 2024-09-11T07:33:35.602 INFO:teuthology.orchestra.run.smithi115.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-11T07:33:35.602 INFO:teuthology.orchestra.run.smithi115.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T07:33:35.602 INFO:teuthology.orchestra.run.smithi115.stdout:Device: 6h/6d Inode: 358 Links: 1 2024-09-11T07:33:35.602 INFO:teuthology.orchestra.run.smithi115.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T07:33:35.602 INFO:teuthology.orchestra.run.smithi115.stdout:Access: 2024-09-11 07:22:28.651670563 +0000 2024-09-11T07:33:35.602 INFO:teuthology.orchestra.run.smithi115.stdout:Modify: 2024-09-11 07:22:28.647670654 +0000 2024-09-11T07:33:35.602 INFO:teuthology.orchestra.run.smithi115.stdout:Change: 2024-09-11 07:22:28.647670654 +0000 2024-09-11T07:33:35.602 INFO:teuthology.orchestra.run.smithi115.stdout: Birth: - 2024-09-11T07:33:35.602 DEBUG:teuthology.orchestra.run.smithi115:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-11T07:33:35.614 INFO:teuthology.orchestra.run.smithi115.stderr:1+0 records in 2024-09-11T07:33:35.614 INFO:teuthology.orchestra.run.smithi115.stderr:1+0 records out 2024-09-11T07:33:35.614 INFO:teuthology.orchestra.run.smithi115.stderr:512 bytes copied, 0.000334441 s, 1.5 MB/s 2024-09-11T07:33:35.615 DEBUG:teuthology.orchestra.run.smithi115:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-11T07:33:35.622 DEBUG:teuthology.orchestra.run.smithi115:> stat /dev/vg_nvme/lv_2 2024-09-11T07:33:35.669 INFO:teuthology.orchestra.run.smithi115.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-11T07:33:35.669 INFO:teuthology.orchestra.run.smithi115.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T07:33:35.669 INFO:teuthology.orchestra.run.smithi115.stdout:Device: 6h/6d Inode: 363 Links: 1 2024-09-11T07:33:35.670 INFO:teuthology.orchestra.run.smithi115.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T07:33:35.670 INFO:teuthology.orchestra.run.smithi115.stdout:Access: 2024-09-11 07:22:29.091660434 +0000 2024-09-11T07:33:35.670 INFO:teuthology.orchestra.run.smithi115.stdout:Modify: 2024-09-11 07:22:29.087660527 +0000 2024-09-11T07:33:35.670 INFO:teuthology.orchestra.run.smithi115.stdout:Change: 2024-09-11 07:22:29.087660527 +0000 2024-09-11T07:33:35.670 INFO:teuthology.orchestra.run.smithi115.stdout: Birth: - 2024-09-11T07:33:35.670 DEBUG:teuthology.orchestra.run.smithi115:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-11T07:33:35.683 INFO:teuthology.orchestra.run.smithi115.stderr:1+0 records in 2024-09-11T07:33:35.683 INFO:teuthology.orchestra.run.smithi115.stderr:1+0 records out 2024-09-11T07:33:35.683 INFO:teuthology.orchestra.run.smithi115.stderr:512 bytes copied, 0.000401808 s, 1.3 MB/s 2024-09-11T07:33:35.684 DEBUG:teuthology.orchestra.run.smithi115:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-11T07:33:35.693 DEBUG:teuthology.orchestra.run.smithi115:> stat /dev/vg_nvme/lv_3 2024-09-11T07:33:35.700 INFO:teuthology.orchestra.run.smithi115.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-11T07:33:35.700 INFO:teuthology.orchestra.run.smithi115.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T07:33:35.700 INFO:teuthology.orchestra.run.smithi115.stdout:Device: 6h/6d Inode: 371 Links: 1 2024-09-11T07:33:35.700 INFO:teuthology.orchestra.run.smithi115.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T07:33:35.700 INFO:teuthology.orchestra.run.smithi115.stdout:Access: 2024-09-11 07:22:29.727645795 +0000 2024-09-11T07:33:35.700 INFO:teuthology.orchestra.run.smithi115.stdout:Modify: 2024-09-11 07:22:29.515650674 +0000 2024-09-11T07:33:35.700 INFO:teuthology.orchestra.run.smithi115.stdout:Change: 2024-09-11 07:22:29.515650674 +0000 2024-09-11T07:33:35.700 INFO:teuthology.orchestra.run.smithi115.stdout: Birth: - 2024-09-11T07:33:35.701 DEBUG:teuthology.orchestra.run.smithi115:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-11T07:33:35.714 INFO:teuthology.orchestra.run.smithi115.stderr:1+0 records in 2024-09-11T07:33:35.714 INFO:teuthology.orchestra.run.smithi115.stderr:1+0 records out 2024-09-11T07:33:35.714 INFO:teuthology.orchestra.run.smithi115.stderr:512 bytes copied, 0.000397119 s, 1.3 MB/s 2024-09-11T07:33:35.716 DEBUG:teuthology.orchestra.run.smithi115:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-11T07:33:35.772 DEBUG:teuthology.orchestra.run.smithi115:> stat /dev/vg_nvme/lv_4 2024-09-11T07:33:35.779 INFO:teuthology.orchestra.run.smithi115.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-11T07:33:35.779 INFO:teuthology.orchestra.run.smithi115.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T07:33:35.779 INFO:teuthology.orchestra.run.smithi115.stdout:Device: 6h/6d Inode: 377 Links: 1 2024-09-11T07:33:35.779 INFO:teuthology.orchestra.run.smithi115.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T07:33:35.779 INFO:teuthology.orchestra.run.smithi115.stdout:Access: 2024-09-11 07:22:30.163635759 +0000 2024-09-11T07:33:35.779 INFO:teuthology.orchestra.run.smithi115.stdout:Modify: 2024-09-11 07:22:29.931641100 +0000 2024-09-11T07:33:35.779 INFO:teuthology.orchestra.run.smithi115.stdout:Change: 2024-09-11 07:22:29.931641100 +0000 2024-09-11T07:33:35.779 INFO:teuthology.orchestra.run.smithi115.stdout: Birth: - 2024-09-11T07:33:35.779 DEBUG:teuthology.orchestra.run.smithi115:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-11T07:33:35.791 INFO:teuthology.orchestra.run.smithi115.stderr:1+0 records in 2024-09-11T07:33:35.792 INFO:teuthology.orchestra.run.smithi115.stderr:1+0 records out 2024-09-11T07:33:35.792 INFO:teuthology.orchestra.run.smithi115.stderr:512 bytes copied, 0.000385522 s, 1.3 MB/s 2024-09-11T07:33:35.793 DEBUG:teuthology.orchestra.run.smithi115:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-11T07:33:35.844 DEBUG:teuthology.orchestra.run.smithi150:> set -ex 2024-09-11T07:33:35.844 DEBUG:teuthology.orchestra.run.smithi150:> dd if=/scratch_devs of=/dev/stdout 2024-09-11T07:33:35.852 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-11T07:33:35.852 DEBUG:teuthology.orchestra.run.smithi150:> stat /dev/vg_nvme/lv_1 2024-09-11T07:33:35.900 INFO:teuthology.orchestra.run.smithi150.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-11T07:33:35.900 INFO:teuthology.orchestra.run.smithi150.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T07:33:35.900 INFO:teuthology.orchestra.run.smithi150.stdout:Device: 6h/6d Inode: 369 Links: 1 2024-09-11T07:33:35.900 INFO:teuthology.orchestra.run.smithi150.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T07:33:35.900 INFO:teuthology.orchestra.run.smithi150.stdout:Access: 2024-09-11 07:22:28.745523913 +0000 2024-09-11T07:33:35.900 INFO:teuthology.orchestra.run.smithi150.stdout:Modify: 2024-09-11 07:22:28.525528977 +0000 2024-09-11T07:33:35.900 INFO:teuthology.orchestra.run.smithi150.stdout:Change: 2024-09-11 07:22:28.525528977 +0000 2024-09-11T07:33:35.900 INFO:teuthology.orchestra.run.smithi150.stdout: Birth: - 2024-09-11T07:33:35.900 DEBUG:teuthology.orchestra.run.smithi150:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-11T07:33:35.913 INFO:teuthology.orchestra.run.smithi150.stderr:1+0 records in 2024-09-11T07:33:35.913 INFO:teuthology.orchestra.run.smithi150.stderr:1+0 records out 2024-09-11T07:33:35.913 INFO:teuthology.orchestra.run.smithi150.stderr:512 bytes copied, 0.000405292 s, 1.3 MB/s 2024-09-11T07:33:35.914 DEBUG:teuthology.orchestra.run.smithi150:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-11T07:33:35.922 DEBUG:teuthology.orchestra.run.smithi150:> stat /dev/vg_nvme/lv_2 2024-09-11T07:33:35.927 INFO:teuthology.orchestra.run.smithi150.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-11T07:33:35.927 INFO:teuthology.orchestra.run.smithi150.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T07:33:35.927 INFO:teuthology.orchestra.run.smithi150.stdout:Device: 6h/6d Inode: 374 Links: 1 2024-09-11T07:33:35.927 INFO:teuthology.orchestra.run.smithi150.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T07:33:35.927 INFO:teuthology.orchestra.run.smithi150.stdout:Access: 2024-09-11 07:22:29.165514249 +0000 2024-09-11T07:33:35.927 INFO:teuthology.orchestra.run.smithi150.stdout:Modify: 2024-09-11 07:22:28.973518668 +0000 2024-09-11T07:33:35.927 INFO:teuthology.orchestra.run.smithi150.stdout:Change: 2024-09-11 07:22:28.973518668 +0000 2024-09-11T07:33:35.927 INFO:teuthology.orchestra.run.smithi150.stdout: Birth: - 2024-09-11T07:33:35.928 DEBUG:teuthology.orchestra.run.smithi150:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-11T07:33:35.983 INFO:teuthology.orchestra.run.smithi150.stderr:1+0 records in 2024-09-11T07:33:35.983 INFO:teuthology.orchestra.run.smithi150.stderr:1+0 records out 2024-09-11T07:33:35.983 INFO:teuthology.orchestra.run.smithi150.stderr:512 bytes copied, 0.000377759 s, 1.4 MB/s 2024-09-11T07:33:35.985 DEBUG:teuthology.orchestra.run.smithi150:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-11T07:33:35.993 DEBUG:teuthology.orchestra.run.smithi150:> stat /dev/vg_nvme/lv_3 2024-09-11T07:33:35.998 INFO:teuthology.orchestra.run.smithi150.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-11T07:33:35.998 INFO:teuthology.orchestra.run.smithi150.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T07:33:35.999 INFO:teuthology.orchestra.run.smithi150.stdout:Device: 6h/6d Inode: 380 Links: 1 2024-09-11T07:33:35.999 INFO:teuthology.orchestra.run.smithi150.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T07:33:35.999 INFO:teuthology.orchestra.run.smithi150.stdout:Access: 2024-09-11 07:22:29.601504216 +0000 2024-09-11T07:33:35.999 INFO:teuthology.orchestra.run.smithi150.stdout:Modify: 2024-09-11 07:22:29.397508909 +0000 2024-09-11T07:33:35.999 INFO:teuthology.orchestra.run.smithi150.stdout:Change: 2024-09-11 07:22:29.397508909 +0000 2024-09-11T07:33:35.999 INFO:teuthology.orchestra.run.smithi150.stdout: Birth: - 2024-09-11T07:33:35.999 DEBUG:teuthology.orchestra.run.smithi150:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-11T07:33:36.009 INFO:teuthology.orchestra.run.smithi150.stderr:1+0 records in 2024-09-11T07:33:36.009 INFO:teuthology.orchestra.run.smithi150.stderr:1+0 records out 2024-09-11T07:33:36.009 INFO:teuthology.orchestra.run.smithi150.stderr:512 bytes copied, 0.000345779 s, 1.5 MB/s 2024-09-11T07:33:36.010 DEBUG:teuthology.orchestra.run.smithi150:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-11T07:33:36.061 DEBUG:teuthology.orchestra.run.smithi150:> stat /dev/vg_nvme/lv_4 2024-09-11T07:33:36.067 INFO:teuthology.orchestra.run.smithi150.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-11T07:33:36.067 INFO:teuthology.orchestra.run.smithi150.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T07:33:36.067 INFO:teuthology.orchestra.run.smithi150.stdout:Device: 6h/6d Inode: 387 Links: 1 2024-09-11T07:33:36.067 INFO:teuthology.orchestra.run.smithi150.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T07:33:36.067 INFO:teuthology.orchestra.run.smithi150.stdout:Access: 2024-09-11 07:22:30.025494457 +0000 2024-09-11T07:33:36.067 INFO:teuthology.orchestra.run.smithi150.stdout:Modify: 2024-09-11 07:22:29.837498784 +0000 2024-09-11T07:33:36.067 INFO:teuthology.orchestra.run.smithi150.stdout:Change: 2024-09-11 07:22:29.837498784 +0000 2024-09-11T07:33:36.067 INFO:teuthology.orchestra.run.smithi150.stdout: Birth: - 2024-09-11T07:33:36.068 DEBUG:teuthology.orchestra.run.smithi150:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-11T07:33:36.079 INFO:teuthology.orchestra.run.smithi150.stderr:1+0 records in 2024-09-11T07:33:36.079 INFO:teuthology.orchestra.run.smithi150.stderr:1+0 records out 2024-09-11T07:33:36.079 INFO:teuthology.orchestra.run.smithi150.stderr:512 bytes copied, 0.000386163 s, 1.3 MB/s 2024-09-11T07:33:36.080 DEBUG:teuthology.orchestra.run.smithi150:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-11T07:33:36.089 DEBUG:teuthology.orchestra.run.smithi181:> set -ex 2024-09-11T07:33:36.089 DEBUG:teuthology.orchestra.run.smithi181:> dd if=/scratch_devs of=/dev/stdout 2024-09-11T07:33:36.096 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-11T07:33:36.096 DEBUG:teuthology.orchestra.run.smithi181:> stat /dev/vg_nvme/lv_1 2024-09-11T07:33:36.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:35 smithi115 bash[18678]: audit 2024-09-11T07:33:34.824698+0000 mgr.a (mgr.14150) 99 : audit [DBG] from='client.24109 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi115=a;smithi150=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:33:36.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:35 smithi115 bash[18678]: cephadm 2024-09-11T07:33:34.827695+0000 mgr.a (mgr.14150) 100 : cephadm [INF] Saving service mgr spec with placement smithi115=a;smithi150=b;count:2 2024-09-11T07:33:36.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:35 smithi115 bash[18678]: audit 2024-09-11T07:33:34.834412+0000 mon.a (mon.0) 231 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:36.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:35 smithi115 bash[18678]: audit 2024-09-11T07:33:34.836080+0000 mon.a (mon.0) 232 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:33:36.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:35 smithi115 bash[18678]: audit 2024-09-11T07:33:34.839779+0000 mon.a (mon.0) 233 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:36.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:35 smithi115 bash[18678]: audit 2024-09-11T07:33:34.841644+0000 mon.a (mon.0) 234 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:33:36.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:35 smithi115 bash[18678]: audit 2024-09-11T07:33:34.851521+0000 mon.a (mon.0) 235 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:36.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:35 smithi115 bash[18678]: audit 2024-09-11T07:33:34.854070+0000 mon.a (mon.0) 236 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-11T07:33:36.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:35 smithi115 bash[18678]: audit 2024-09-11T07:33:34.861559+0000 mon.a (mon.0) 237 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-11T07:33:36.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:35 smithi115 bash[18678]: audit 2024-09-11T07:33:34.863107+0000 mon.a (mon.0) 238 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-11T07:33:36.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:35 smithi115 bash[18678]: audit 2024-09-11T07:33:34.864852+0000 mon.a (mon.0) 239 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:36.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:35 smithi115 bash[18678]: cephadm 2024-09-11T07:33:34.866828+0000 mgr.a (mgr.14150) 101 : cephadm [INF] Deploying daemon mgr.b on smithi150 2024-09-11T07:33:36.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:35 smithi115 bash[18678]: cluster 2024-09-11T07:33:35.019842+0000 mgr.a (mgr.14150) 102 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:36.147 INFO:teuthology.orchestra.run.smithi181.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-11T07:33:36.147 INFO:teuthology.orchestra.run.smithi181.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T07:33:36.147 INFO:teuthology.orchestra.run.smithi181.stdout:Device: 6h/6d Inode: 359 Links: 1 2024-09-11T07:33:36.147 INFO:teuthology.orchestra.run.smithi181.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T07:33:36.147 INFO:teuthology.orchestra.run.smithi181.stdout:Access: 2024-09-11 07:22:28.732741754 +0000 2024-09-11T07:33:36.147 INFO:teuthology.orchestra.run.smithi181.stdout:Modify: 2024-09-11 07:22:28.512746815 +0000 2024-09-11T07:33:36.147 INFO:teuthology.orchestra.run.smithi181.stdout:Change: 2024-09-11 07:22:28.512746815 +0000 2024-09-11T07:33:36.147 INFO:teuthology.orchestra.run.smithi181.stdout: Birth: - 2024-09-11T07:33:36.148 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-11T07:33:36.158 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:35 smithi181 bash[22002]: audit 2024-09-11T07:33:34.824698+0000 mgr.a (mgr.14150) 99 : audit [DBG] from='client.24109 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi115=a;smithi150=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:33:36.158 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:35 smithi181 bash[22002]: cephadm 2024-09-11T07:33:34.827695+0000 mgr.a (mgr.14150) 100 : cephadm [INF] Saving service mgr spec with placement smithi115=a;smithi150=b;count:2 2024-09-11T07:33:36.158 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:35 smithi181 bash[22002]: audit 2024-09-11T07:33:34.834412+0000 mon.a (mon.0) 231 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:36.158 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:35 smithi181 bash[22002]: audit 2024-09-11T07:33:34.836080+0000 mon.a (mon.0) 232 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:33:36.158 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:35 smithi181 bash[22002]: audit 2024-09-11T07:33:34.839779+0000 mon.a (mon.0) 233 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:36.158 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:35 smithi181 bash[22002]: audit 2024-09-11T07:33:34.841644+0000 mon.a (mon.0) 234 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:33:36.158 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:35 smithi181 bash[22002]: audit 2024-09-11T07:33:34.851521+0000 mon.a (mon.0) 235 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:36.158 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:35 smithi181 bash[22002]: audit 2024-09-11T07:33:34.854070+0000 mon.a (mon.0) 236 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-11T07:33:36.158 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:35 smithi181 bash[22002]: audit 2024-09-11T07:33:34.861559+0000 mon.a (mon.0) 237 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-11T07:33:36.159 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:35 smithi181 bash[22002]: audit 2024-09-11T07:33:34.863107+0000 mon.a (mon.0) 238 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-11T07:33:36.159 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:35 smithi181 bash[22002]: audit 2024-09-11T07:33:34.864852+0000 mon.a (mon.0) 239 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:36.159 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:35 smithi181 bash[22002]: cephadm 2024-09-11T07:33:34.866828+0000 mgr.a (mgr.14150) 101 : cephadm [INF] Deploying daemon mgr.b on smithi150 2024-09-11T07:33:36.159 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:35 smithi181 bash[22002]: cluster 2024-09-11T07:33:35.019842+0000 mgr.a (mgr.14150) 102 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:36.160 INFO:teuthology.orchestra.run.smithi181.stderr:1+0 records in 2024-09-11T07:33:36.160 INFO:teuthology.orchestra.run.smithi181.stderr:1+0 records out 2024-09-11T07:33:36.160 INFO:teuthology.orchestra.run.smithi181.stderr:512 bytes copied, 0.000422555 s, 1.2 MB/s 2024-09-11T07:33:36.161 DEBUG:teuthology.orchestra.run.smithi181:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-11T07:33:36.170 DEBUG:teuthology.orchestra.run.smithi181:> stat /dev/vg_nvme/lv_2 2024-09-11T07:33:36.177 INFO:teuthology.orchestra.run.smithi181.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-11T07:33:36.177 INFO:teuthology.orchestra.run.smithi181.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T07:33:36.177 INFO:teuthology.orchestra.run.smithi181.stdout:Device: 6h/6d Inode: 366 Links: 1 2024-09-11T07:33:36.177 INFO:teuthology.orchestra.run.smithi181.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T07:33:36.177 INFO:teuthology.orchestra.run.smithi181.stdout:Access: 2024-09-11 07:22:29.204730894 +0000 2024-09-11T07:33:36.178 INFO:teuthology.orchestra.run.smithi181.stdout:Modify: 2024-09-11 07:22:28.984735955 +0000 2024-09-11T07:33:36.178 INFO:teuthology.orchestra.run.smithi181.stdout:Change: 2024-09-11 07:22:28.984735955 +0000 2024-09-11T07:33:36.178 INFO:teuthology.orchestra.run.smithi181.stdout: Birth: - 2024-09-11T07:33:36.178 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-11T07:33:36.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:35 smithi150 bash[22110]: audit 2024-09-11T07:33:34.824698+0000 mgr.a (mgr.14150) 99 : audit [DBG] from='client.24109 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi115=a;smithi150=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:33:36.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:35 smithi150 bash[22110]: cephadm 2024-09-11T07:33:34.827695+0000 mgr.a (mgr.14150) 100 : cephadm [INF] Saving service mgr spec with placement smithi115=a;smithi150=b;count:2 2024-09-11T07:33:36.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:35 smithi150 bash[22110]: audit 2024-09-11T07:33:34.834412+0000 mon.a (mon.0) 231 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:36.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:35 smithi150 bash[22110]: audit 2024-09-11T07:33:34.836080+0000 mon.a (mon.0) 232 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:33:36.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:35 smithi150 bash[22110]: audit 2024-09-11T07:33:34.839779+0000 mon.a (mon.0) 233 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:36.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:35 smithi150 bash[22110]: audit 2024-09-11T07:33:34.841644+0000 mon.a (mon.0) 234 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:33:36.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:35 smithi150 bash[22110]: audit 2024-09-11T07:33:34.851521+0000 mon.a (mon.0) 235 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:36.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:35 smithi150 bash[22110]: audit 2024-09-11T07:33:34.854070+0000 mon.a (mon.0) 236 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-11T07:33:36.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:35 smithi150 bash[22110]: audit 2024-09-11T07:33:34.861559+0000 mon.a (mon.0) 237 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-11T07:33:36.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:35 smithi150 bash[22110]: audit 2024-09-11T07:33:34.863107+0000 mon.a (mon.0) 238 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-11T07:33:36.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:35 smithi150 bash[22110]: audit 2024-09-11T07:33:34.864852+0000 mon.a (mon.0) 239 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:36.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:35 smithi150 bash[22110]: cephadm 2024-09-11T07:33:34.866828+0000 mgr.a (mgr.14150) 101 : cephadm [INF] Deploying daemon mgr.b on smithi150 2024-09-11T07:33:36.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:35 smithi150 bash[22110]: cluster 2024-09-11T07:33:35.019842+0000 mgr.a (mgr.14150) 102 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:36.232 INFO:teuthology.orchestra.run.smithi181.stderr:1+0 records in 2024-09-11T07:33:36.233 INFO:teuthology.orchestra.run.smithi181.stderr:1+0 records out 2024-09-11T07:33:36.233 INFO:teuthology.orchestra.run.smithi181.stderr:512 bytes copied, 0.000454483 s, 1.1 MB/s 2024-09-11T07:33:36.234 DEBUG:teuthology.orchestra.run.smithi181:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-11T07:33:36.234 INFO:journalctl@ceph.mgr.b.smithi150.stdout:-- Logs begin at Sun 2022-08-14 12:20:24 UTC. -- 2024-09-11T07:33:36.241 DEBUG:teuthology.orchestra.run.smithi181:> stat /dev/vg_nvme/lv_3 2024-09-11T07:33:36.247 INFO:teuthology.orchestra.run.smithi181.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-11T07:33:36.247 INFO:teuthology.orchestra.run.smithi181.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T07:33:36.247 INFO:teuthology.orchestra.run.smithi181.stdout:Device: 6h/6d Inode: 371 Links: 1 2024-09-11T07:33:36.247 INFO:teuthology.orchestra.run.smithi181.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T07:33:36.247 INFO:teuthology.orchestra.run.smithi181.stdout:Access: 2024-09-11 07:22:29.656720495 +0000 2024-09-11T07:33:36.247 INFO:teuthology.orchestra.run.smithi181.stdout:Modify: 2024-09-11 07:22:29.444725373 +0000 2024-09-11T07:33:36.247 INFO:teuthology.orchestra.run.smithi181.stdout:Change: 2024-09-11 07:22:29.444725373 +0000 2024-09-11T07:33:36.247 INFO:teuthology.orchestra.run.smithi181.stdout: Birth: - 2024-09-11T07:33:36.248 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-11T07:33:36.262 INFO:teuthology.orchestra.run.smithi181.stderr:1+0 records in 2024-09-11T07:33:36.262 INFO:teuthology.orchestra.run.smithi181.stderr:1+0 records out 2024-09-11T07:33:36.262 INFO:teuthology.orchestra.run.smithi181.stderr:512 bytes copied, 0.000393803 s, 1.3 MB/s 2024-09-11T07:33:36.263 DEBUG:teuthology.orchestra.run.smithi181:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-11T07:33:36.312 DEBUG:teuthology.orchestra.run.smithi181:> stat /dev/vg_nvme/lv_4 2024-09-11T07:33:36.319 INFO:teuthology.orchestra.run.smithi181.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-11T07:33:36.319 INFO:teuthology.orchestra.run.smithi181.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T07:33:36.319 INFO:teuthology.orchestra.run.smithi181.stdout:Device: 6h/6d Inode: 377 Links: 1 2024-09-11T07:33:36.319 INFO:teuthology.orchestra.run.smithi181.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T07:33:36.319 INFO:teuthology.orchestra.run.smithi181.stdout:Access: 2024-09-11 07:22:30.076710832 +0000 2024-09-11T07:33:36.319 INFO:teuthology.orchestra.run.smithi181.stdout:Modify: 2024-09-11 07:22:29.872715525 +0000 2024-09-11T07:33:36.319 INFO:teuthology.orchestra.run.smithi181.stdout:Change: 2024-09-11 07:22:29.872715525 +0000 2024-09-11T07:33:36.319 INFO:teuthology.orchestra.run.smithi181.stdout: Birth: - 2024-09-11T07:33:36.319 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-11T07:33:36.330 INFO:teuthology.orchestra.run.smithi181.stderr:1+0 records in 2024-09-11T07:33:36.330 INFO:teuthology.orchestra.run.smithi181.stderr:1+0 records out 2024-09-11T07:33:36.330 INFO:teuthology.orchestra.run.smithi181.stderr:512 bytes copied, 0.000395724 s, 1.3 MB/s 2024-09-11T07:33:36.331 DEBUG:teuthology.orchestra.run.smithi181:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-11T07:33:36.380 INFO:tasks.cephadm:Deploying osd.0 on smithi115 with /dev/vg_nvme/lv_4... 2024-09-11T07:33:36.381 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-09-11T07:33:38.784 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:38 smithi150 bash[22110]: cluster 2024-09-11T07:33:37.020308+0000 mgr.a (mgr.14150) 103 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:38.784 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:38 smithi150 bash[22110]: audit 2024-09-11T07:33:37.555455+0000 mon.a (mon.0) 240 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:38.784 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:38 smithi150 bash[22110]: audit 2024-09-11T07:33:37.562709+0000 mon.a (mon.0) 241 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:38.784 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:38 smithi150 bash[22110]: audit 2024-09-11T07:33:37.571755+0000 mon.a (mon.0) 242 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:38.784 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:38 smithi150 bash[22110]: audit 2024-09-11T07:33:37.577522+0000 mon.a (mon.0) 243 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:38.784 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:38 smithi150 bash[22110]: audit 2024-09-11T07:33:37.641469+0000 mon.a (mon.0) 244 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:33:38.785 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:38 smithi150 bash[22110]: audit 2024-09-11T07:33:37.698029+0000 mon.a (mon.0) 245 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:38.785 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:33:38 smithi150 bash[22668]: debug 2024-09-11T07:33:38.654+0000 7fa107955640 1 -- 172.21.15.150:0/915054505 <== mon.0 v2:172.21.15.115:3300/0 4 ==== auth_reply(proto 2 0 (0) Success) v1 ==== 194+0+0 (secure 0 0 0) 0x5594644fe340 con 0x55946450b000 2024-09-11T07:33:38.785 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:33:38 smithi150 bash[22668]: debug 2024-09-11T07:33:38.778+0000 7fa10a1bdec0 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-11T07:33:38.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:38 smithi181 bash[22002]: cluster 2024-09-11T07:33:37.020308+0000 mgr.a (mgr.14150) 103 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:38.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:38 smithi181 bash[22002]: audit 2024-09-11T07:33:37.555455+0000 mon.a (mon.0) 240 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:38.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:38 smithi181 bash[22002]: audit 2024-09-11T07:33:37.562709+0000 mon.a (mon.0) 241 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:38.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:38 smithi181 bash[22002]: audit 2024-09-11T07:33:37.571755+0000 mon.a (mon.0) 242 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:38.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:38 smithi181 bash[22002]: audit 2024-09-11T07:33:37.577522+0000 mon.a (mon.0) 243 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:38.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:38 smithi181 bash[22002]: audit 2024-09-11T07:33:37.641469+0000 mon.a (mon.0) 244 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:33:38.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:38 smithi181 bash[22002]: audit 2024-09-11T07:33:37.698029+0000 mon.a (mon.0) 245 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:38.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:38 smithi115 bash[18678]: cluster 2024-09-11T07:33:37.020308+0000 mgr.a (mgr.14150) 103 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:38.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:38 smithi115 bash[18678]: audit 2024-09-11T07:33:37.555455+0000 mon.a (mon.0) 240 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:38.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:38 smithi115 bash[18678]: audit 2024-09-11T07:33:37.562709+0000 mon.a (mon.0) 241 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:38.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:38 smithi115 bash[18678]: audit 2024-09-11T07:33:37.571755+0000 mon.a (mon.0) 242 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:38.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:38 smithi115 bash[18678]: audit 2024-09-11T07:33:37.577522+0000 mon.a (mon.0) 243 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:38.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:38 smithi115 bash[18678]: audit 2024-09-11T07:33:37.641469+0000 mon.a (mon.0) 244 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:33:38.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:38 smithi115 bash[18678]: audit 2024-09-11T07:33:37.698029+0000 mon.a (mon.0) 245 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:39.803 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:33:39 smithi150 bash[22668]: debug 2024-09-11T07:33:39.518+0000 7fa10a1bdec0 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-11T07:33:39.803 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:33:39 smithi150 bash[22668]: debug 2024-09-11T07:33:39.582+0000 7fa10a1bdec0 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-11T07:33:39.803 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:33:39 smithi150 bash[22668]: debug 2024-09-11T07:33:39.650+0000 7fa10a1bdec0 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-11T07:33:40.109 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:33:39 smithi150 bash[22668]: debug 2024-09-11T07:33:39.798+0000 7fa10a1bdec0 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-11T07:33:40.109 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:33:40 smithi150 bash[22668]: debug 2024-09-11T07:33:40.042+0000 7fa10a1bdec0 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-11T07:33:40.445 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:33:40 smithi150 bash[22668]: debug 2024-09-11T07:33:40.102+0000 7fa10a1bdec0 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-11T07:33:40.446 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:33:40 smithi150 bash[22668]: debug 2024-09-11T07:33:40.234+0000 7fa10a1bdec0 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-11T07:33:40.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:40 smithi115 bash[18678]: cluster 2024-09-11T07:33:39.020746+0000 mgr.a (mgr.14150) 104 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:40.868 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:40 smithi150 bash[22110]: cluster 2024-09-11T07:33:39.020746+0000 mgr.a (mgr.14150) 104 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:41.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:40 smithi181 bash[22002]: cluster 2024-09-11T07:33:39.020746+0000 mgr.a (mgr.14150) 104 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:41.099 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:33:41.196 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:33:40 smithi150 bash[22668]: debug 2024-09-11T07:33:40.862+0000 7fa10a1bdec0 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-11T07:33:41.196 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:33:40 smithi150 bash[22668]: debug 2024-09-11T07:33:40.934+0000 7fa10a1bdec0 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-11T07:33:41.196 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:33:41 smithi150 bash[22668]: debug 2024-09-11T07:33:41.010+0000 7fa10a1bdec0 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-11T07:33:41.695 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:33:41 smithi150 bash[22668]: debug 2024-09-11T07:33:41.286+0000 7fa10a1bdec0 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-11T07:33:41.696 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:33:41 smithi150 bash[22668]: debug 2024-09-11T07:33:41.418+0000 7fa10a1bdec0 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-11T07:33:42.196 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:33:41 smithi150 bash[22668]: debug 2024-09-11T07:33:41.726+0000 7fa10a1bdec0 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-11T07:33:42.196 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:33:41 smithi150 bash[22668]: debug 2024-09-11T07:33:41.938+0000 7fa10a1bdec0 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-11T07:33:42.662 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:42 smithi150 bash[22110]: cluster 2024-09-11T07:33:41.021198+0000 mgr.a (mgr.14150) 105 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:42.663 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:33:42 smithi150 bash[22668]: debug 2024-09-11T07:33:42.346+0000 7fa10a1bdec0 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-11T07:33:42.663 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:33:42 smithi150 bash[22668]: debug 2024-09-11T07:33:42.410+0000 7fa10a1bdec0 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-11T07:33:42.663 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:33:42 smithi150 bash[22668]: debug 2024-09-11T07:33:42.482+0000 7fa10a1bdec0 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-11T07:33:42.663 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:33:42 smithi150 bash[22668]: debug 2024-09-11T07:33:42.590+0000 7fa10a1bdec0 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-11T07:33:42.663 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:33:42 smithi150 bash[22668]: debug 2024-09-11T07:33:42.658+0000 7fa10a1bdec0 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-11T07:33:42.848 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:42 smithi115 bash[18678]: cluster 2024-09-11T07:33:41.021198+0000 mgr.a (mgr.14150) 105 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:42.946 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:33:42 smithi150 bash[22668]: debug 2024-09-11T07:33:42.738+0000 7fa10a1bdec0 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-11T07:33:42.946 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:33:42 smithi150 bash[22668]: debug 2024-09-11T07:33:42.882+0000 7fa10a1bdec0 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-11T07:33:43.058 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:42 smithi181 bash[22002]: cluster 2024-09-11T07:33:41.021198+0000 mgr.a (mgr.14150) 105 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:43.445 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:33:42 smithi150 bash[22668]: debug 2024-09-11T07:33:42.958+0000 7fa10a1bdec0 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-11T07:33:43.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:43 smithi115 bash[18678]: audit 2024-09-11T07:33:42.710695+0000 mon.a (mon.0) 246 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:43.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:43 smithi115 bash[18678]: audit 2024-09-11T07:33:42.718996+0000 mon.a (mon.0) 247 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:43.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:43 smithi115 bash[18678]: audit 2024-09-11T07:33:42.720290+0000 mon.a (mon.0) 248 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:43.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:43 smithi115 bash[18678]: audit 2024-09-11T07:33:42.721862+0000 mon.a (mon.0) 249 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:33:43.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:43 smithi115 bash[18678]: audit 2024-09-11T07:33:42.731685+0000 mon.a (mon.0) 250 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:43.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:43 smithi115 bash[18678]: audit 2024-09-11T07:33:42.798162+0000 mon.a (mon.0) 251 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-11T07:33:43.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:43 smithi115 bash[18678]: audit 2024-09-11T07:33:42.799996+0000 mon.a (mon.0) 252 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-11T07:33:43.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:43 smithi115 bash[18678]: audit 2024-09-11T07:33:42.801304+0000 mon.a (mon.0) 253 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:44.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:43 smithi181 bash[22002]: audit 2024-09-11T07:33:42.710695+0000 mon.a (mon.0) 246 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:44.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:43 smithi181 bash[22002]: audit 2024-09-11T07:33:42.718996+0000 mon.a (mon.0) 247 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:44.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:43 smithi181 bash[22002]: audit 2024-09-11T07:33:42.720290+0000 mon.a (mon.0) 248 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:44.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:43 smithi181 bash[22002]: audit 2024-09-11T07:33:42.721862+0000 mon.a (mon.0) 249 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:33:44.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:43 smithi181 bash[22002]: audit 2024-09-11T07:33:42.731685+0000 mon.a (mon.0) 250 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:44.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:43 smithi181 bash[22002]: audit 2024-09-11T07:33:42.798162+0000 mon.a (mon.0) 251 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-11T07:33:44.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:43 smithi181 bash[22002]: audit 2024-09-11T07:33:42.799996+0000 mon.a (mon.0) 252 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-11T07:33:44.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:43 smithi181 bash[22002]: audit 2024-09-11T07:33:42.801304+0000 mon.a (mon.0) 253 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:44.196 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:33:43 smithi150 bash[22668]: debug 2024-09-11T07:33:43.874+0000 7fa10a1bdec0 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-11T07:33:44.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:43 smithi150 bash[22110]: audit 2024-09-11T07:33:42.710695+0000 mon.a (mon.0) 246 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:44.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:43 smithi150 bash[22110]: audit 2024-09-11T07:33:42.718996+0000 mon.a (mon.0) 247 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:44.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:43 smithi150 bash[22110]: audit 2024-09-11T07:33:42.720290+0000 mon.a (mon.0) 248 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:44.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:43 smithi150 bash[22110]: audit 2024-09-11T07:33:42.721862+0000 mon.a (mon.0) 249 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:33:44.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:43 smithi150 bash[22110]: audit 2024-09-11T07:33:42.731685+0000 mon.a (mon.0) 250 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:44.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:43 smithi150 bash[22110]: audit 2024-09-11T07:33:42.798162+0000 mon.a (mon.0) 251 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-11T07:33:44.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:43 smithi150 bash[22110]: audit 2024-09-11T07:33:42.799996+0000 mon.a (mon.0) 252 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-11T07:33:44.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:43 smithi150 bash[22110]: audit 2024-09-11T07:33:42.801304+0000 mon.a (mon.0) 253 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:44.993 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:44 smithi115 bash[18678]: cephadm 2024-09-11T07:33:42.797450+0000 mgr.a (mgr.14150) 106 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-11T07:33:44.994 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:44 smithi115 bash[18678]: cephadm 2024-09-11T07:33:42.802731+0000 mgr.a (mgr.14150) 107 : cephadm [INF] Reconfiguring daemon mgr.a on smithi115 2024-09-11T07:33:44.994 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:44 smithi115 bash[18678]: cluster 2024-09-11T07:33:43.021554+0000 mgr.a (mgr.14150) 108 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:44.994 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:44 smithi115 bash[18678]: cluster 2024-09-11T07:33:43.903471+0000 mon.a (mon.0) 254 : cluster [DBG] Standby manager daemon b started 2024-09-11T07:33:44.994 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:44 smithi115 bash[18678]: audit 2024-09-11T07:33:43.905574+0000 mon.b (mon.2) 2 : audit [DBG] from='mgr.? 172.21.15.150:0/3217074673' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-11T07:33:44.994 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:44 smithi115 bash[18678]: audit 2024-09-11T07:33:43.906415+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.150:0/3217074673' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-11T07:33:44.994 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:44 smithi115 bash[18678]: audit 2024-09-11T07:33:43.908328+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.150:0/3217074673' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-11T07:33:44.994 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:44 smithi115 bash[18678]: audit 2024-09-11T07:33:43.909073+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.150:0/3217074673' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-11T07:33:45.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:44 smithi181 bash[22002]: cephadm 2024-09-11T07:33:42.797450+0000 mgr.a (mgr.14150) 106 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-11T07:33:45.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:44 smithi181 bash[22002]: cephadm 2024-09-11T07:33:42.802731+0000 mgr.a (mgr.14150) 107 : cephadm [INF] Reconfiguring daemon mgr.a on smithi115 2024-09-11T07:33:45.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:44 smithi181 bash[22002]: cluster 2024-09-11T07:33:43.021554+0000 mgr.a (mgr.14150) 108 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:45.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:44 smithi181 bash[22002]: cluster 2024-09-11T07:33:43.903471+0000 mon.a (mon.0) 254 : cluster [DBG] Standby manager daemon b started 2024-09-11T07:33:45.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:44 smithi181 bash[22002]: audit 2024-09-11T07:33:43.905574+0000 mon.b (mon.2) 2 : audit [DBG] from='mgr.? 172.21.15.150:0/3217074673' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-11T07:33:45.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:44 smithi181 bash[22002]: audit 2024-09-11T07:33:43.906415+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.150:0/3217074673' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-11T07:33:45.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:44 smithi181 bash[22002]: audit 2024-09-11T07:33:43.908328+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.150:0/3217074673' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-11T07:33:45.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:44 smithi181 bash[22002]: audit 2024-09-11T07:33:43.909073+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.150:0/3217074673' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-11T07:33:45.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:44 smithi150 bash[22110]: cephadm 2024-09-11T07:33:42.797450+0000 mgr.a (mgr.14150) 106 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-11T07:33:45.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:44 smithi150 bash[22110]: cephadm 2024-09-11T07:33:42.802731+0000 mgr.a (mgr.14150) 107 : cephadm [INF] Reconfiguring daemon mgr.a on smithi115 2024-09-11T07:33:45.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:44 smithi150 bash[22110]: cluster 2024-09-11T07:33:43.021554+0000 mgr.a (mgr.14150) 108 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:45.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:44 smithi150 bash[22110]: cluster 2024-09-11T07:33:43.903471+0000 mon.a (mon.0) 254 : cluster [DBG] Standby manager daemon b started 2024-09-11T07:33:45.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:44 smithi150 bash[22110]: audit 2024-09-11T07:33:43.905574+0000 mon.b (mon.2) 2 : audit [DBG] from='mgr.? 172.21.15.150:0/3217074673' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-11T07:33:45.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:44 smithi150 bash[22110]: audit 2024-09-11T07:33:43.906415+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.150:0/3217074673' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-11T07:33:45.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:44 smithi150 bash[22110]: audit 2024-09-11T07:33:43.908328+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.150:0/3217074673' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-11T07:33:45.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:44 smithi150 bash[22110]: audit 2024-09-11T07:33:43.909073+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.150:0/3217074673' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-11T07:33:45.380 INFO:teuthology.orchestra.run.smithi115.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-09-11T07:33:45.572 INFO:teuthology.orchestra.run.smithi115.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-09-11T07:33:45.590 INFO:teuthology.orchestra.run.smithi115.stderr: stderr: 10+0 records in 2024-09-11T07:33:45.590 INFO:teuthology.orchestra.run.smithi115.stderr:10+0 records out 2024-09-11T07:33:45.590 INFO:teuthology.orchestra.run.smithi115.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0147602 s, 710 MB/s 2024-09-11T07:33:45.590 INFO:teuthology.orchestra.run.smithi115.stderr:--> Zapping successful for: 2024-09-11T07:33:45.973 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:45 smithi115 bash[18678]: cluster 2024-09-11T07:33:44.752988+0000 mon.a (mon.0) 255 : cluster [DBG] mgrmap e14: a(active, since 2m), standbys: b 2024-09-11T07:33:45.973 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:45 smithi115 bash[18678]: audit 2024-09-11T07:33:44.753241+0000 mon.a (mon.0) 256 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-11T07:33:45.973 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:45 smithi115 bash[18678]: cluster 2024-09-11T07:33:45.022029+0000 mgr.a (mgr.14150) 109 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:46.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:45 smithi181 bash[22002]: cluster 2024-09-11T07:33:44.752988+0000 mon.a (mon.0) 255 : cluster [DBG] mgrmap e14: a(active, since 2m), standbys: b 2024-09-11T07:33:46.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:45 smithi181 bash[22002]: audit 2024-09-11T07:33:44.753241+0000 mon.a (mon.0) 256 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-11T07:33:46.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:45 smithi181 bash[22002]: cluster 2024-09-11T07:33:45.022029+0000 mgr.a (mgr.14150) 109 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:46.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:45 smithi150 bash[22110]: cluster 2024-09-11T07:33:44.752988+0000 mon.a (mon.0) 255 : cluster [DBG] mgrmap e14: a(active, since 2m), standbys: b 2024-09-11T07:33:46.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:45 smithi150 bash[22110]: audit 2024-09-11T07:33:44.753241+0000 mon.a (mon.0) 256 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-11T07:33:46.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:45 smithi150 bash[22110]: cluster 2024-09-11T07:33:45.022029+0000 mgr.a (mgr.14150) 109 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:46.432 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph orch daemon add osd smithi115:vg_nvme/lv_4 2024-09-11T07:33:47.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:47 smithi181 bash[22002]: audit 2024-09-11T07:33:46.009925+0000 mon.a (mon.0) 257 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:47.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:47 smithi181 bash[22002]: audit 2024-09-11T07:33:46.014835+0000 mon.a (mon.0) 258 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:47.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:47 smithi181 bash[22002]: audit 2024-09-11T07:33:46.016417+0000 mon.a (mon.0) 259 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:33:47.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:47 smithi181 bash[22002]: audit 2024-09-11T07:33:46.018916+0000 mon.a (mon.0) 260 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:47.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:47 smithi181 bash[22002]: audit 2024-09-11T07:33:46.020383+0000 mon.a (mon.0) 261 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:33:47.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:47 smithi181 bash[22002]: audit 2024-09-11T07:33:46.027969+0000 mon.a (mon.0) 262 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:47.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:47 smithi115 bash[18678]: audit 2024-09-11T07:33:46.009925+0000 mon.a (mon.0) 257 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:47.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:47 smithi115 bash[18678]: audit 2024-09-11T07:33:46.014835+0000 mon.a (mon.0) 258 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:47.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:47 smithi115 bash[18678]: audit 2024-09-11T07:33:46.016417+0000 mon.a (mon.0) 259 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:33:47.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:47 smithi115 bash[18678]: audit 2024-09-11T07:33:46.018916+0000 mon.a (mon.0) 260 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:47.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:47 smithi115 bash[18678]: audit 2024-09-11T07:33:46.020383+0000 mon.a (mon.0) 261 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:33:47.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:47 smithi115 bash[18678]: audit 2024-09-11T07:33:46.027969+0000 mon.a (mon.0) 262 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:47.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:47 smithi150 bash[22110]: audit 2024-09-11T07:33:46.009925+0000 mon.a (mon.0) 257 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:47.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:47 smithi150 bash[22110]: audit 2024-09-11T07:33:46.014835+0000 mon.a (mon.0) 258 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:47.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:47 smithi150 bash[22110]: audit 2024-09-11T07:33:46.016417+0000 mon.a (mon.0) 259 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:33:47.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:47 smithi150 bash[22110]: audit 2024-09-11T07:33:46.018916+0000 mon.a (mon.0) 260 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:47.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:47 smithi150 bash[22110]: audit 2024-09-11T07:33:46.020383+0000 mon.a (mon.0) 261 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:33:47.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:47 smithi150 bash[22110]: audit 2024-09-11T07:33:46.027969+0000 mon.a (mon.0) 262 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:33:48.308 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:48 smithi181 bash[22002]: cluster 2024-09-11T07:33:47.022447+0000 mgr.a (mgr.14150) 110 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:48.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:48 smithi115 bash[18678]: cluster 2024-09-11T07:33:47.022447+0000 mgr.a (mgr.14150) 110 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:48.448 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:48 smithi150 bash[22110]: cluster 2024-09-11T07:33:47.022447+0000 mgr.a (mgr.14150) 110 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:50.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:50 smithi115 bash[18678]: cluster 2024-09-11T07:33:49.022883+0000 mgr.a (mgr.14150) 111 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:50.445 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:50 smithi150 bash[22110]: cluster 2024-09-11T07:33:49.022883+0000 mgr.a (mgr.14150) 111 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:50.558 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:50 smithi181 bash[22002]: cluster 2024-09-11T07:33:49.022883+0000 mgr.a (mgr.14150) 111 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:51.146 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:33:52.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:52 smithi115 bash[18678]: cluster 2024-09-11T07:33:51.023354+0000 mgr.a (mgr.14150) 112 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:52.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:52 smithi150 bash[22110]: cluster 2024-09-11T07:33:51.023354+0000 mgr.a (mgr.14150) 112 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:52.558 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:52 smithi181 bash[22002]: cluster 2024-09-11T07:33:51.023354+0000 mgr.a (mgr.14150) 112 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:54.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:54 smithi115 bash[18678]: cluster 2024-09-11T07:33:53.023811+0000 mgr.a (mgr.14150) 113 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:54.445 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:54 smithi150 bash[22110]: cluster 2024-09-11T07:33:53.023811+0000 mgr.a (mgr.14150) 113 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:54.558 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:54 smithi181 bash[22002]: cluster 2024-09-11T07:33:53.023811+0000 mgr.a (mgr.14150) 113 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:55.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:55 smithi150 bash[22110]: audit 2024-09-11T07:33:54.427335+0000 mgr.a (mgr.14150) 114 : audit [DBG] from='client.24121 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi115:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:33:55.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:55 smithi150 bash[22110]: audit 2024-09-11T07:33:54.433711+0000 mon.a (mon.0) 263 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T07:33:55.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:55 smithi150 bash[22110]: audit 2024-09-11T07:33:54.439216+0000 mon.a (mon.0) 264 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T07:33:55.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:55 smithi150 bash[22110]: audit 2024-09-11T07:33:54.440597+0000 mon.a (mon.0) 265 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:55.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:55 smithi181 bash[22002]: audit 2024-09-11T07:33:54.427335+0000 mgr.a (mgr.14150) 114 : audit [DBG] from='client.24121 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi115:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:33:55.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:55 smithi181 bash[22002]: audit 2024-09-11T07:33:54.433711+0000 mon.a (mon.0) 263 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T07:33:55.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:55 smithi181 bash[22002]: audit 2024-09-11T07:33:54.439216+0000 mon.a (mon.0) 264 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T07:33:55.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:55 smithi181 bash[22002]: audit 2024-09-11T07:33:54.440597+0000 mon.a (mon.0) 265 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:55.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:55 smithi115 bash[18678]: audit 2024-09-11T07:33:54.427335+0000 mgr.a (mgr.14150) 114 : audit [DBG] from='client.24121 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi115:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:33:55.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:55 smithi115 bash[18678]: audit 2024-09-11T07:33:54.433711+0000 mon.a (mon.0) 263 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T07:33:55.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:55 smithi115 bash[18678]: audit 2024-09-11T07:33:54.439216+0000 mon.a (mon.0) 264 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T07:33:55.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:55 smithi115 bash[18678]: audit 2024-09-11T07:33:54.440597+0000 mon.a (mon.0) 265 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:33:56.445 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:56 smithi150 bash[22110]: cluster 2024-09-11T07:33:55.024289+0000 mgr.a (mgr.14150) 115 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:56.558 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:56 smithi181 bash[22002]: cluster 2024-09-11T07:33:55.024289+0000 mgr.a (mgr.14150) 115 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:56.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:56 smithi115 bash[18678]: cluster 2024-09-11T07:33:55.024289+0000 mgr.a (mgr.14150) 115 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:58.445 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:33:58 smithi150 bash[22110]: cluster 2024-09-11T07:33:57.024722+0000 mgr.a (mgr.14150) 116 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:58.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:33:58 smithi181 bash[22002]: cluster 2024-09-11T07:33:57.024722+0000 mgr.a (mgr.14150) 116 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:33:58.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:33:58 smithi115 bash[18678]: cluster 2024-09-11T07:33:57.024722+0000 mgr.a (mgr.14150) 116 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:00.415 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:00 smithi115 bash[18678]: cluster 2024-09-11T07:33:59.025143+0000 mgr.a (mgr.14150) 117 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:00.445 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:00 smithi150 bash[22110]: cluster 2024-09-11T07:33:59.025143+0000 mgr.a (mgr.14150) 117 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:00.558 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:00 smithi181 bash[22002]: cluster 2024-09-11T07:33:59.025143+0000 mgr.a (mgr.14150) 117 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:02.445 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:02 smithi150 bash[22110]: cluster 2024-09-11T07:34:01.025580+0000 mgr.a (mgr.14150) 118 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:02.560 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:02 smithi181 bash[22002]: cluster 2024-09-11T07:34:01.025580+0000 mgr.a (mgr.14150) 118 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:02.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:02 smithi115 bash[18678]: cluster 2024-09-11T07:34:01.025580+0000 mgr.a (mgr.14150) 118 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:03.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:03 smithi150 bash[22110]: audit 2024-09-11T07:34:02.972223+0000 mon.a (mon.0) 266 : audit [INF] from='client.? 172.21.15.115:0/1760272100' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7ea9b8c0-49c6-43e5-9332-4c9129950673"}]: dispatch 2024-09-11T07:34:03.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:03 smithi150 bash[22110]: audit 2024-09-11T07:34:02.979343+0000 mon.a (mon.0) 267 : audit [INF] from='client.? 172.21.15.115:0/1760272100' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7ea9b8c0-49c6-43e5-9332-4c9129950673"}]': finished 2024-09-11T07:34:03.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:03 smithi150 bash[22110]: cluster 2024-09-11T07:34:02.979453+0000 mon.a (mon.0) 268 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-11T07:34:03.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:03 smithi150 bash[22110]: audit 2024-09-11T07:34:02.979634+0000 mon.a (mon.0) 269 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T07:34:03.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:03 smithi181 bash[22002]: audit 2024-09-11T07:34:02.972223+0000 mon.a (mon.0) 266 : audit [INF] from='client.? 172.21.15.115:0/1760272100' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7ea9b8c0-49c6-43e5-9332-4c9129950673"}]: dispatch 2024-09-11T07:34:03.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:03 smithi181 bash[22002]: audit 2024-09-11T07:34:02.979343+0000 mon.a (mon.0) 267 : audit [INF] from='client.? 172.21.15.115:0/1760272100' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7ea9b8c0-49c6-43e5-9332-4c9129950673"}]': finished 2024-09-11T07:34:03.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:03 smithi181 bash[22002]: cluster 2024-09-11T07:34:02.979453+0000 mon.a (mon.0) 268 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-11T07:34:03.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:03 smithi181 bash[22002]: audit 2024-09-11T07:34:02.979634+0000 mon.a (mon.0) 269 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T07:34:03.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:03 smithi115 bash[18678]: audit 2024-09-11T07:34:02.972223+0000 mon.a (mon.0) 266 : audit [INF] from='client.? 172.21.15.115:0/1760272100' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7ea9b8c0-49c6-43e5-9332-4c9129950673"}]: dispatch 2024-09-11T07:34:03.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:03 smithi115 bash[18678]: audit 2024-09-11T07:34:02.979343+0000 mon.a (mon.0) 267 : audit [INF] from='client.? 172.21.15.115:0/1760272100' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7ea9b8c0-49c6-43e5-9332-4c9129950673"}]': finished 2024-09-11T07:34:03.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:03 smithi115 bash[18678]: cluster 2024-09-11T07:34:02.979453+0000 mon.a (mon.0) 268 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-11T07:34:03.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:03 smithi115 bash[18678]: audit 2024-09-11T07:34:02.979634+0000 mon.a (mon.0) 269 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T07:34:04.445 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:04 smithi150 bash[22110]: cluster 2024-09-11T07:34:03.026078+0000 mgr.a (mgr.14150) 119 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:04.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:04 smithi150 bash[22110]: audit 2024-09-11T07:34:03.651105+0000 mon.a (mon.0) 270 : audit [DBG] from='client.? 172.21.15.115:0/3795653892' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T07:34:04.558 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:04 smithi181 bash[22002]: cluster 2024-09-11T07:34:03.026078+0000 mgr.a (mgr.14150) 119 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:04.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:04 smithi181 bash[22002]: audit 2024-09-11T07:34:03.651105+0000 mon.a (mon.0) 270 : audit [DBG] from='client.? 172.21.15.115:0/3795653892' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T07:34:04.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:04 smithi115 bash[18678]: cluster 2024-09-11T07:34:03.026078+0000 mgr.a (mgr.14150) 119 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:04.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:04 smithi115 bash[18678]: audit 2024-09-11T07:34:03.651105+0000 mon.a (mon.0) 270 : audit [DBG] from='client.? 172.21.15.115:0/3795653892' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T07:34:06.445 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:06 smithi150 bash[22110]: cluster 2024-09-11T07:34:05.026570+0000 mgr.a (mgr.14150) 120 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:06.531 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:06 smithi115 bash[18678]: cluster 2024-09-11T07:34:05.026570+0000 mgr.a (mgr.14150) 120 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:06.558 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:06 smithi181 bash[22002]: cluster 2024-09-11T07:34:05.026570+0000 mgr.a (mgr.14150) 120 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:08.445 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:08 smithi150 bash[22110]: cluster 2024-09-11T07:34:07.026986+0000 mgr.a (mgr.14150) 121 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:08.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:08 smithi181 bash[22002]: cluster 2024-09-11T07:34:07.026986+0000 mgr.a (mgr.14150) 121 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:08.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:08 smithi115 bash[18678]: cluster 2024-09-11T07:34:07.026986+0000 mgr.a (mgr.14150) 121 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:10.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:10 smithi150 bash[22110]: cluster 2024-09-11T07:34:09.027447+0000 mgr.a (mgr.14150) 122 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:10.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:10 smithi181 bash[22002]: cluster 2024-09-11T07:34:09.027447+0000 mgr.a (mgr.14150) 122 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:10.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:10 smithi115 bash[18678]: cluster 2024-09-11T07:34:09.027447+0000 mgr.a (mgr.14150) 122 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:12.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:12 smithi150 bash[22110]: cluster 2024-09-11T07:34:11.028002+0000 mgr.a (mgr.14150) 123 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:12.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:12 smithi181 bash[22002]: cluster 2024-09-11T07:34:11.028002+0000 mgr.a (mgr.14150) 123 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:12.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:12 smithi115 bash[18678]: cluster 2024-09-11T07:34:11.028002+0000 mgr.a (mgr.14150) 123 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:14.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:14 smithi150 bash[22110]: cluster 2024-09-11T07:34:13.028367+0000 mgr.a (mgr.14150) 124 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:14.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:14 smithi181 bash[22002]: cluster 2024-09-11T07:34:13.028367+0000 mgr.a (mgr.14150) 124 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:14.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:14 smithi115 bash[18678]: cluster 2024-09-11T07:34:13.028367+0000 mgr.a (mgr.14150) 124 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:16.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:16 smithi150 bash[22110]: cluster 2024-09-11T07:34:15.028772+0000 mgr.a (mgr.14150) 125 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:16.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:16 smithi150 bash[22110]: audit 2024-09-11T07:34:15.828493+0000 mon.a (mon.0) 271 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-11T07:34:16.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:16 smithi150 bash[22110]: audit 2024-09-11T07:34:15.830089+0000 mon.a (mon.0) 272 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:34:16.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:16 smithi181 bash[22002]: cluster 2024-09-11T07:34:15.028772+0000 mgr.a (mgr.14150) 125 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:16.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:16 smithi181 bash[22002]: audit 2024-09-11T07:34:15.828493+0000 mon.a (mon.0) 271 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-11T07:34:16.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:16 smithi181 bash[22002]: audit 2024-09-11T07:34:15.830089+0000 mon.a (mon.0) 272 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:34:16.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:16 smithi115 bash[18678]: cluster 2024-09-11T07:34:15.028772+0000 mgr.a (mgr.14150) 125 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:16.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:16 smithi115 bash[18678]: audit 2024-09-11T07:34:15.828493+0000 mon.a (mon.0) 271 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-11T07:34:16.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:16 smithi115 bash[18678]: audit 2024-09-11T07:34:15.830089+0000 mon.a (mon.0) 272 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:34:17.445 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:17 smithi150 bash[22110]: cephadm 2024-09-11T07:34:15.831210+0000 mgr.a (mgr.14150) 126 : cephadm [INF] Deploying daemon osd.0 on smithi115 2024-09-11T07:34:17.540 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:17 smithi115 bash[18678]: cephadm 2024-09-11T07:34:15.831210+0000 mgr.a (mgr.14150) 126 : cephadm [INF] Deploying daemon osd.0 on smithi115 2024-09-11T07:34:17.558 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:17 smithi181 bash[22002]: cephadm 2024-09-11T07:34:15.831210+0000 mgr.a (mgr.14150) 126 : cephadm [INF] Deploying daemon osd.0 on smithi115 2024-09-11T07:34:18.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:18 smithi150 bash[22110]: cluster 2024-09-11T07:34:17.029216+0000 mgr.a (mgr.14150) 127 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:18.558 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:18 smithi181 bash[22002]: cluster 2024-09-11T07:34:17.029216+0000 mgr.a (mgr.14150) 127 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:18.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:18 smithi115 bash[18678]: cluster 2024-09-11T07:34:17.029216+0000 mgr.a (mgr.14150) 127 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:20.445 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:20 smithi150 bash[22110]: cluster 2024-09-11T07:34:19.029651+0000 mgr.a (mgr.14150) 128 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:20.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:20 smithi181 bash[22002]: cluster 2024-09-11T07:34:19.029651+0000 mgr.a (mgr.14150) 128 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:20.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:20 smithi115 bash[18678]: cluster 2024-09-11T07:34:19.029651+0000 mgr.a (mgr.14150) 128 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:21.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:21 smithi150 bash[22110]: audit 2024-09-11T07:34:20.632242+0000 mon.a (mon.0) 273 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:34:21.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:21 smithi150 bash[22110]: audit 2024-09-11T07:34:20.638316+0000 mon.a (mon.0) 274 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:21.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:21 smithi150 bash[22110]: audit 2024-09-11T07:34:20.643463+0000 mon.a (mon.0) 275 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:21.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:21 smithi181 bash[22002]: audit 2024-09-11T07:34:20.632242+0000 mon.a (mon.0) 273 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:34:21.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:21 smithi181 bash[22002]: audit 2024-09-11T07:34:20.638316+0000 mon.a (mon.0) 274 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:21.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:21 smithi181 bash[22002]: audit 2024-09-11T07:34:20.643463+0000 mon.a (mon.0) 275 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:21.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:21 smithi115 bash[18678]: audit 2024-09-11T07:34:20.632242+0000 mon.a (mon.0) 273 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:34:21.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:21 smithi115 bash[18678]: audit 2024-09-11T07:34:20.638316+0000 mon.a (mon.0) 274 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:21.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:21 smithi115 bash[18678]: audit 2024-09-11T07:34:20.643463+0000 mon.a (mon.0) 275 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:22.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:22 smithi115 bash[18678]: cluster 2024-09-11T07:34:21.030138+0000 mgr.a (mgr.14150) 129 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:22.945 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:22 smithi150 bash[22110]: cluster 2024-09-11T07:34:21.030138+0000 mgr.a (mgr.14150) 129 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:23.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:22 smithi181 bash[22002]: cluster 2024-09-11T07:34:21.030138+0000 mgr.a (mgr.14150) 129 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:24.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:24 smithi150 bash[22110]: cluster 2024-09-11T07:34:23.030623+0000 mgr.a (mgr.14150) 130 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:25.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:24 smithi181 bash[22002]: cluster 2024-09-11T07:34:23.030623+0000 mgr.a (mgr.14150) 130 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:25.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:24 smithi115 bash[18678]: cluster 2024-09-11T07:34:23.030623+0000 mgr.a (mgr.14150) 130 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:26.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:26 smithi150 bash[22110]: cluster 2024-09-11T07:34:25.031055+0000 mgr.a (mgr.14150) 131 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:27.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:26 smithi181 bash[22002]: cluster 2024-09-11T07:34:25.031055+0000 mgr.a (mgr.14150) 131 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:27.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:26 smithi115 bash[18678]: cluster 2024-09-11T07:34:25.031055+0000 mgr.a (mgr.14150) 131 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:28.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:27 smithi115 bash[18678]: audit 2024-09-11T07:34:26.843839+0000 mon.a (mon.0) 276 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:28.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:27 smithi115 bash[18678]: audit 2024-09-11T07:34:26.852304+0000 mon.a (mon.0) 277 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:28.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:27 smithi115 bash[18678]: audit 2024-09-11T07:34:26.853818+0000 mon.a (mon.0) 278 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:34:28.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:27 smithi115 bash[18678]: audit 2024-09-11T07:34:26.855196+0000 mon.a (mon.0) 279 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:34:28.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:27 smithi115 bash[18678]: audit 2024-09-11T07:34:26.864775+0000 mon.a (mon.0) 280 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:28.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:27 smithi115 bash[18678]: cluster 2024-09-11T07:34:27.031482+0000 mgr.a (mgr.14150) 132 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:28.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:27 smithi115 bash[18678]: audit 2024-09-11T07:34:27.687018+0000 mon.a (mon.0) 281 : audit [INF] from='osd.0 [v2:172.21.15.115:6802/4152627375,v1:172.21.15.115:6803/4152627375]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-11T07:34:28.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:27 smithi150 bash[22110]: audit 2024-09-11T07:34:26.843839+0000 mon.a (mon.0) 276 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:28.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:27 smithi150 bash[22110]: audit 2024-09-11T07:34:26.852304+0000 mon.a (mon.0) 277 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:28.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:27 smithi150 bash[22110]: audit 2024-09-11T07:34:26.853818+0000 mon.a (mon.0) 278 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:34:28.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:27 smithi150 bash[22110]: audit 2024-09-11T07:34:26.855196+0000 mon.a (mon.0) 279 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:34:28.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:27 smithi150 bash[22110]: audit 2024-09-11T07:34:26.864775+0000 mon.a (mon.0) 280 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:28.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:27 smithi150 bash[22110]: cluster 2024-09-11T07:34:27.031482+0000 mgr.a (mgr.14150) 132 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:28.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:27 smithi150 bash[22110]: audit 2024-09-11T07:34:27.687018+0000 mon.a (mon.0) 281 : audit [INF] from='osd.0 [v2:172.21.15.115:6802/4152627375,v1:172.21.15.115:6803/4152627375]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-11T07:34:28.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:27 smithi181 bash[22002]: audit 2024-09-11T07:34:26.843839+0000 mon.a (mon.0) 276 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:28.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:27 smithi181 bash[22002]: audit 2024-09-11T07:34:26.852304+0000 mon.a (mon.0) 277 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:28.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:27 smithi181 bash[22002]: audit 2024-09-11T07:34:26.853818+0000 mon.a (mon.0) 278 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:34:28.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:27 smithi181 bash[22002]: audit 2024-09-11T07:34:26.855196+0000 mon.a (mon.0) 279 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:34:28.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:27 smithi181 bash[22002]: audit 2024-09-11T07:34:26.864775+0000 mon.a (mon.0) 280 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:28.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:27 smithi181 bash[22002]: cluster 2024-09-11T07:34:27.031482+0000 mgr.a (mgr.14150) 132 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:28.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:27 smithi181 bash[22002]: audit 2024-09-11T07:34:27.687018+0000 mon.a (mon.0) 281 : audit [INF] from='osd.0 [v2:172.21.15.115:6802/4152627375,v1:172.21.15.115:6803/4152627375]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-11T07:34:29.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:28 smithi150 bash[22110]: audit 2024-09-11T07:34:27.874855+0000 mon.a (mon.0) 282 : audit [INF] from='osd.0 [v2:172.21.15.115:6802/4152627375,v1:172.21.15.115:6803/4152627375]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-11T07:34:29.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:28 smithi150 bash[22110]: cluster 2024-09-11T07:34:27.875067+0000 mon.a (mon.0) 283 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-11T07:34:29.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:28 smithi150 bash[22110]: audit 2024-09-11T07:34:27.875390+0000 mon.a (mon.0) 284 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T07:34:29.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:28 smithi150 bash[22110]: audit 2024-09-11T07:34:27.876578+0000 mon.a (mon.0) 285 : audit [INF] from='osd.0 [v2:172.21.15.115:6802/4152627375,v1:172.21.15.115:6803/4152627375]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi115", "root=default"]}]: dispatch 2024-09-11T07:34:29.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:28 smithi181 bash[22002]: audit 2024-09-11T07:34:27.874855+0000 mon.a (mon.0) 282 : audit [INF] from='osd.0 [v2:172.21.15.115:6802/4152627375,v1:172.21.15.115:6803/4152627375]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-11T07:34:29.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:28 smithi181 bash[22002]: cluster 2024-09-11T07:34:27.875067+0000 mon.a (mon.0) 283 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-11T07:34:29.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:28 smithi181 bash[22002]: audit 2024-09-11T07:34:27.875390+0000 mon.a (mon.0) 284 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T07:34:29.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:28 smithi181 bash[22002]: audit 2024-09-11T07:34:27.876578+0000 mon.a (mon.0) 285 : audit [INF] from='osd.0 [v2:172.21.15.115:6802/4152627375,v1:172.21.15.115:6803/4152627375]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi115", "root=default"]}]: dispatch 2024-09-11T07:34:29.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:28 smithi115 bash[18678]: audit 2024-09-11T07:34:27.874855+0000 mon.a (mon.0) 282 : audit [INF] from='osd.0 [v2:172.21.15.115:6802/4152627375,v1:172.21.15.115:6803/4152627375]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-11T07:34:29.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:28 smithi115 bash[18678]: cluster 2024-09-11T07:34:27.875067+0000 mon.a (mon.0) 283 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-11T07:34:29.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:28 smithi115 bash[18678]: audit 2024-09-11T07:34:27.875390+0000 mon.a (mon.0) 284 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T07:34:29.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:28 smithi115 bash[18678]: audit 2024-09-11T07:34:27.876578+0000 mon.a (mon.0) 285 : audit [INF] from='osd.0 [v2:172.21.15.115:6802/4152627375,v1:172.21.15.115:6803/4152627375]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi115", "root=default"]}]: dispatch 2024-09-11T07:34:30.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:29 smithi150 bash[22110]: audit 2024-09-11T07:34:28.876466+0000 mon.a (mon.0) 286 : audit [INF] from='osd.0 [v2:172.21.15.115:6802/4152627375,v1:172.21.15.115:6803/4152627375]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi115", "root=default"]}]': finished 2024-09-11T07:34:30.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:29 smithi150 bash[22110]: cluster 2024-09-11T07:34:28.876598+0000 mon.a (mon.0) 287 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-11T07:34:30.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:29 smithi150 bash[22110]: audit 2024-09-11T07:34:28.877365+0000 mon.a (mon.0) 288 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T07:34:30.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:29 smithi150 bash[22110]: audit 2024-09-11T07:34:28.885975+0000 mon.a (mon.0) 289 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T07:34:30.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:29 smithi150 bash[22110]: cluster 2024-09-11T07:34:29.031935+0000 mgr.a (mgr.14150) 133 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:30.238 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:29 smithi115 bash[18678]: audit 2024-09-11T07:34:28.876466+0000 mon.a (mon.0) 286 : audit [INF] from='osd.0 [v2:172.21.15.115:6802/4152627375,v1:172.21.15.115:6803/4152627375]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi115", "root=default"]}]': finished 2024-09-11T07:34:30.238 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:29 smithi115 bash[18678]: cluster 2024-09-11T07:34:28.876598+0000 mon.a (mon.0) 287 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-11T07:34:30.238 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:29 smithi115 bash[18678]: audit 2024-09-11T07:34:28.877365+0000 mon.a (mon.0) 288 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T07:34:30.238 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:29 smithi115 bash[18678]: audit 2024-09-11T07:34:28.885975+0000 mon.a (mon.0) 289 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T07:34:30.238 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:29 smithi115 bash[18678]: cluster 2024-09-11T07:34:29.031935+0000 mgr.a (mgr.14150) 133 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:30.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:29 smithi181 bash[22002]: audit 2024-09-11T07:34:28.876466+0000 mon.a (mon.0) 286 : audit [INF] from='osd.0 [v2:172.21.15.115:6802/4152627375,v1:172.21.15.115:6803/4152627375]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi115", "root=default"]}]': finished 2024-09-11T07:34:30.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:29 smithi181 bash[22002]: cluster 2024-09-11T07:34:28.876598+0000 mon.a (mon.0) 287 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-11T07:34:30.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:29 smithi181 bash[22002]: audit 2024-09-11T07:34:28.877365+0000 mon.a (mon.0) 288 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T07:34:30.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:29 smithi181 bash[22002]: audit 2024-09-11T07:34:28.885975+0000 mon.a (mon.0) 289 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T07:34:30.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:29 smithi181 bash[22002]: cluster 2024-09-11T07:34:29.031935+0000 mgr.a (mgr.14150) 133 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T07:34:30.727 INFO:teuthology.orchestra.run.smithi115.stdout:Created osd(s) 0 on host 'smithi115' 2024-09-11T07:34:31.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:30 smithi115 bash[18678]: cluster 2024-09-11T07:34:28.644678+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-11T07:34:31.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:30 smithi115 bash[18678]: cluster 2024-09-11T07:34:28.644780+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-11T07:34:31.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:30 smithi115 bash[18678]: cluster 2024-09-11T07:34:29.888416+0000 mon.a (mon.0) 290 : cluster [INF] osd.0 [v2:172.21.15.115:6802/4152627375,v1:172.21.15.115:6803/4152627375] boot 2024-09-11T07:34:31.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:30 smithi115 bash[18678]: cluster 2024-09-11T07:34:29.888480+0000 mon.a (mon.0) 291 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-11T07:34:31.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:30 smithi115 bash[18678]: audit 2024-09-11T07:34:29.889148+0000 mon.a (mon.0) 292 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T07:34:31.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:30 smithi115 bash[18678]: audit 2024-09-11T07:34:30.708670+0000 mon.a (mon.0) 293 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:34:31.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:30 smithi115 bash[18678]: audit 2024-09-11T07:34:30.714195+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:31.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:30 smithi115 bash[18678]: audit 2024-09-11T07:34:30.721680+0000 mon.a (mon.0) 295 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:31.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:30 smithi150 bash[22110]: cluster 2024-09-11T07:34:28.644678+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-11T07:34:31.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:30 smithi150 bash[22110]: cluster 2024-09-11T07:34:28.644780+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-11T07:34:31.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:30 smithi150 bash[22110]: cluster 2024-09-11T07:34:29.888416+0000 mon.a (mon.0) 290 : cluster [INF] osd.0 [v2:172.21.15.115:6802/4152627375,v1:172.21.15.115:6803/4152627375] boot 2024-09-11T07:34:31.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:30 smithi150 bash[22110]: cluster 2024-09-11T07:34:29.888480+0000 mon.a (mon.0) 291 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-11T07:34:31.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:30 smithi150 bash[22110]: audit 2024-09-11T07:34:29.889148+0000 mon.a (mon.0) 292 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T07:34:31.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:30 smithi150 bash[22110]: audit 2024-09-11T07:34:30.708670+0000 mon.a (mon.0) 293 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:34:31.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:30 smithi150 bash[22110]: audit 2024-09-11T07:34:30.714195+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:31.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:30 smithi150 bash[22110]: audit 2024-09-11T07:34:30.721680+0000 mon.a (mon.0) 295 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:31.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:30 smithi181 bash[22002]: cluster 2024-09-11T07:34:28.644678+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-11T07:34:31.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:30 smithi181 bash[22002]: cluster 2024-09-11T07:34:28.644780+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-11T07:34:31.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:30 smithi181 bash[22002]: cluster 2024-09-11T07:34:29.888416+0000 mon.a (mon.0) 290 : cluster [INF] osd.0 [v2:172.21.15.115:6802/4152627375,v1:172.21.15.115:6803/4152627375] boot 2024-09-11T07:34:31.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:30 smithi181 bash[22002]: cluster 2024-09-11T07:34:29.888480+0000 mon.a (mon.0) 291 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-11T07:34:31.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:30 smithi181 bash[22002]: audit 2024-09-11T07:34:29.889148+0000 mon.a (mon.0) 292 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T07:34:31.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:30 smithi181 bash[22002]: audit 2024-09-11T07:34:30.708670+0000 mon.a (mon.0) 293 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:34:31.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:30 smithi181 bash[22002]: audit 2024-09-11T07:34:30.714195+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:31.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:30 smithi181 bash[22002]: audit 2024-09-11T07:34:30.721680+0000 mon.a (mon.0) 295 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:31.393 DEBUG:teuthology.orchestra.run.smithi115:osd.0> sudo journalctl -f -n 0 -u ceph-1973416c-700f-11ef-bcea-c7b262605968@osd.0.service 2024-09-11T07:34:31.396 INFO:tasks.cephadm:Deploying osd.1 on smithi115 with /dev/vg_nvme/lv_3... 2024-09-11T07:34:31.396 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-09-11T07:34:31.636 INFO:journalctl@ceph.osd.0.smithi115.stdout:-- Logs begin at Sun 2022-08-14 12:20:24 UTC. -- 2024-09-11T07:34:32.195 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:31 smithi150 bash[22110]: cluster 2024-09-11T07:34:30.903849+0000 mon.a (mon.0) 296 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-11T07:34:32.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:31 smithi150 bash[22110]: cluster 2024-09-11T07:34:31.032441+0000 mgr.a (mgr.14150) 134 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:32.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:31 smithi181 bash[22002]: cluster 2024-09-11T07:34:30.903849+0000 mon.a (mon.0) 296 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-11T07:34:32.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:31 smithi181 bash[22002]: cluster 2024-09-11T07:34:31.032441+0000 mgr.a (mgr.14150) 134 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:32.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:31 smithi115 bash[18678]: cluster 2024-09-11T07:34:30.903849+0000 mon.a (mon.0) 296 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-11T07:34:32.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:31 smithi115 bash[18678]: cluster 2024-09-11T07:34:31.032441+0000 mgr.a (mgr.14150) 134 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:34.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:34 smithi115 bash[18678]: cluster 2024-09-11T07:34:33.032914+0000 mgr.a (mgr.14150) 135 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:34.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:34 smithi150 bash[22110]: cluster 2024-09-11T07:34:33.032914+0000 mgr.a (mgr.14150) 135 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:34.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:34 smithi181 bash[22002]: cluster 2024-09-11T07:34:33.032914+0000 mgr.a (mgr.14150) 135 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:35.482 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:34:36.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:36 smithi115 bash[18678]: cluster 2024-09-11T07:34:35.033397+0000 mgr.a (mgr.14150) 136 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:36.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:36 smithi150 bash[22110]: cluster 2024-09-11T07:34:35.033397+0000 mgr.a (mgr.14150) 136 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:36.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:36 smithi181 bash[22002]: cluster 2024-09-11T07:34:35.033397+0000 mgr.a (mgr.14150) 136 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:38.291 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:38 smithi115 bash[18678]: cluster 2024-09-11T07:34:37.033904+0000 mgr.a (mgr.14150) 137 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:38.445 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:38 smithi150 bash[22110]: cluster 2024-09-11T07:34:37.033904+0000 mgr.a (mgr.14150) 137 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:38.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:38 smithi181 bash[22002]: cluster 2024-09-11T07:34:37.033904+0000 mgr.a (mgr.14150) 137 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:40.244 INFO:teuthology.orchestra.run.smithi115.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-09-11T07:34:40.406 INFO:teuthology.orchestra.run.smithi115.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-09-11T07:34:40.428 INFO:teuthology.orchestra.run.smithi115.stderr: stderr: 10+0 records in 2024-09-11T07:34:40.428 INFO:teuthology.orchestra.run.smithi115.stderr:10+0 records out 2024-09-11T07:34:40.428 INFO:teuthology.orchestra.run.smithi115.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0184027 s, 570 MB/s 2024-09-11T07:34:40.428 INFO:teuthology.orchestra.run.smithi115.stderr:--> Zapping successful for: 2024-09-11T07:34:40.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:40 smithi150 bash[22110]: cluster 2024-09-11T07:34:39.034474+0000 mgr.a (mgr.14150) 138 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:40.462 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:40 smithi115 bash[18678]: cluster 2024-09-11T07:34:39.034474+0000 mgr.a (mgr.14150) 138 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:40.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:40 smithi181 bash[22002]: cluster 2024-09-11T07:34:39.034474+0000 mgr.a (mgr.14150) 138 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:41.112 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph orch daemon add osd smithi115:vg_nvme/lv_3 2024-09-11T07:34:42.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:42 smithi150 bash[22110]: cluster 2024-09-11T07:34:41.034950+0000 mgr.a (mgr.14150) 139 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:42.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:42 smithi181 bash[22002]: cluster 2024-09-11T07:34:41.034950+0000 mgr.a (mgr.14150) 139 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:42.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:42 smithi115 bash[18678]: cluster 2024-09-11T07:34:41.034950+0000 mgr.a (mgr.14150) 139 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:43.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:43 smithi150 bash[22110]: cephadm 2024-09-11T07:34:42.173316+0000 mgr.a (mgr.14150) 140 : cephadm [INF] Detected new or changed devices on smithi115 2024-09-11T07:34:43.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:43 smithi150 bash[22110]: audit 2024-09-11T07:34:42.182915+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:43.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:43 smithi150 bash[22110]: audit 2024-09-11T07:34:42.191481+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:43.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:43 smithi150 bash[22110]: audit 2024-09-11T07:34:42.192938+0000 mon.a (mon.0) 299 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:34:43.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:43 smithi150 bash[22110]: cephadm 2024-09-11T07:34:42.194076+0000 mgr.a (mgr.14150) 141 : cephadm [INF] Adjusting osd_memory_target on smithi115 to 17271M 2024-09-11T07:34:43.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:43 smithi150 bash[22110]: audit 2024-09-11T07:34:42.203642+0000 mon.a (mon.0) 300 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:43.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:43 smithi150 bash[22110]: audit 2024-09-11T07:34:42.205610+0000 mon.a (mon.0) 301 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:34:43.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:43 smithi150 bash[22110]: audit 2024-09-11T07:34:42.207243+0000 mon.a (mon.0) 302 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:34:43.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:43 smithi150 bash[22110]: audit 2024-09-11T07:34:42.218681+0000 mon.a (mon.0) 303 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:43.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:43 smithi181 bash[22002]: cephadm 2024-09-11T07:34:42.173316+0000 mgr.a (mgr.14150) 140 : cephadm [INF] Detected new or changed devices on smithi115 2024-09-11T07:34:43.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:43 smithi181 bash[22002]: audit 2024-09-11T07:34:42.182915+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:43.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:43 smithi181 bash[22002]: audit 2024-09-11T07:34:42.191481+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:43.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:43 smithi181 bash[22002]: audit 2024-09-11T07:34:42.192938+0000 mon.a (mon.0) 299 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:34:43.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:43 smithi181 bash[22002]: cephadm 2024-09-11T07:34:42.194076+0000 mgr.a (mgr.14150) 141 : cephadm [INF] Adjusting osd_memory_target on smithi115 to 17271M 2024-09-11T07:34:43.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:43 smithi181 bash[22002]: audit 2024-09-11T07:34:42.203642+0000 mon.a (mon.0) 300 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:43.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:43 smithi181 bash[22002]: audit 2024-09-11T07:34:42.205610+0000 mon.a (mon.0) 301 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:34:43.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:43 smithi181 bash[22002]: audit 2024-09-11T07:34:42.207243+0000 mon.a (mon.0) 302 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:34:43.560 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:43 smithi181 bash[22002]: audit 2024-09-11T07:34:42.218681+0000 mon.a (mon.0) 303 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:43.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:43 smithi115 bash[18678]: cephadm 2024-09-11T07:34:42.173316+0000 mgr.a (mgr.14150) 140 : cephadm [INF] Detected new or changed devices on smithi115 2024-09-11T07:34:43.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:43 smithi115 bash[18678]: audit 2024-09-11T07:34:42.182915+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:43.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:43 smithi115 bash[18678]: audit 2024-09-11T07:34:42.191481+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:43.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:43 smithi115 bash[18678]: audit 2024-09-11T07:34:42.192938+0000 mon.a (mon.0) 299 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:34:43.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:43 smithi115 bash[18678]: cephadm 2024-09-11T07:34:42.194076+0000 mgr.a (mgr.14150) 141 : cephadm [INF] Adjusting osd_memory_target on smithi115 to 17271M 2024-09-11T07:34:43.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:43 smithi115 bash[18678]: audit 2024-09-11T07:34:42.203642+0000 mon.a (mon.0) 300 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:43.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:43 smithi115 bash[18678]: audit 2024-09-11T07:34:42.205610+0000 mon.a (mon.0) 301 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:34:43.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:43 smithi115 bash[18678]: audit 2024-09-11T07:34:42.207243+0000 mon.a (mon.0) 302 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:34:43.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:43 smithi115 bash[18678]: audit 2024-09-11T07:34:42.218681+0000 mon.a (mon.0) 303 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:34:44.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:44 smithi181 bash[22002]: cluster 2024-09-11T07:34:43.035428+0000 mgr.a (mgr.14150) 142 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:44.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:44 smithi115 bash[18678]: cluster 2024-09-11T07:34:43.035428+0000 mgr.a (mgr.14150) 142 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:44.695 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:44 smithi150 bash[22110]: cluster 2024-09-11T07:34:43.035428+0000 mgr.a (mgr.14150) 142 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:45.829 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:34:46.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:46 smithi181 bash[22002]: cluster 2024-09-11T07:34:45.035937+0000 mgr.a (mgr.14150) 143 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:46.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:46 smithi115 bash[18678]: cluster 2024-09-11T07:34:45.035937+0000 mgr.a (mgr.14150) 143 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:46.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:46 smithi150 bash[22110]: cluster 2024-09-11T07:34:45.035937+0000 mgr.a (mgr.14150) 143 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:48.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:48 smithi115 bash[18678]: cluster 2024-09-11T07:34:47.036591+0000 mgr.a (mgr.14150) 144 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:48.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:48 smithi181 bash[22002]: cluster 2024-09-11T07:34:47.036591+0000 mgr.a (mgr.14150) 144 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:48.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:48 smithi150 bash[22110]: cluster 2024-09-11T07:34:47.036591+0000 mgr.a (mgr.14150) 144 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:50.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:50 smithi181 bash[22002]: cluster 2024-09-11T07:34:49.037061+0000 mgr.a (mgr.14150) 145 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:50.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:50 smithi181 bash[22002]: audit 2024-09-11T07:34:49.381532+0000 mgr.a (mgr.14150) 146 : audit [DBG] from='client.14244 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi115:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:34:50.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:50 smithi181 bash[22002]: audit 2024-09-11T07:34:49.387583+0000 mon.a (mon.0) 304 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T07:34:50.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:50 smithi181 bash[22002]: audit 2024-09-11T07:34:49.393266+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T07:34:50.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:50 smithi181 bash[22002]: audit 2024-09-11T07:34:49.394631+0000 mon.a (mon.0) 306 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:34:50.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:50 smithi115 bash[18678]: cluster 2024-09-11T07:34:49.037061+0000 mgr.a (mgr.14150) 145 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:50.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:50 smithi115 bash[18678]: audit 2024-09-11T07:34:49.381532+0000 mgr.a (mgr.14150) 146 : audit [DBG] from='client.14244 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi115:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:34:50.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:50 smithi115 bash[18678]: audit 2024-09-11T07:34:49.387583+0000 mon.a (mon.0) 304 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T07:34:50.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:50 smithi115 bash[18678]: audit 2024-09-11T07:34:49.393266+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T07:34:50.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:50 smithi115 bash[18678]: audit 2024-09-11T07:34:49.394631+0000 mon.a (mon.0) 306 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:34:50.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:50 smithi150 bash[22110]: cluster 2024-09-11T07:34:49.037061+0000 mgr.a (mgr.14150) 145 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:50.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:50 smithi150 bash[22110]: audit 2024-09-11T07:34:49.381532+0000 mgr.a (mgr.14150) 146 : audit [DBG] from='client.14244 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi115:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:34:50.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:50 smithi150 bash[22110]: audit 2024-09-11T07:34:49.387583+0000 mon.a (mon.0) 304 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T07:34:50.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:50 smithi150 bash[22110]: audit 2024-09-11T07:34:49.393266+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T07:34:50.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:50 smithi150 bash[22110]: audit 2024-09-11T07:34:49.394631+0000 mon.a (mon.0) 306 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:34:52.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:52 smithi181 bash[22002]: cluster 2024-09-11T07:34:51.037519+0000 mgr.a (mgr.14150) 147 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:52.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:52 smithi115 bash[18678]: cluster 2024-09-11T07:34:51.037519+0000 mgr.a (mgr.14150) 147 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:52.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:52 smithi150 bash[22110]: cluster 2024-09-11T07:34:51.037519+0000 mgr.a (mgr.14150) 147 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:54.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:54 smithi181 bash[22002]: cluster 2024-09-11T07:34:53.038078+0000 mgr.a (mgr.14150) 148 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:54.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:54 smithi115 bash[18678]: cluster 2024-09-11T07:34:53.038078+0000 mgr.a (mgr.14150) 148 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:54.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:54 smithi150 bash[22110]: cluster 2024-09-11T07:34:53.038078+0000 mgr.a (mgr.14150) 148 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:56.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:56 smithi115 bash[18678]: cluster 2024-09-11T07:34:55.038622+0000 mgr.a (mgr.14150) 149 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:56.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:56 smithi181 bash[22002]: cluster 2024-09-11T07:34:55.038622+0000 mgr.a (mgr.14150) 149 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:56.695 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:56 smithi150 bash[22110]: cluster 2024-09-11T07:34:55.038622+0000 mgr.a (mgr.14150) 149 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:58.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:58 smithi181 bash[22002]: cluster 2024-09-11T07:34:57.038981+0000 mgr.a (mgr.14150) 150 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:58.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:58 smithi181 bash[22002]: audit 2024-09-11T07:34:57.836100+0000 mon.a (mon.0) 307 : audit [INF] from='client.? 172.21.15.115:0/3672962176' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "20e789a8-02d9-4653-ba8f-a2872aaf28aa"}]: dispatch 2024-09-11T07:34:58.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:58 smithi181 bash[22002]: audit 2024-09-11T07:34:57.845756+0000 mon.a (mon.0) 308 : audit [INF] from='client.? 172.21.15.115:0/3672962176' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "20e789a8-02d9-4653-ba8f-a2872aaf28aa"}]': finished 2024-09-11T07:34:58.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:58 smithi181 bash[22002]: cluster 2024-09-11T07:34:57.845862+0000 mon.a (mon.0) 309 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-11T07:34:58.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:58 smithi181 bash[22002]: audit 2024-09-11T07:34:57.846101+0000 mon.a (mon.0) 310 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T07:34:58.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:58 smithi115 bash[18678]: cluster 2024-09-11T07:34:57.038981+0000 mgr.a (mgr.14150) 150 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:58.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:58 smithi115 bash[18678]: audit 2024-09-11T07:34:57.836100+0000 mon.a (mon.0) 307 : audit [INF] from='client.? 172.21.15.115:0/3672962176' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "20e789a8-02d9-4653-ba8f-a2872aaf28aa"}]: dispatch 2024-09-11T07:34:58.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:58 smithi115 bash[18678]: audit 2024-09-11T07:34:57.845756+0000 mon.a (mon.0) 308 : audit [INF] from='client.? 172.21.15.115:0/3672962176' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "20e789a8-02d9-4653-ba8f-a2872aaf28aa"}]': finished 2024-09-11T07:34:58.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:58 smithi115 bash[18678]: cluster 2024-09-11T07:34:57.845862+0000 mon.a (mon.0) 309 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-11T07:34:58.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:58 smithi115 bash[18678]: audit 2024-09-11T07:34:57.846101+0000 mon.a (mon.0) 310 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T07:34:58.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:58 smithi150 bash[22110]: cluster 2024-09-11T07:34:57.038981+0000 mgr.a (mgr.14150) 150 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:34:58.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:58 smithi150 bash[22110]: audit 2024-09-11T07:34:57.836100+0000 mon.a (mon.0) 307 : audit [INF] from='client.? 172.21.15.115:0/3672962176' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "20e789a8-02d9-4653-ba8f-a2872aaf28aa"}]: dispatch 2024-09-11T07:34:58.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:58 smithi150 bash[22110]: audit 2024-09-11T07:34:57.845756+0000 mon.a (mon.0) 308 : audit [INF] from='client.? 172.21.15.115:0/3672962176' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "20e789a8-02d9-4653-ba8f-a2872aaf28aa"}]': finished 2024-09-11T07:34:58.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:58 smithi150 bash[22110]: cluster 2024-09-11T07:34:57.845862+0000 mon.a (mon.0) 309 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-11T07:34:58.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:58 smithi150 bash[22110]: audit 2024-09-11T07:34:57.846101+0000 mon.a (mon.0) 310 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T07:34:59.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:34:59 smithi181 bash[22002]: audit 2024-09-11T07:34:58.526464+0000 mon.a (mon.0) 311 : audit [DBG] from='client.? 172.21.15.115:0/736926492' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T07:34:59.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:34:59 smithi115 bash[18678]: audit 2024-09-11T07:34:58.526464+0000 mon.a (mon.0) 311 : audit [DBG] from='client.? 172.21.15.115:0/736926492' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T07:34:59.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:34:59 smithi150 bash[22110]: audit 2024-09-11T07:34:58.526464+0000 mon.a (mon.0) 311 : audit [DBG] from='client.? 172.21.15.115:0/736926492' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T07:35:00.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:00 smithi181 bash[22002]: cluster 2024-09-11T07:34:59.039410+0000 mgr.a (mgr.14150) 151 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:00.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:00 smithi115 bash[18678]: cluster 2024-09-11T07:34:59.039410+0000 mgr.a (mgr.14150) 151 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:00.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:00 smithi150 bash[22110]: cluster 2024-09-11T07:34:59.039410+0000 mgr.a (mgr.14150) 151 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:02.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:02 smithi181 bash[22002]: cluster 2024-09-11T07:35:01.039967+0000 mgr.a (mgr.14150) 152 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:02.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:02 smithi115 bash[18678]: cluster 2024-09-11T07:35:01.039967+0000 mgr.a (mgr.14150) 152 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:02.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:02 smithi150 bash[22110]: cluster 2024-09-11T07:35:01.039967+0000 mgr.a (mgr.14150) 152 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:04.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:04 smithi181 bash[22002]: cluster 2024-09-11T07:35:03.040543+0000 mgr.a (mgr.14150) 153 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:04.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:04 smithi115 bash[18678]: cluster 2024-09-11T07:35:03.040543+0000 mgr.a (mgr.14150) 153 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:04.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:04 smithi150 bash[22110]: cluster 2024-09-11T07:35:03.040543+0000 mgr.a (mgr.14150) 153 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:06.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:06 smithi181 bash[22002]: cluster 2024-09-11T07:35:05.041001+0000 mgr.a (mgr.14150) 154 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:06.587 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:06 smithi115 bash[18678]: cluster 2024-09-11T07:35:05.041001+0000 mgr.a (mgr.14150) 154 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:06.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:06 smithi150 bash[22110]: cluster 2024-09-11T07:35:05.041001+0000 mgr.a (mgr.14150) 154 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:08.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:08 smithi181 bash[22002]: cluster 2024-09-11T07:35:07.041476+0000 mgr.a (mgr.14150) 155 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:08.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:08 smithi115 bash[18678]: cluster 2024-09-11T07:35:07.041476+0000 mgr.a (mgr.14150) 155 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:08.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:08 smithi150 bash[22110]: cluster 2024-09-11T07:35:07.041476+0000 mgr.a (mgr.14150) 155 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:10.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:10 smithi181 bash[22002]: cluster 2024-09-11T07:35:09.041979+0000 mgr.a (mgr.14150) 156 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:10.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:10 smithi115 bash[18678]: cluster 2024-09-11T07:35:09.041979+0000 mgr.a (mgr.14150) 156 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:10.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:10 smithi150 bash[22110]: cluster 2024-09-11T07:35:09.041979+0000 mgr.a (mgr.14150) 156 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:11.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:11 smithi181 bash[22002]: audit 2024-09-11T07:35:10.784915+0000 mon.a (mon.0) 312 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-11T07:35:11.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:11 smithi181 bash[22002]: audit 2024-09-11T07:35:10.786599+0000 mon.a (mon.0) 313 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:35:11.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:11 smithi115 bash[18678]: audit 2024-09-11T07:35:10.784915+0000 mon.a (mon.0) 312 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-11T07:35:11.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:11 smithi115 bash[18678]: audit 2024-09-11T07:35:10.786599+0000 mon.a (mon.0) 313 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:35:11.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:11 smithi150 bash[22110]: audit 2024-09-11T07:35:10.784915+0000 mon.a (mon.0) 312 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-11T07:35:11.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:11 smithi150 bash[22110]: audit 2024-09-11T07:35:10.786599+0000 mon.a (mon.0) 313 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:35:12.462 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:12 smithi115 bash[18678]: cephadm 2024-09-11T07:35:10.788058+0000 mgr.a (mgr.14150) 157 : cephadm [INF] Deploying daemon osd.1 on smithi115 2024-09-11T07:35:12.462 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:12 smithi115 bash[18678]: cluster 2024-09-11T07:35:11.042398+0000 mgr.a (mgr.14150) 158 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:12.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:12 smithi181 bash[22002]: cephadm 2024-09-11T07:35:10.788058+0000 mgr.a (mgr.14150) 157 : cephadm [INF] Deploying daemon osd.1 on smithi115 2024-09-11T07:35:12.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:12 smithi181 bash[22002]: cluster 2024-09-11T07:35:11.042398+0000 mgr.a (mgr.14150) 158 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:12.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:12 smithi150 bash[22110]: cephadm 2024-09-11T07:35:10.788058+0000 mgr.a (mgr.14150) 157 : cephadm [INF] Deploying daemon osd.1 on smithi115 2024-09-11T07:35:12.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:12 smithi150 bash[22110]: cluster 2024-09-11T07:35:11.042398+0000 mgr.a (mgr.14150) 158 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:14.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:14 smithi115 bash[18678]: cluster 2024-09-11T07:35:13.042889+0000 mgr.a (mgr.14150) 159 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:14.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:14 smithi181 bash[22002]: cluster 2024-09-11T07:35:13.042889+0000 mgr.a (mgr.14150) 159 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:14.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:14 smithi150 bash[22110]: cluster 2024-09-11T07:35:13.042889+0000 mgr.a (mgr.14150) 159 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:16.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:16 smithi181 bash[22002]: cluster 2024-09-11T07:35:15.043302+0000 mgr.a (mgr.14150) 160 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:16.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:16 smithi181 bash[22002]: audit 2024-09-11T07:35:15.540320+0000 mon.a (mon.0) 314 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:35:16.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:16 smithi181 bash[22002]: audit 2024-09-11T07:35:15.545330+0000 mon.a (mon.0) 315 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:16.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:16 smithi181 bash[22002]: audit 2024-09-11T07:35:15.550990+0000 mon.a (mon.0) 316 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:16.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:16 smithi115 bash[18678]: cluster 2024-09-11T07:35:15.043302+0000 mgr.a (mgr.14150) 160 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:16.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:16 smithi115 bash[18678]: audit 2024-09-11T07:35:15.540320+0000 mon.a (mon.0) 314 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:35:16.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:16 smithi115 bash[18678]: audit 2024-09-11T07:35:15.545330+0000 mon.a (mon.0) 315 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:16.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:16 smithi115 bash[18678]: audit 2024-09-11T07:35:15.550990+0000 mon.a (mon.0) 316 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:16.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:16 smithi150 bash[22110]: cluster 2024-09-11T07:35:15.043302+0000 mgr.a (mgr.14150) 160 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:16.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:16 smithi150 bash[22110]: audit 2024-09-11T07:35:15.540320+0000 mon.a (mon.0) 314 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:35:16.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:16 smithi150 bash[22110]: audit 2024-09-11T07:35:15.545330+0000 mon.a (mon.0) 315 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:16.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:16 smithi150 bash[22110]: audit 2024-09-11T07:35:15.550990+0000 mon.a (mon.0) 316 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:18.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:18 smithi115 bash[18678]: cluster 2024-09-11T07:35:17.043619+0000 mgr.a (mgr.14150) 161 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:18.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:18 smithi181 bash[22002]: cluster 2024-09-11T07:35:17.043619+0000 mgr.a (mgr.14150) 161 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:18.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:18 smithi150 bash[22110]: cluster 2024-09-11T07:35:17.043619+0000 mgr.a (mgr.14150) 161 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:20.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:20 smithi115 bash[18678]: cluster 2024-09-11T07:35:19.044001+0000 mgr.a (mgr.14150) 162 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:20.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:20 smithi150 bash[22110]: cluster 2024-09-11T07:35:19.044001+0000 mgr.a (mgr.14150) 162 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:20.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:20 smithi181 bash[22002]: cluster 2024-09-11T07:35:19.044001+0000 mgr.a (mgr.14150) 162 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:22.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:22 smithi115 bash[18678]: cluster 2024-09-11T07:35:21.044505+0000 mgr.a (mgr.14150) 163 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:22.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:22 smithi115 bash[18678]: audit 2024-09-11T07:35:21.808233+0000 mon.a (mon.0) 317 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:22.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:22 smithi115 bash[18678]: audit 2024-09-11T07:35:21.815471+0000 mon.a (mon.0) 318 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:22.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:22 smithi115 bash[18678]: audit 2024-09-11T07:35:22.186799+0000 mon.a (mon.0) 319 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:35:22.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:22 smithi115 bash[18678]: audit 2024-09-11T07:35:22.188554+0000 mon.a (mon.0) 320 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:35:22.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:22 smithi115 bash[18678]: audit 2024-09-11T07:35:22.199025+0000 mon.a (mon.0) 321 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:22.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:22 smithi150 bash[22110]: cluster 2024-09-11T07:35:21.044505+0000 mgr.a (mgr.14150) 163 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:22.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:22 smithi150 bash[22110]: audit 2024-09-11T07:35:21.808233+0000 mon.a (mon.0) 317 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:22.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:22 smithi150 bash[22110]: audit 2024-09-11T07:35:21.815471+0000 mon.a (mon.0) 318 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:22.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:22 smithi150 bash[22110]: audit 2024-09-11T07:35:22.186799+0000 mon.a (mon.0) 319 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:35:22.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:22 smithi150 bash[22110]: audit 2024-09-11T07:35:22.188554+0000 mon.a (mon.0) 320 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:35:22.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:22 smithi150 bash[22110]: audit 2024-09-11T07:35:22.199025+0000 mon.a (mon.0) 321 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:22.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:22 smithi181 bash[22002]: cluster 2024-09-11T07:35:21.044505+0000 mgr.a (mgr.14150) 163 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:22.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:22 smithi181 bash[22002]: audit 2024-09-11T07:35:21.808233+0000 mon.a (mon.0) 317 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:22.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:22 smithi181 bash[22002]: audit 2024-09-11T07:35:21.815471+0000 mon.a (mon.0) 318 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:22.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:22 smithi181 bash[22002]: audit 2024-09-11T07:35:22.186799+0000 mon.a (mon.0) 319 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:35:22.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:22 smithi181 bash[22002]: audit 2024-09-11T07:35:22.188554+0000 mon.a (mon.0) 320 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:35:22.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:22 smithi181 bash[22002]: audit 2024-09-11T07:35:22.199025+0000 mon.a (mon.0) 321 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:23.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:23 smithi115 bash[18678]: audit 2024-09-11T07:35:22.718231+0000 mon.a (mon.0) 322 : audit [INF] from='osd.1 [v2:172.21.15.115:6810/660496757,v1:172.21.15.115:6811/660496757]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-11T07:35:23.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:23 smithi150 bash[22110]: audit 2024-09-11T07:35:22.718231+0000 mon.a (mon.0) 322 : audit [INF] from='osd.1 [v2:172.21.15.115:6810/660496757,v1:172.21.15.115:6811/660496757]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-11T07:35:23.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:23 smithi181 bash[22002]: audit 2024-09-11T07:35:22.718231+0000 mon.a (mon.0) 322 : audit [INF] from='osd.1 [v2:172.21.15.115:6810/660496757,v1:172.21.15.115:6811/660496757]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-11T07:35:24.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:24 smithi115 bash[18678]: cluster 2024-09-11T07:35:23.045055+0000 mgr.a (mgr.14150) 164 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:24.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:24 smithi115 bash[18678]: audit 2024-09-11T07:35:23.329467+0000 mon.a (mon.0) 323 : audit [INF] from='osd.1 [v2:172.21.15.115:6810/660496757,v1:172.21.15.115:6811/660496757]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-11T07:35:24.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:24 smithi115 bash[18678]: cluster 2024-09-11T07:35:23.329539+0000 mon.a (mon.0) 324 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-11T07:35:24.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:24 smithi115 bash[18678]: audit 2024-09-11T07:35:23.329690+0000 mon.a (mon.0) 325 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T07:35:24.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:24 smithi115 bash[18678]: audit 2024-09-11T07:35:23.330434+0000 mon.a (mon.0) 326 : audit [INF] from='osd.1 [v2:172.21.15.115:6810/660496757,v1:172.21.15.115:6811/660496757]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi115", "root=default"]}]: dispatch 2024-09-11T07:35:24.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:24 smithi150 bash[22110]: cluster 2024-09-11T07:35:23.045055+0000 mgr.a (mgr.14150) 164 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:24.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:24 smithi150 bash[22110]: audit 2024-09-11T07:35:23.329467+0000 mon.a (mon.0) 323 : audit [INF] from='osd.1 [v2:172.21.15.115:6810/660496757,v1:172.21.15.115:6811/660496757]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-11T07:35:24.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:24 smithi150 bash[22110]: cluster 2024-09-11T07:35:23.329539+0000 mon.a (mon.0) 324 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-11T07:35:24.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:24 smithi150 bash[22110]: audit 2024-09-11T07:35:23.329690+0000 mon.a (mon.0) 325 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T07:35:24.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:24 smithi150 bash[22110]: audit 2024-09-11T07:35:23.330434+0000 mon.a (mon.0) 326 : audit [INF] from='osd.1 [v2:172.21.15.115:6810/660496757,v1:172.21.15.115:6811/660496757]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi115", "root=default"]}]: dispatch 2024-09-11T07:35:24.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:24 smithi181 bash[22002]: cluster 2024-09-11T07:35:23.045055+0000 mgr.a (mgr.14150) 164 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:24.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:24 smithi181 bash[22002]: audit 2024-09-11T07:35:23.329467+0000 mon.a (mon.0) 323 : audit [INF] from='osd.1 [v2:172.21.15.115:6810/660496757,v1:172.21.15.115:6811/660496757]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-11T07:35:24.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:24 smithi181 bash[22002]: cluster 2024-09-11T07:35:23.329539+0000 mon.a (mon.0) 324 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-11T07:35:24.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:24 smithi181 bash[22002]: audit 2024-09-11T07:35:23.329690+0000 mon.a (mon.0) 325 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T07:35:24.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:24 smithi181 bash[22002]: audit 2024-09-11T07:35:23.330434+0000 mon.a (mon.0) 326 : audit [INF] from='osd.1 [v2:172.21.15.115:6810/660496757,v1:172.21.15.115:6811/660496757]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi115", "root=default"]}]: dispatch 2024-09-11T07:35:25.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:25 smithi115 bash[18678]: audit 2024-09-11T07:35:24.329196+0000 mon.a (mon.0) 327 : audit [INF] from='osd.1 [v2:172.21.15.115:6810/660496757,v1:172.21.15.115:6811/660496757]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi115", "root=default"]}]': finished 2024-09-11T07:35:25.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:25 smithi115 bash[18678]: cluster 2024-09-11T07:35:24.329328+0000 mon.a (mon.0) 328 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-11T07:35:25.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:25 smithi115 bash[18678]: audit 2024-09-11T07:35:24.330037+0000 mon.a (mon.0) 329 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T07:35:25.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:25 smithi115 bash[18678]: audit 2024-09-11T07:35:24.337530+0000 mon.a (mon.0) 330 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T07:35:25.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:25 smithi150 bash[22110]: audit 2024-09-11T07:35:24.329196+0000 mon.a (mon.0) 327 : audit [INF] from='osd.1 [v2:172.21.15.115:6810/660496757,v1:172.21.15.115:6811/660496757]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi115", "root=default"]}]': finished 2024-09-11T07:35:25.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:25 smithi150 bash[22110]: cluster 2024-09-11T07:35:24.329328+0000 mon.a (mon.0) 328 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-11T07:35:25.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:25 smithi150 bash[22110]: audit 2024-09-11T07:35:24.330037+0000 mon.a (mon.0) 329 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T07:35:25.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:25 smithi150 bash[22110]: audit 2024-09-11T07:35:24.337530+0000 mon.a (mon.0) 330 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T07:35:25.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:25 smithi181 bash[22002]: audit 2024-09-11T07:35:24.329196+0000 mon.a (mon.0) 327 : audit [INF] from='osd.1 [v2:172.21.15.115:6810/660496757,v1:172.21.15.115:6811/660496757]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi115", "root=default"]}]': finished 2024-09-11T07:35:25.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:25 smithi181 bash[22002]: cluster 2024-09-11T07:35:24.329328+0000 mon.a (mon.0) 328 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-11T07:35:25.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:25 smithi181 bash[22002]: audit 2024-09-11T07:35:24.330037+0000 mon.a (mon.0) 329 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T07:35:25.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:25 smithi181 bash[22002]: audit 2024-09-11T07:35:24.337530+0000 mon.a (mon.0) 330 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T07:35:25.913 INFO:teuthology.orchestra.run.smithi115.stdout:Created osd(s) 1 on host 'smithi115' 2024-09-11T07:35:26.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:26 smithi115 bash[18678]: cluster 2024-09-11T07:35:23.683007+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-11T07:35:26.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:26 smithi115 bash[18678]: cluster 2024-09-11T07:35:23.683102+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-11T07:35:26.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:26 smithi115 bash[18678]: cluster 2024-09-11T07:35:25.045515+0000 mgr.a (mgr.14150) 165 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:26.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:26 smithi115 bash[18678]: cluster 2024-09-11T07:35:25.339876+0000 mon.a (mon.0) 331 : cluster [INF] osd.1 [v2:172.21.15.115:6810/660496757,v1:172.21.15.115:6811/660496757] boot 2024-09-11T07:35:26.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:26 smithi115 bash[18678]: cluster 2024-09-11T07:35:25.339944+0000 mon.a (mon.0) 332 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-11T07:35:26.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:26 smithi115 bash[18678]: audit 2024-09-11T07:35:25.340650+0000 mon.a (mon.0) 333 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T07:35:26.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:26 smithi115 bash[18678]: audit 2024-09-11T07:35:25.894929+0000 mon.a (mon.0) 334 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:35:26.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:26 smithi115 bash[18678]: audit 2024-09-11T07:35:25.900772+0000 mon.a (mon.0) 335 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:26.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:26 smithi115 bash[18678]: audit 2024-09-11T07:35:25.906504+0000 mon.a (mon.0) 336 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:26.616 DEBUG:teuthology.orchestra.run.smithi115:osd.1> sudo journalctl -f -n 0 -u ceph-1973416c-700f-11ef-bcea-c7b262605968@osd.1.service 2024-09-11T07:35:26.619 INFO:tasks.cephadm:Deploying osd.2 on smithi150 with /dev/vg_nvme/lv_4... 2024-09-11T07:35:26.619 DEBUG:teuthology.orchestra.run.smithi150:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-09-11T07:35:26.632 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:26 smithi150 bash[22110]: cluster 2024-09-11T07:35:23.683007+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-11T07:35:26.633 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:26 smithi150 bash[22110]: cluster 2024-09-11T07:35:23.683102+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-11T07:35:26.633 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:26 smithi150 bash[22110]: cluster 2024-09-11T07:35:25.045515+0000 mgr.a (mgr.14150) 165 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:26.633 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:26 smithi150 bash[22110]: cluster 2024-09-11T07:35:25.339876+0000 mon.a (mon.0) 331 : cluster [INF] osd.1 [v2:172.21.15.115:6810/660496757,v1:172.21.15.115:6811/660496757] boot 2024-09-11T07:35:26.633 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:26 smithi150 bash[22110]: cluster 2024-09-11T07:35:25.339944+0000 mon.a (mon.0) 332 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-11T07:35:26.633 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:26 smithi150 bash[22110]: audit 2024-09-11T07:35:25.340650+0000 mon.a (mon.0) 333 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T07:35:26.633 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:26 smithi150 bash[22110]: audit 2024-09-11T07:35:25.894929+0000 mon.a (mon.0) 334 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:35:26.633 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:26 smithi150 bash[22110]: audit 2024-09-11T07:35:25.900772+0000 mon.a (mon.0) 335 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:26.633 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:26 smithi150 bash[22110]: audit 2024-09-11T07:35:25.906504+0000 mon.a (mon.0) 336 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:26.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:26 smithi181 bash[22002]: cluster 2024-09-11T07:35:23.683007+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-11T07:35:26.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:26 smithi181 bash[22002]: cluster 2024-09-11T07:35:23.683102+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-11T07:35:26.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:26 smithi181 bash[22002]: cluster 2024-09-11T07:35:25.045515+0000 mgr.a (mgr.14150) 165 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-11T07:35:26.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:26 smithi181 bash[22002]: cluster 2024-09-11T07:35:25.339876+0000 mon.a (mon.0) 331 : cluster [INF] osd.1 [v2:172.21.15.115:6810/660496757,v1:172.21.15.115:6811/660496757] boot 2024-09-11T07:35:26.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:26 smithi181 bash[22002]: cluster 2024-09-11T07:35:25.339944+0000 mon.a (mon.0) 332 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-11T07:35:26.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:26 smithi181 bash[22002]: audit 2024-09-11T07:35:25.340650+0000 mon.a (mon.0) 333 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T07:35:26.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:26 smithi181 bash[22002]: audit 2024-09-11T07:35:25.894929+0000 mon.a (mon.0) 334 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:35:26.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:26 smithi181 bash[22002]: audit 2024-09-11T07:35:25.900772+0000 mon.a (mon.0) 335 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:26.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:26 smithi181 bash[22002]: audit 2024-09-11T07:35:25.906504+0000 mon.a (mon.0) 336 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:26.887 INFO:journalctl@ceph.osd.1.smithi115.stdout:-- Logs begin at Sun 2022-08-14 12:20:24 UTC. -- 2024-09-11T07:35:27.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:27 smithi150 bash[22110]: cluster 2024-09-11T07:35:26.357135+0000 mon.a (mon.0) 337 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-11T07:35:27.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:27 smithi181 bash[22002]: cluster 2024-09-11T07:35:26.357135+0000 mon.a (mon.0) 337 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-11T07:35:27.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:27 smithi115 bash[18678]: cluster 2024-09-11T07:35:26.357135+0000 mon.a (mon.0) 337 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-11T07:35:28.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:28 smithi150 bash[22110]: cluster 2024-09-11T07:35:27.046094+0000 mgr.a (mgr.14150) 166 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:28.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:28 smithi181 bash[22002]: cluster 2024-09-11T07:35:27.046094+0000 mgr.a (mgr.14150) 166 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:28.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:28 smithi115 bash[18678]: cluster 2024-09-11T07:35:27.046094+0000 mgr.a (mgr.14150) 166 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:30.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:30 smithi150 bash[22110]: cluster 2024-09-11T07:35:29.046601+0000 mgr.a (mgr.14150) 167 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:30.788 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:30 smithi115 bash[18678]: cluster 2024-09-11T07:35:29.046601+0000 mgr.a (mgr.14150) 167 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:30.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:30 smithi181 bash[22002]: cluster 2024-09-11T07:35:29.046601+0000 mgr.a (mgr.14150) 167 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:31.340 INFO:teuthology.orchestra.run.smithi150.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.b/config 2024-09-11T07:35:32.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:32 smithi150 bash[22110]: cluster 2024-09-11T07:35:31.047101+0000 mgr.a (mgr.14150) 168 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:32.806 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:32 smithi115 bash[18678]: cluster 2024-09-11T07:35:31.047101+0000 mgr.a (mgr.14150) 168 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:32.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:32 smithi181 bash[22002]: cluster 2024-09-11T07:35:31.047101+0000 mgr.a (mgr.14150) 168 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:34.603 INFO:teuthology.orchestra.run.smithi150.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-09-11T07:35:34.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:34 smithi150 bash[22110]: cluster 2024-09-11T07:35:33.047576+0000 mgr.a (mgr.14150) 169 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:34.783 INFO:teuthology.orchestra.run.smithi150.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-09-11T07:35:34.804 INFO:teuthology.orchestra.run.smithi150.stderr: stderr: 10+0 records in 2024-09-11T07:35:34.804 INFO:teuthology.orchestra.run.smithi150.stderr:10+0 records out 2024-09-11T07:35:34.804 INFO:teuthology.orchestra.run.smithi150.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0183157 s, 573 MB/s 2024-09-11T07:35:34.804 INFO:teuthology.orchestra.run.smithi150.stderr:--> Zapping successful for: 2024-09-11T07:35:34.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:34 smithi181 bash[22002]: cluster 2024-09-11T07:35:33.047576+0000 mgr.a (mgr.14150) 169 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:34.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:34 smithi115 bash[18678]: cluster 2024-09-11T07:35:33.047576+0000 mgr.a (mgr.14150) 169 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:35.484 DEBUG:teuthology.orchestra.run.smithi150:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph orch daemon add osd smithi150:vg_nvme/lv_4 2024-09-11T07:35:36.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:36 smithi150 bash[22110]: cluster 2024-09-11T07:35:35.048089+0000 mgr.a (mgr.14150) 170 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:36.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:36 smithi150 bash[22110]: audit 2024-09-11T07:35:36.319243+0000 mon.a (mon.0) 338 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:36.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:36 smithi150 bash[22110]: audit 2024-09-11T07:35:36.326297+0000 mon.a (mon.0) 339 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:36.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:36 smithi150 bash[22110]: audit 2024-09-11T07:35:36.327680+0000 mon.a (mon.0) 340 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:35:36.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:36 smithi150 bash[22110]: audit 2024-09-11T07:35:36.329290+0000 mon.a (mon.0) 341 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:35:36.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:36 smithi150 bash[22110]: audit 2024-09-11T07:35:36.338572+0000 mon.a (mon.0) 342 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:36.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:36 smithi150 bash[22110]: audit 2024-09-11T07:35:36.340640+0000 mon.a (mon.0) 343 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:35:36.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:36 smithi150 bash[22110]: audit 2024-09-11T07:35:36.342230+0000 mon.a (mon.0) 344 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:35:36.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:36 smithi150 bash[22110]: audit 2024-09-11T07:35:36.350407+0000 mon.a (mon.0) 345 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:36.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:36 smithi181 bash[22002]: cluster 2024-09-11T07:35:35.048089+0000 mgr.a (mgr.14150) 170 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:36.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:36 smithi181 bash[22002]: audit 2024-09-11T07:35:36.319243+0000 mon.a (mon.0) 338 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:36.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:36 smithi181 bash[22002]: audit 2024-09-11T07:35:36.326297+0000 mon.a (mon.0) 339 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:36.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:36 smithi181 bash[22002]: audit 2024-09-11T07:35:36.327680+0000 mon.a (mon.0) 340 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:35:36.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:36 smithi181 bash[22002]: audit 2024-09-11T07:35:36.329290+0000 mon.a (mon.0) 341 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:35:36.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:36 smithi181 bash[22002]: audit 2024-09-11T07:35:36.338572+0000 mon.a (mon.0) 342 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:36.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:36 smithi181 bash[22002]: audit 2024-09-11T07:35:36.340640+0000 mon.a (mon.0) 343 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:35:36.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:36 smithi181 bash[22002]: audit 2024-09-11T07:35:36.342230+0000 mon.a (mon.0) 344 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:35:36.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:36 smithi181 bash[22002]: audit 2024-09-11T07:35:36.350407+0000 mon.a (mon.0) 345 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:36.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:36 smithi115 bash[18678]: cluster 2024-09-11T07:35:35.048089+0000 mgr.a (mgr.14150) 170 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:36.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:36 smithi115 bash[18678]: audit 2024-09-11T07:35:36.319243+0000 mon.a (mon.0) 338 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:36.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:36 smithi115 bash[18678]: audit 2024-09-11T07:35:36.326297+0000 mon.a (mon.0) 339 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:36.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:36 smithi115 bash[18678]: audit 2024-09-11T07:35:36.327680+0000 mon.a (mon.0) 340 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:35:36.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:36 smithi115 bash[18678]: audit 2024-09-11T07:35:36.329290+0000 mon.a (mon.0) 341 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:35:36.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:36 smithi115 bash[18678]: audit 2024-09-11T07:35:36.338572+0000 mon.a (mon.0) 342 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:36.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:36 smithi115 bash[18678]: audit 2024-09-11T07:35:36.340640+0000 mon.a (mon.0) 343 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:35:36.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:36 smithi115 bash[18678]: audit 2024-09-11T07:35:36.342230+0000 mon.a (mon.0) 344 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:35:36.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:36 smithi115 bash[18678]: audit 2024-09-11T07:35:36.350407+0000 mon.a (mon.0) 345 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:35:37.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:37 smithi150 bash[22110]: cephadm 2024-09-11T07:35:36.312370+0000 mgr.a (mgr.14150) 171 : cephadm [INF] Detected new or changed devices on smithi115 2024-09-11T07:35:37.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:37 smithi150 bash[22110]: cephadm 2024-09-11T07:35:36.330446+0000 mgr.a (mgr.14150) 172 : cephadm [INF] Adjusting osd_memory_target on smithi115 to 8635M 2024-09-11T07:35:37.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:37 smithi181 bash[22002]: cephadm 2024-09-11T07:35:36.312370+0000 mgr.a (mgr.14150) 171 : cephadm [INF] Detected new or changed devices on smithi115 2024-09-11T07:35:37.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:37 smithi181 bash[22002]: cephadm 2024-09-11T07:35:36.330446+0000 mgr.a (mgr.14150) 172 : cephadm [INF] Adjusting osd_memory_target on smithi115 to 8635M 2024-09-11T07:35:37.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:37 smithi115 bash[18678]: cephadm 2024-09-11T07:35:36.312370+0000 mgr.a (mgr.14150) 171 : cephadm [INF] Detected new or changed devices on smithi115 2024-09-11T07:35:37.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:37 smithi115 bash[18678]: cephadm 2024-09-11T07:35:36.330446+0000 mgr.a (mgr.14150) 172 : cephadm [INF] Adjusting osd_memory_target on smithi115 to 8635M 2024-09-11T07:35:38.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:38 smithi150 bash[22110]: cluster 2024-09-11T07:35:37.048692+0000 mgr.a (mgr.14150) 173 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:38.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:38 smithi181 bash[22002]: cluster 2024-09-11T07:35:37.048692+0000 mgr.a (mgr.14150) 173 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:38.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:38 smithi115 bash[18678]: cluster 2024-09-11T07:35:37.048692+0000 mgr.a (mgr.14150) 173 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:40.249 INFO:teuthology.orchestra.run.smithi150.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.b/config 2024-09-11T07:35:40.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:40 smithi150 bash[22110]: cluster 2024-09-11T07:35:39.049256+0000 mgr.a (mgr.14150) 174 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:40.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:40 smithi181 bash[22002]: cluster 2024-09-11T07:35:39.049256+0000 mgr.a (mgr.14150) 174 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:40.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:40 smithi115 bash[18678]: cluster 2024-09-11T07:35:39.049256+0000 mgr.a (mgr.14150) 174 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:42.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:42 smithi150 bash[22110]: cluster 2024-09-11T07:35:41.049817+0000 mgr.a (mgr.14150) 175 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:42.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:42 smithi181 bash[22002]: cluster 2024-09-11T07:35:41.049817+0000 mgr.a (mgr.14150) 175 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:42.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:42 smithi115 bash[18678]: cluster 2024-09-11T07:35:41.049817+0000 mgr.a (mgr.14150) 175 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:43.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:43 smithi150 bash[22110]: audit 2024-09-11T07:35:43.390821+0000 mon.a (mon.0) 346 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T07:35:43.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:43 smithi150 bash[22110]: audit 2024-09-11T07:35:43.396755+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T07:35:43.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:43 smithi150 bash[22110]: audit 2024-09-11T07:35:43.398221+0000 mon.a (mon.0) 348 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:35:43.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:43 smithi181 bash[22002]: audit 2024-09-11T07:35:43.390821+0000 mon.a (mon.0) 346 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T07:35:43.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:43 smithi181 bash[22002]: audit 2024-09-11T07:35:43.396755+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T07:35:43.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:43 smithi181 bash[22002]: audit 2024-09-11T07:35:43.398221+0000 mon.a (mon.0) 348 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:35:43.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:43 smithi115 bash[18678]: audit 2024-09-11T07:35:43.390821+0000 mon.a (mon.0) 346 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T07:35:43.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:43 smithi115 bash[18678]: audit 2024-09-11T07:35:43.396755+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T07:35:43.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:43 smithi115 bash[18678]: audit 2024-09-11T07:35:43.398221+0000 mon.a (mon.0) 348 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:35:44.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:44 smithi150 bash[22110]: cluster 2024-09-11T07:35:43.050342+0000 mgr.a (mgr.14150) 176 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:44.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:44 smithi150 bash[22110]: audit 2024-09-11T07:35:43.384192+0000 mgr.a (mgr.14150) 177 : audit [DBG] from='client.24170 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi150:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:35:44.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:44 smithi181 bash[22002]: cluster 2024-09-11T07:35:43.050342+0000 mgr.a (mgr.14150) 176 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:44.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:44 smithi181 bash[22002]: audit 2024-09-11T07:35:43.384192+0000 mgr.a (mgr.14150) 177 : audit [DBG] from='client.24170 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi150:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:35:44.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:44 smithi115 bash[18678]: cluster 2024-09-11T07:35:43.050342+0000 mgr.a (mgr.14150) 176 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:44.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:44 smithi115 bash[18678]: audit 2024-09-11T07:35:43.384192+0000 mgr.a (mgr.14150) 177 : audit [DBG] from='client.24170 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi150:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:35:46.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:46 smithi150 bash[22110]: cluster 2024-09-11T07:35:45.050817+0000 mgr.a (mgr.14150) 178 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:46.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:46 smithi181 bash[22002]: cluster 2024-09-11T07:35:45.050817+0000 mgr.a (mgr.14150) 178 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:46.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:46 smithi115 bash[18678]: cluster 2024-09-11T07:35:45.050817+0000 mgr.a (mgr.14150) 178 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:48.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:48 smithi150 bash[22110]: cluster 2024-09-11T07:35:47.051366+0000 mgr.a (mgr.14150) 179 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:48.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:48 smithi181 bash[22002]: cluster 2024-09-11T07:35:47.051366+0000 mgr.a (mgr.14150) 179 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:48.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:48 smithi115 bash[18678]: cluster 2024-09-11T07:35:47.051366+0000 mgr.a (mgr.14150) 179 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:50.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:50 smithi150 bash[22110]: cluster 2024-09-11T07:35:49.051923+0000 mgr.a (mgr.14150) 180 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:50.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:50 smithi181 bash[22002]: cluster 2024-09-11T07:35:49.051923+0000 mgr.a (mgr.14150) 180 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:50.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:50 smithi115 bash[18678]: cluster 2024-09-11T07:35:49.051923+0000 mgr.a (mgr.14150) 180 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:52.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:52 smithi150 bash[22110]: cluster 2024-09-11T07:35:51.052490+0000 mgr.a (mgr.14150) 181 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:52.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:52 smithi150 bash[22110]: audit 2024-09-11T07:35:51.947045+0000 mon.b (mon.2) 6 : audit [INF] from='client.? 172.21.15.150:0/198279302' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "40aff587-3e34-4cab-b381-c117fe9e36c7"}]: dispatch 2024-09-11T07:35:52.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:52 smithi150 bash[22110]: audit 2024-09-11T07:35:51.948127+0000 mon.a (mon.0) 349 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "40aff587-3e34-4cab-b381-c117fe9e36c7"}]: dispatch 2024-09-11T07:35:52.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:52 smithi150 bash[22110]: audit 2024-09-11T07:35:51.958294+0000 mon.a (mon.0) 350 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "40aff587-3e34-4cab-b381-c117fe9e36c7"}]': finished 2024-09-11T07:35:52.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:52 smithi150 bash[22110]: cluster 2024-09-11T07:35:51.958475+0000 mon.a (mon.0) 351 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-11T07:35:52.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:52 smithi150 bash[22110]: audit 2024-09-11T07:35:51.958700+0000 mon.a (mon.0) 352 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T07:35:52.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:52 smithi181 bash[22002]: cluster 2024-09-11T07:35:51.052490+0000 mgr.a (mgr.14150) 181 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:52.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:52 smithi181 bash[22002]: audit 2024-09-11T07:35:51.947045+0000 mon.b (mon.2) 6 : audit [INF] from='client.? 172.21.15.150:0/198279302' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "40aff587-3e34-4cab-b381-c117fe9e36c7"}]: dispatch 2024-09-11T07:35:52.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:52 smithi181 bash[22002]: audit 2024-09-11T07:35:51.948127+0000 mon.a (mon.0) 349 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "40aff587-3e34-4cab-b381-c117fe9e36c7"}]: dispatch 2024-09-11T07:35:52.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:52 smithi181 bash[22002]: audit 2024-09-11T07:35:51.958294+0000 mon.a (mon.0) 350 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "40aff587-3e34-4cab-b381-c117fe9e36c7"}]': finished 2024-09-11T07:35:52.811 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:52 smithi181 bash[22002]: cluster 2024-09-11T07:35:51.958475+0000 mon.a (mon.0) 351 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-11T07:35:52.811 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:52 smithi181 bash[22002]: audit 2024-09-11T07:35:51.958700+0000 mon.a (mon.0) 352 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T07:35:52.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:52 smithi115 bash[18678]: cluster 2024-09-11T07:35:51.052490+0000 mgr.a (mgr.14150) 181 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:52.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:52 smithi115 bash[18678]: audit 2024-09-11T07:35:51.947045+0000 mon.b (mon.2) 6 : audit [INF] from='client.? 172.21.15.150:0/198279302' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "40aff587-3e34-4cab-b381-c117fe9e36c7"}]: dispatch 2024-09-11T07:35:52.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:52 smithi115 bash[18678]: audit 2024-09-11T07:35:51.948127+0000 mon.a (mon.0) 349 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "40aff587-3e34-4cab-b381-c117fe9e36c7"}]: dispatch 2024-09-11T07:35:52.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:52 smithi115 bash[18678]: audit 2024-09-11T07:35:51.958294+0000 mon.a (mon.0) 350 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "40aff587-3e34-4cab-b381-c117fe9e36c7"}]': finished 2024-09-11T07:35:52.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:52 smithi115 bash[18678]: cluster 2024-09-11T07:35:51.958475+0000 mon.a (mon.0) 351 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-11T07:35:52.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:52 smithi115 bash[18678]: audit 2024-09-11T07:35:51.958700+0000 mon.a (mon.0) 352 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T07:35:53.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:53 smithi150 bash[22110]: audit 2024-09-11T07:35:52.577215+0000 mon.b (mon.2) 7 : audit [DBG] from='client.? 172.21.15.150:0/1256206429' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T07:35:53.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:53 smithi181 bash[22002]: audit 2024-09-11T07:35:52.577215+0000 mon.b (mon.2) 7 : audit [DBG] from='client.? 172.21.15.150:0/1256206429' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T07:35:53.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:53 smithi115 bash[18678]: audit 2024-09-11T07:35:52.577215+0000 mon.b (mon.2) 7 : audit [DBG] from='client.? 172.21.15.150:0/1256206429' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T07:35:54.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:54 smithi150 bash[22110]: cluster 2024-09-11T07:35:53.053004+0000 mgr.a (mgr.14150) 182 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:54.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:54 smithi181 bash[22002]: cluster 2024-09-11T07:35:53.053004+0000 mgr.a (mgr.14150) 182 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:54.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:54 smithi115 bash[18678]: cluster 2024-09-11T07:35:53.053004+0000 mgr.a (mgr.14150) 182 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:56.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:56 smithi181 bash[22002]: cluster 2024-09-11T07:35:55.053467+0000 mgr.a (mgr.14150) 183 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:56.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:56 smithi115 bash[18678]: cluster 2024-09-11T07:35:55.053467+0000 mgr.a (mgr.14150) 183 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:56.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:56 smithi150 bash[22110]: cluster 2024-09-11T07:35:55.053467+0000 mgr.a (mgr.14150) 183 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:58.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:35:58 smithi181 bash[22002]: cluster 2024-09-11T07:35:57.054001+0000 mgr.a (mgr.14150) 184 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:58.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:35:58 smithi115 bash[18678]: cluster 2024-09-11T07:35:57.054001+0000 mgr.a (mgr.14150) 184 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:35:58.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:35:58 smithi150 bash[22110]: cluster 2024-09-11T07:35:57.054001+0000 mgr.a (mgr.14150) 184 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:00.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:00 smithi181 bash[22002]: cluster 2024-09-11T07:35:59.054485+0000 mgr.a (mgr.14150) 185 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:00.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:00 smithi115 bash[18678]: cluster 2024-09-11T07:35:59.054485+0000 mgr.a (mgr.14150) 185 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:00.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:00 smithi150 bash[22110]: cluster 2024-09-11T07:35:59.054485+0000 mgr.a (mgr.14150) 185 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:02.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:02 smithi181 bash[22002]: cluster 2024-09-11T07:36:01.054988+0000 mgr.a (mgr.14150) 186 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:02.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:02 smithi115 bash[18678]: cluster 2024-09-11T07:36:01.054988+0000 mgr.a (mgr.14150) 186 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:02.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:02 smithi150 bash[22110]: cluster 2024-09-11T07:36:01.054988+0000 mgr.a (mgr.14150) 186 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:04.744 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:04 smithi150 bash[22110]: cluster 2024-09-11T07:36:03.055464+0000 mgr.a (mgr.14150) 187 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:04.744 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:04 smithi150 bash[22110]: audit 2024-09-11T07:36:04.358473+0000 mon.a (mon.0) 353 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-11T07:36:04.744 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:04 smithi150 bash[22110]: audit 2024-09-11T07:36:04.360400+0000 mon.a (mon.0) 354 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:36:04.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:04 smithi181 bash[22002]: cluster 2024-09-11T07:36:03.055464+0000 mgr.a (mgr.14150) 187 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:04.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:04 smithi181 bash[22002]: audit 2024-09-11T07:36:04.358473+0000 mon.a (mon.0) 353 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-11T07:36:04.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:04 smithi181 bash[22002]: audit 2024-09-11T07:36:04.360400+0000 mon.a (mon.0) 354 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:36:04.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:04 smithi115 bash[18678]: cluster 2024-09-11T07:36:03.055464+0000 mgr.a (mgr.14150) 187 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:04.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:04 smithi115 bash[18678]: audit 2024-09-11T07:36:04.358473+0000 mon.a (mon.0) 353 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-11T07:36:04.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:04 smithi115 bash[18678]: audit 2024-09-11T07:36:04.360400+0000 mon.a (mon.0) 354 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:36:05.726 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:05 smithi150 bash[22110]: cephadm 2024-09-11T07:36:04.362156+0000 mgr.a (mgr.14150) 188 : cephadm [INF] Deploying daemon osd.2 on smithi150 2024-09-11T07:36:05.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:05 smithi181 bash[22002]: cephadm 2024-09-11T07:36:04.362156+0000 mgr.a (mgr.14150) 188 : cephadm [INF] Deploying daemon osd.2 on smithi150 2024-09-11T07:36:05.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:05 smithi115 bash[18678]: cephadm 2024-09-11T07:36:04.362156+0000 mgr.a (mgr.14150) 188 : cephadm [INF] Deploying daemon osd.2 on smithi150 2024-09-11T07:36:06.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:06 smithi181 bash[22002]: cluster 2024-09-11T07:36:05.055913+0000 mgr.a (mgr.14150) 189 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:06.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:06 smithi115 bash[18678]: cluster 2024-09-11T07:36:05.055913+0000 mgr.a (mgr.14150) 189 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:06.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:06 smithi150 bash[22110]: cluster 2024-09-11T07:36:05.055913+0000 mgr.a (mgr.14150) 189 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:08.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:08 smithi150 bash[22110]: cluster 2024-09-11T07:36:07.056371+0000 mgr.a (mgr.14150) 190 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:08.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:08 smithi181 bash[22002]: cluster 2024-09-11T07:36:07.056371+0000 mgr.a (mgr.14150) 190 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:08.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:08 smithi115 bash[18678]: cluster 2024-09-11T07:36:07.056371+0000 mgr.a (mgr.14150) 190 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:09.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:09 smithi181 bash[22002]: audit 2024-09-11T07:36:08.868980+0000 mon.a (mon.0) 355 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:36:09.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:09 smithi181 bash[22002]: audit 2024-09-11T07:36:08.876425+0000 mon.a (mon.0) 356 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:09.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:09 smithi181 bash[22002]: audit 2024-09-11T07:36:08.884076+0000 mon.a (mon.0) 357 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:09.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:09 smithi115 bash[18678]: audit 2024-09-11T07:36:08.868980+0000 mon.a (mon.0) 355 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:36:09.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:09 smithi115 bash[18678]: audit 2024-09-11T07:36:08.876425+0000 mon.a (mon.0) 356 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:09.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:09 smithi115 bash[18678]: audit 2024-09-11T07:36:08.884076+0000 mon.a (mon.0) 357 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:09.944 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:09 smithi150 bash[22110]: audit 2024-09-11T07:36:08.868980+0000 mon.a (mon.0) 355 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:36:09.944 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:09 smithi150 bash[22110]: audit 2024-09-11T07:36:08.876425+0000 mon.a (mon.0) 356 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:09.944 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:09 smithi150 bash[22110]: audit 2024-09-11T07:36:08.884076+0000 mon.a (mon.0) 357 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:10.656 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:10 smithi150 bash[22110]: cluster 2024-09-11T07:36:09.056836+0000 mgr.a (mgr.14150) 191 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:10.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:10 smithi181 bash[22002]: cluster 2024-09-11T07:36:09.056836+0000 mgr.a (mgr.14150) 191 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:10.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:10 smithi115 bash[18678]: cluster 2024-09-11T07:36:09.056836+0000 mgr.a (mgr.14150) 191 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:12.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:12 smithi181 bash[22002]: cluster 2024-09-11T07:36:11.057332+0000 mgr.a (mgr.14150) 192 : cluster [DBG] pgmap v146: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:12.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:12 smithi115 bash[18678]: cluster 2024-09-11T07:36:11.057332+0000 mgr.a (mgr.14150) 192 : cluster [DBG] pgmap v146: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:12.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:12 smithi150 bash[22110]: cluster 2024-09-11T07:36:11.057332+0000 mgr.a (mgr.14150) 192 : cluster [DBG] pgmap v146: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:14.758 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:14 smithi150 bash[22110]: cluster 2024-09-11T07:36:13.057813+0000 mgr.a (mgr.14150) 193 : cluster [DBG] pgmap v147: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:14.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:14 smithi181 bash[22002]: cluster 2024-09-11T07:36:13.057813+0000 mgr.a (mgr.14150) 193 : cluster [DBG] pgmap v147: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:14.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:14 smithi115 bash[18678]: cluster 2024-09-11T07:36:13.057813+0000 mgr.a (mgr.14150) 193 : cluster [DBG] pgmap v147: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:16.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:16 smithi150 bash[22110]: cluster 2024-09-11T07:36:15.058287+0000 mgr.a (mgr.14150) 194 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:16.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:16 smithi150 bash[22110]: audit 2024-09-11T07:36:15.321845+0000 mon.a (mon.0) 358 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:16.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:16 smithi150 bash[22110]: audit 2024-09-11T07:36:15.330196+0000 mon.a (mon.0) 359 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:16.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:16 smithi150 bash[22110]: audit 2024-09-11T07:36:15.332012+0000 mon.a (mon.0) 360 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:36:16.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:16 smithi150 bash[22110]: audit 2024-09-11T07:36:15.333746+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:36:16.447 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:16 smithi150 bash[22110]: audit 2024-09-11T07:36:15.341960+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:16.447 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:16 smithi150 bash[22110]: audit 2024-09-11T07:36:15.673227+0000 mon.b (mon.2) 8 : audit [INF] from='osd.2 [v2:172.21.15.150:6800/2543552073,v1:172.21.15.150:6801/2543552073]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-11T07:36:16.447 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:16 smithi150 bash[22110]: audit 2024-09-11T07:36:15.674292+0000 mon.a (mon.0) 363 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-11T07:36:16.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:16 smithi115 bash[18678]: cluster 2024-09-11T07:36:15.058287+0000 mgr.a (mgr.14150) 194 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:16.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:16 smithi115 bash[18678]: audit 2024-09-11T07:36:15.321845+0000 mon.a (mon.0) 358 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:16.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:16 smithi115 bash[18678]: audit 2024-09-11T07:36:15.330196+0000 mon.a (mon.0) 359 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:16.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:16 smithi115 bash[18678]: audit 2024-09-11T07:36:15.332012+0000 mon.a (mon.0) 360 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:36:16.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:16 smithi115 bash[18678]: audit 2024-09-11T07:36:15.333746+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:36:16.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:16 smithi115 bash[18678]: audit 2024-09-11T07:36:15.341960+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:16.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:16 smithi115 bash[18678]: audit 2024-09-11T07:36:15.673227+0000 mon.b (mon.2) 8 : audit [INF] from='osd.2 [v2:172.21.15.150:6800/2543552073,v1:172.21.15.150:6801/2543552073]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-11T07:36:16.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:16 smithi115 bash[18678]: audit 2024-09-11T07:36:15.674292+0000 mon.a (mon.0) 363 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-11T07:36:16.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:16 smithi181 bash[22002]: cluster 2024-09-11T07:36:15.058287+0000 mgr.a (mgr.14150) 194 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:16.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:16 smithi181 bash[22002]: audit 2024-09-11T07:36:15.321845+0000 mon.a (mon.0) 358 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:16.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:16 smithi181 bash[22002]: audit 2024-09-11T07:36:15.330196+0000 mon.a (mon.0) 359 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:16.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:16 smithi181 bash[22002]: audit 2024-09-11T07:36:15.332012+0000 mon.a (mon.0) 360 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:36:16.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:16 smithi181 bash[22002]: audit 2024-09-11T07:36:15.333746+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:36:16.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:16 smithi181 bash[22002]: audit 2024-09-11T07:36:15.341960+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:16.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:16 smithi181 bash[22002]: audit 2024-09-11T07:36:15.673227+0000 mon.b (mon.2) 8 : audit [INF] from='osd.2 [v2:172.21.15.150:6800/2543552073,v1:172.21.15.150:6801/2543552073]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-11T07:36:16.811 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:16 smithi181 bash[22002]: audit 2024-09-11T07:36:15.674292+0000 mon.a (mon.0) 363 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-11T07:36:17.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:17 smithi181 bash[22002]: audit 2024-09-11T07:36:16.498446+0000 mon.a (mon.0) 364 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-11T07:36:17.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:17 smithi181 bash[22002]: cluster 2024-09-11T07:36:16.498594+0000 mon.a (mon.0) 365 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-11T07:36:17.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:17 smithi181 bash[22002]: audit 2024-09-11T07:36:16.498815+0000 mon.a (mon.0) 366 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T07:36:17.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:17 smithi181 bash[22002]: audit 2024-09-11T07:36:16.499939+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.150:6800/2543552073,v1:172.21.15.150:6801/2543552073]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi150", "root=default"]}]: dispatch 2024-09-11T07:36:17.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:17 smithi181 bash[22002]: audit 2024-09-11T07:36:16.500847+0000 mon.a (mon.0) 367 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi150", "root=default"]}]: dispatch 2024-09-11T07:36:17.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:17 smithi115 bash[18678]: audit 2024-09-11T07:36:16.498446+0000 mon.a (mon.0) 364 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-11T07:36:17.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:17 smithi115 bash[18678]: cluster 2024-09-11T07:36:16.498594+0000 mon.a (mon.0) 365 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-11T07:36:17.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:17 smithi115 bash[18678]: audit 2024-09-11T07:36:16.498815+0000 mon.a (mon.0) 366 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T07:36:17.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:17 smithi115 bash[18678]: audit 2024-09-11T07:36:16.499939+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.150:6800/2543552073,v1:172.21.15.150:6801/2543552073]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi150", "root=default"]}]: dispatch 2024-09-11T07:36:17.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:17 smithi115 bash[18678]: audit 2024-09-11T07:36:16.500847+0000 mon.a (mon.0) 367 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi150", "root=default"]}]: dispatch 2024-09-11T07:36:17.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:17 smithi150 bash[22110]: audit 2024-09-11T07:36:16.498446+0000 mon.a (mon.0) 364 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-11T07:36:17.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:17 smithi150 bash[22110]: cluster 2024-09-11T07:36:16.498594+0000 mon.a (mon.0) 365 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-11T07:36:17.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:17 smithi150 bash[22110]: audit 2024-09-11T07:36:16.498815+0000 mon.a (mon.0) 366 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T07:36:17.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:17 smithi150 bash[22110]: audit 2024-09-11T07:36:16.499939+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.150:6800/2543552073,v1:172.21.15.150:6801/2543552073]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi150", "root=default"]}]: dispatch 2024-09-11T07:36:17.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:17 smithi150 bash[22110]: audit 2024-09-11T07:36:16.500847+0000 mon.a (mon.0) 367 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi150", "root=default"]}]: dispatch 2024-09-11T07:36:18.668 INFO:teuthology.orchestra.run.smithi150.stdout:Created osd(s) 2 on host 'smithi150' 2024-09-11T07:36:18.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:18 smithi181 bash[22002]: cluster 2024-09-11T07:36:17.058728+0000 mgr.a (mgr.14150) 195 : cluster [DBG] pgmap v150: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:18.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:18 smithi181 bash[22002]: audit 2024-09-11T07:36:17.501072+0000 mon.a (mon.0) 368 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi150", "root=default"]}]': finished 2024-09-11T07:36:18.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:18 smithi181 bash[22002]: cluster 2024-09-11T07:36:17.501226+0000 mon.a (mon.0) 369 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-11T07:36:18.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:18 smithi181 bash[22002]: audit 2024-09-11T07:36:17.501882+0000 mon.a (mon.0) 370 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T07:36:18.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:18 smithi181 bash[22002]: audit 2024-09-11T07:36:17.511691+0000 mon.a (mon.0) 371 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T07:36:18.847 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:18 smithi150 bash[22110]: cluster 2024-09-11T07:36:17.058728+0000 mgr.a (mgr.14150) 195 : cluster [DBG] pgmap v150: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:18.847 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:18 smithi150 bash[22110]: audit 2024-09-11T07:36:17.501072+0000 mon.a (mon.0) 368 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi150", "root=default"]}]': finished 2024-09-11T07:36:18.847 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:18 smithi150 bash[22110]: cluster 2024-09-11T07:36:17.501226+0000 mon.a (mon.0) 369 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-11T07:36:18.847 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:18 smithi150 bash[22110]: audit 2024-09-11T07:36:17.501882+0000 mon.a (mon.0) 370 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T07:36:18.847 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:18 smithi150 bash[22110]: audit 2024-09-11T07:36:17.511691+0000 mon.a (mon.0) 371 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T07:36:18.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:18 smithi115 bash[18678]: cluster 2024-09-11T07:36:17.058728+0000 mgr.a (mgr.14150) 195 : cluster [DBG] pgmap v150: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:18.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:18 smithi115 bash[18678]: audit 2024-09-11T07:36:17.501072+0000 mon.a (mon.0) 368 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi150", "root=default"]}]': finished 2024-09-11T07:36:18.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:18 smithi115 bash[18678]: cluster 2024-09-11T07:36:17.501226+0000 mon.a (mon.0) 369 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-11T07:36:18.848 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:18 smithi115 bash[18678]: audit 2024-09-11T07:36:17.501882+0000 mon.a (mon.0) 370 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T07:36:18.848 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:18 smithi115 bash[18678]: audit 2024-09-11T07:36:17.511691+0000 mon.a (mon.0) 371 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T07:36:19.304 DEBUG:teuthology.orchestra.run.smithi150:osd.2> sudo journalctl -f -n 0 -u ceph-1973416c-700f-11ef-bcea-c7b262605968@osd.2.service 2024-09-11T07:36:19.306 INFO:tasks.cephadm:Deploying osd.3 on smithi150 with /dev/vg_nvme/lv_3... 2024-09-11T07:36:19.306 DEBUG:teuthology.orchestra.run.smithi150:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-09-11T07:36:19.528 INFO:journalctl@ceph.osd.2.smithi150.stdout:-- Logs begin at Sun 2022-08-14 12:20:24 UTC. -- 2024-09-11T07:36:19.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:19 smithi150 bash[22110]: cluster 2024-09-11T07:36:16.632925+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-11T07:36:19.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:19 smithi150 bash[22110]: cluster 2024-09-11T07:36:16.633019+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-11T07:36:19.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:19 smithi150 bash[22110]: cluster 2024-09-11T07:36:18.512773+0000 mon.a (mon.0) 372 : cluster [INF] osd.2 [v2:172.21.15.150:6800/2543552073,v1:172.21.15.150:6801/2543552073] boot 2024-09-11T07:36:19.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:19 smithi150 bash[22110]: cluster 2024-09-11T07:36:18.512888+0000 mon.a (mon.0) 373 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-11T07:36:19.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:19 smithi150 bash[22110]: audit 2024-09-11T07:36:18.513743+0000 mon.a (mon.0) 374 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T07:36:19.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:19 smithi150 bash[22110]: audit 2024-09-11T07:36:18.646906+0000 mon.a (mon.0) 375 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:36:19.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:19 smithi150 bash[22110]: audit 2024-09-11T07:36:18.653906+0000 mon.a (mon.0) 376 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:19.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:19 smithi150 bash[22110]: audit 2024-09-11T07:36:18.661107+0000 mon.a (mon.0) 377 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:19.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:19 smithi150 bash[22110]: audit 2024-09-11T07:36:19.169101+0000 mon.a (mon.0) 378 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2024-09-11T07:36:20.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:19 smithi181 bash[22002]: cluster 2024-09-11T07:36:16.632925+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-11T07:36:20.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:19 smithi181 bash[22002]: cluster 2024-09-11T07:36:16.633019+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-11T07:36:20.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:19 smithi181 bash[22002]: cluster 2024-09-11T07:36:18.512773+0000 mon.a (mon.0) 372 : cluster [INF] osd.2 [v2:172.21.15.150:6800/2543552073,v1:172.21.15.150:6801/2543552073] boot 2024-09-11T07:36:20.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:19 smithi181 bash[22002]: cluster 2024-09-11T07:36:18.512888+0000 mon.a (mon.0) 373 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-11T07:36:20.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:19 smithi181 bash[22002]: audit 2024-09-11T07:36:18.513743+0000 mon.a (mon.0) 374 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T07:36:20.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:19 smithi181 bash[22002]: audit 2024-09-11T07:36:18.646906+0000 mon.a (mon.0) 375 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:36:20.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:19 smithi181 bash[22002]: audit 2024-09-11T07:36:18.653906+0000 mon.a (mon.0) 376 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:20.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:19 smithi181 bash[22002]: audit 2024-09-11T07:36:18.661107+0000 mon.a (mon.0) 377 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:20.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:19 smithi181 bash[22002]: audit 2024-09-11T07:36:19.169101+0000 mon.a (mon.0) 378 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2024-09-11T07:36:20.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:19 smithi115 bash[18678]: cluster 2024-09-11T07:36:16.632925+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-11T07:36:20.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:19 smithi115 bash[18678]: cluster 2024-09-11T07:36:16.633019+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-11T07:36:20.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:19 smithi115 bash[18678]: cluster 2024-09-11T07:36:18.512773+0000 mon.a (mon.0) 372 : cluster [INF] osd.2 [v2:172.21.15.150:6800/2543552073,v1:172.21.15.150:6801/2543552073] boot 2024-09-11T07:36:20.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:19 smithi115 bash[18678]: cluster 2024-09-11T07:36:18.512888+0000 mon.a (mon.0) 373 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-11T07:36:20.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:19 smithi115 bash[18678]: audit 2024-09-11T07:36:18.513743+0000 mon.a (mon.0) 374 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T07:36:20.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:19 smithi115 bash[18678]: audit 2024-09-11T07:36:18.646906+0000 mon.a (mon.0) 375 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:36:20.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:19 smithi115 bash[18678]: audit 2024-09-11T07:36:18.653906+0000 mon.a (mon.0) 376 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:20.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:19 smithi115 bash[18678]: audit 2024-09-11T07:36:18.661107+0000 mon.a (mon.0) 377 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:20.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:19 smithi115 bash[18678]: audit 2024-09-11T07:36:19.169101+0000 mon.a (mon.0) 378 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2024-09-11T07:36:20.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:20 smithi150 bash[22110]: cluster 2024-09-11T07:36:19.059193+0000 mgr.a (mgr.14150) 196 : cluster [DBG] pgmap v153: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:20.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:20 smithi150 bash[22110]: audit 2024-09-11T07:36:19.670496+0000 mon.a (mon.0) 379 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2024-09-11T07:36:20.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:20 smithi150 bash[22110]: cluster 2024-09-11T07:36:19.670665+0000 mon.a (mon.0) 380 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-11T07:36:20.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:20 smithi150 bash[22110]: audit 2024-09-11T07:36:19.672413+0000 mon.a (mon.0) 381 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-11T07:36:21.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:20 smithi181 bash[22002]: cluster 2024-09-11T07:36:19.059193+0000 mgr.a (mgr.14150) 196 : cluster [DBG] pgmap v153: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:21.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:20 smithi181 bash[22002]: audit 2024-09-11T07:36:19.670496+0000 mon.a (mon.0) 379 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2024-09-11T07:36:21.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:20 smithi181 bash[22002]: cluster 2024-09-11T07:36:19.670665+0000 mon.a (mon.0) 380 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-11T07:36:21.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:20 smithi181 bash[22002]: audit 2024-09-11T07:36:19.672413+0000 mon.a (mon.0) 381 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-11T07:36:21.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:20 smithi115 bash[18678]: cluster 2024-09-11T07:36:19.059193+0000 mgr.a (mgr.14150) 196 : cluster [DBG] pgmap v153: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T07:36:21.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:20 smithi115 bash[18678]: audit 2024-09-11T07:36:19.670496+0000 mon.a (mon.0) 379 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2024-09-11T07:36:21.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:20 smithi115 bash[18678]: cluster 2024-09-11T07:36:19.670665+0000 mon.a (mon.0) 380 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-11T07:36:21.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:20 smithi115 bash[18678]: audit 2024-09-11T07:36:19.672413+0000 mon.a (mon.0) 381 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-11T07:36:21.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:21 smithi150 bash[22110]: audit 2024-09-11T07:36:20.674775+0000 mon.a (mon.0) 382 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-11T07:36:21.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:21 smithi150 bash[22110]: cluster 2024-09-11T07:36:20.674963+0000 mon.a (mon.0) 383 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-11T07:36:22.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:21 smithi181 bash[22002]: audit 2024-09-11T07:36:20.674775+0000 mon.a (mon.0) 382 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-11T07:36:22.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:21 smithi181 bash[22002]: cluster 2024-09-11T07:36:20.674963+0000 mon.a (mon.0) 383 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-11T07:36:22.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:21 smithi115 bash[18678]: audit 2024-09-11T07:36:20.674775+0000 mon.a (mon.0) 382 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-11T07:36:22.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:21 smithi115 bash[18678]: cluster 2024-09-11T07:36:20.674963+0000 mon.a (mon.0) 383 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-11T07:36:22.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:22 smithi150 bash[22110]: cluster 2024-09-11T07:36:21.059684+0000 mgr.a (mgr.14150) 197 : cluster [DBG] pgmap v156: 1 pgs: 1 unknown; 0 B data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:22.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:22 smithi150 bash[22110]: cluster 2024-09-11T07:36:21.695604+0000 mon.a (mon.0) 384 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-11T07:36:22.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:22 smithi150 bash[22110]: cluster 2024-09-11T07:36:21.695665+0000 mon.a (mon.0) 385 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-11T07:36:22.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:22 smithi150 bash[22110]: audit 2024-09-11T07:36:21.820460+0000 mon.a (mon.0) 386 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:23.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:22 smithi181 bash[22002]: cluster 2024-09-11T07:36:21.059684+0000 mgr.a (mgr.14150) 197 : cluster [DBG] pgmap v156: 1 pgs: 1 unknown; 0 B data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:23.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:22 smithi181 bash[22002]: cluster 2024-09-11T07:36:21.695604+0000 mon.a (mon.0) 384 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-11T07:36:23.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:22 smithi181 bash[22002]: cluster 2024-09-11T07:36:21.695665+0000 mon.a (mon.0) 385 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-11T07:36:23.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:22 smithi181 bash[22002]: audit 2024-09-11T07:36:21.820460+0000 mon.a (mon.0) 386 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:23.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:22 smithi115 bash[18678]: cluster 2024-09-11T07:36:21.059684+0000 mgr.a (mgr.14150) 197 : cluster [DBG] pgmap v156: 1 pgs: 1 unknown; 0 B data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:23.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:22 smithi115 bash[18678]: cluster 2024-09-11T07:36:21.695604+0000 mon.a (mon.0) 384 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-11T07:36:23.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:22 smithi115 bash[18678]: cluster 2024-09-11T07:36:21.695665+0000 mon.a (mon.0) 385 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-11T07:36:23.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:22 smithi115 bash[18678]: audit 2024-09-11T07:36:21.820460+0000 mon.a (mon.0) 386 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:23.424 INFO:teuthology.orchestra.run.smithi150.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.b/config 2024-09-11T07:36:25.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:25 smithi150 bash[22110]: cluster 2024-09-11T07:36:23.060162+0000 mgr.a (mgr.14150) 198 : cluster [DBG] pgmap v158: 1 pgs: 1 unknown; 0 B data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:25.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:25 smithi150 bash[22110]: audit 2024-09-11T07:36:23.639064+0000 mon.a (mon.0) 387 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:25.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:25 smithi150 bash[22110]: audit 2024-09-11T07:36:23.640938+0000 mon.a (mon.0) 388 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-11T07:36:25.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:25 smithi150 bash[22110]: audit 2024-09-11T07:36:24.525199+0000 mon.a (mon.0) 389 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-11T07:36:25.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:25 smithi150 bash[22110]: audit 2024-09-11T07:36:24.528527+0000 mon.a (mon.0) 390 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-11T07:36:25.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:25 smithi150 bash[22110]: audit 2024-09-11T07:36:24.528819+0000 mon.a (mon.0) 391 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:36:25.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:25 smithi150 bash[22110]: audit 2024-09-11T07:36:24.533893+0000 mon.a (mon.0) 392 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:36:25.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:25 smithi150 bash[22110]: audit 2024-09-11T07:36:24.536910+0000 mon.a (mon.0) 393 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-11T07:36:25.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:25 smithi150 bash[22110]: audit 2024-09-11T07:36:24.537143+0000 mon.a (mon.0) 394 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:36:25.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:25 smithi150 bash[22110]: audit 2024-09-11T07:36:24.537436+0000 mon.a (mon.0) 395 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:36:25.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:25 smithi181 bash[22002]: cluster 2024-09-11T07:36:23.060162+0000 mgr.a (mgr.14150) 198 : cluster [DBG] pgmap v158: 1 pgs: 1 unknown; 0 B data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:25.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:25 smithi181 bash[22002]: audit 2024-09-11T07:36:23.639064+0000 mon.a (mon.0) 387 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:25.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:25 smithi181 bash[22002]: audit 2024-09-11T07:36:23.640938+0000 mon.a (mon.0) 388 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-11T07:36:25.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:25 smithi181 bash[22002]: audit 2024-09-11T07:36:24.525199+0000 mon.a (mon.0) 389 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-11T07:36:25.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:25 smithi181 bash[22002]: audit 2024-09-11T07:36:24.528527+0000 mon.a (mon.0) 390 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-11T07:36:25.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:25 smithi181 bash[22002]: audit 2024-09-11T07:36:24.528819+0000 mon.a (mon.0) 391 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:36:25.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:25 smithi181 bash[22002]: audit 2024-09-11T07:36:24.533893+0000 mon.a (mon.0) 392 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:36:25.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:25 smithi181 bash[22002]: audit 2024-09-11T07:36:24.536910+0000 mon.a (mon.0) 393 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-11T07:36:25.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:25 smithi181 bash[22002]: audit 2024-09-11T07:36:24.537143+0000 mon.a (mon.0) 394 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:36:25.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:25 smithi181 bash[22002]: audit 2024-09-11T07:36:24.537436+0000 mon.a (mon.0) 395 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:36:25.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:25 smithi115 bash[18678]: cluster 2024-09-11T07:36:23.060162+0000 mgr.a (mgr.14150) 198 : cluster [DBG] pgmap v158: 1 pgs: 1 unknown; 0 B data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:25.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:25 smithi115 bash[18678]: audit 2024-09-11T07:36:23.639064+0000 mon.a (mon.0) 387 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:25.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:25 smithi115 bash[18678]: audit 2024-09-11T07:36:23.640938+0000 mon.a (mon.0) 388 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-11T07:36:25.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:25 smithi115 bash[18678]: audit 2024-09-11T07:36:24.525199+0000 mon.a (mon.0) 389 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-11T07:36:25.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:25 smithi115 bash[18678]: audit 2024-09-11T07:36:24.528527+0000 mon.a (mon.0) 390 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-11T07:36:25.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:25 smithi115 bash[18678]: audit 2024-09-11T07:36:24.528819+0000 mon.a (mon.0) 391 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:36:25.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:25 smithi115 bash[18678]: audit 2024-09-11T07:36:24.533893+0000 mon.a (mon.0) 392 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:36:25.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:25 smithi115 bash[18678]: audit 2024-09-11T07:36:24.536910+0000 mon.a (mon.0) 393 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-11T07:36:25.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:25 smithi115 bash[18678]: audit 2024-09-11T07:36:24.537143+0000 mon.a (mon.0) 394 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:36:25.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:25 smithi115 bash[18678]: audit 2024-09-11T07:36:24.537436+0000 mon.a (mon.0) 395 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:36:26.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:26 smithi150 bash[22110]: audit 2024-09-11T07:36:24.537144+0000 mon.c (mon.1) 3 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-11T07:36:26.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:26 smithi150 bash[22110]: cluster 2024-09-11T07:36:25.060680+0000 mgr.a (mgr.14150) 199 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:26.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:26 smithi150 bash[22110]: audit 2024-09-11T07:36:25.426097+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-11T07:36:26.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:26 smithi150 bash[22110]: audit 2024-09-11T07:36:25.467705+0000 mon.a (mon.0) 396 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:26.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:26 smithi150 bash[22110]: audit 2024-09-11T07:36:25.469829+0000 mon.b (mon.2) 10 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-11T07:36:26.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:26 smithi150 bash[22110]: audit 2024-09-11T07:36:25.470331+0000 mon.a (mon.0) 397 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-11T07:36:26.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:26 smithi150 bash[22110]: audit 2024-09-11T07:36:25.470642+0000 mon.a (mon.0) 398 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:36:26.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:26 smithi150 bash[22110]: audit 2024-09-11T07:36:25.470930+0000 mon.a (mon.0) 399 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:36:26.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:26 smithi150 bash[22110]: audit 2024-09-11T07:36:26.381242+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-11T07:36:26.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:26 smithi181 bash[22002]: audit 2024-09-11T07:36:24.537144+0000 mon.c (mon.1) 3 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-11T07:36:26.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:26 smithi181 bash[22002]: cluster 2024-09-11T07:36:25.060680+0000 mgr.a (mgr.14150) 199 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:26.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:26 smithi181 bash[22002]: audit 2024-09-11T07:36:25.426097+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-11T07:36:26.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:26 smithi181 bash[22002]: audit 2024-09-11T07:36:25.467705+0000 mon.a (mon.0) 396 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:26.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:26 smithi181 bash[22002]: audit 2024-09-11T07:36:25.469829+0000 mon.b (mon.2) 10 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-11T07:36:26.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:26 smithi181 bash[22002]: audit 2024-09-11T07:36:25.470331+0000 mon.a (mon.0) 397 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-11T07:36:26.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:26 smithi181 bash[22002]: audit 2024-09-11T07:36:25.470642+0000 mon.a (mon.0) 398 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:36:26.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:26 smithi181 bash[22002]: audit 2024-09-11T07:36:25.470930+0000 mon.a (mon.0) 399 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:36:26.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:26 smithi181 bash[22002]: audit 2024-09-11T07:36:26.381242+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-11T07:36:26.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:26 smithi115 bash[18678]: audit 2024-09-11T07:36:24.537144+0000 mon.c (mon.1) 3 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-11T07:36:26.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:26 smithi115 bash[18678]: cluster 2024-09-11T07:36:25.060680+0000 mgr.a (mgr.14150) 199 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:26.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:26 smithi115 bash[18678]: audit 2024-09-11T07:36:25.426097+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-11T07:36:26.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:26 smithi115 bash[18678]: audit 2024-09-11T07:36:25.467705+0000 mon.a (mon.0) 396 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:26.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:26 smithi115 bash[18678]: audit 2024-09-11T07:36:25.469829+0000 mon.b (mon.2) 10 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-11T07:36:26.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:26 smithi115 bash[18678]: audit 2024-09-11T07:36:25.470331+0000 mon.a (mon.0) 397 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-11T07:36:26.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:26 smithi115 bash[18678]: audit 2024-09-11T07:36:25.470642+0000 mon.a (mon.0) 398 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:36:26.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:26 smithi115 bash[18678]: audit 2024-09-11T07:36:25.470930+0000 mon.a (mon.0) 399 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-11T07:36:26.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:26 smithi115 bash[18678]: audit 2024-09-11T07:36:26.381242+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-11T07:36:27.691 INFO:teuthology.orchestra.run.smithi150.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-09-11T07:36:27.874 INFO:teuthology.orchestra.run.smithi150.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-09-11T07:36:27.899 INFO:teuthology.orchestra.run.smithi150.stderr: stderr: 10+0 records in 2024-09-11T07:36:27.899 INFO:teuthology.orchestra.run.smithi150.stderr:10+0 records out 2024-09-11T07:36:27.899 INFO:teuthology.orchestra.run.smithi150.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0217391 s, 482 MB/s 2024-09-11T07:36:27.899 INFO:teuthology.orchestra.run.smithi150.stderr:--> Zapping successful for: 2024-09-11T07:36:28.615 DEBUG:teuthology.orchestra.run.smithi150:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph orch daemon add osd smithi150:vg_nvme/lv_3 2024-09-11T07:36:28.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:28 smithi150 bash[22110]: cluster 2024-09-11T07:36:27.061219+0000 mgr.a (mgr.14150) 200 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 875 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:28.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:28 smithi181 bash[22002]: cluster 2024-09-11T07:36:27.061219+0000 mgr.a (mgr.14150) 200 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 875 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:28.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:28 smithi115 bash[18678]: cluster 2024-09-11T07:36:27.061219+0000 mgr.a (mgr.14150) 200 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 875 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:30.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:30 smithi150 bash[22110]: cluster 2024-09-11T07:36:29.061714+0000 mgr.a (mgr.14150) 201 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 875 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:30.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:30 smithi150 bash[22110]: cephadm 2024-09-11T07:36:29.645421+0000 mgr.a (mgr.14150) 202 : cephadm [INF] Detected new or changed devices on smithi150 2024-09-11T07:36:30.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:30 smithi150 bash[22110]: audit 2024-09-11T07:36:29.654179+0000 mon.a (mon.0) 400 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:30.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:30 smithi150 bash[22110]: audit 2024-09-11T07:36:29.662716+0000 mon.a (mon.0) 401 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:30.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:30 smithi150 bash[22110]: audit 2024-09-11T07:36:29.664429+0000 mon.a (mon.0) 402 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:36:30.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:30 smithi150 bash[22110]: cephadm 2024-09-11T07:36:29.665566+0000 mgr.a (mgr.14150) 203 : cephadm [INF] Adjusting osd_memory_target on smithi150 to 17271M 2024-09-11T07:36:30.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:30 smithi150 bash[22110]: audit 2024-09-11T07:36:29.671765+0000 mon.a (mon.0) 403 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:30.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:30 smithi150 bash[22110]: audit 2024-09-11T07:36:29.673715+0000 mon.a (mon.0) 404 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:36:30.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:30 smithi150 bash[22110]: audit 2024-09-11T07:36:29.675318+0000 mon.a (mon.0) 405 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:36:30.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:30 smithi150 bash[22110]: audit 2024-09-11T07:36:29.684308+0000 mon.a (mon.0) 406 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:31.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:30 smithi181 bash[22002]: cluster 2024-09-11T07:36:29.061714+0000 mgr.a (mgr.14150) 201 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 875 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:31.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:30 smithi181 bash[22002]: cephadm 2024-09-11T07:36:29.645421+0000 mgr.a (mgr.14150) 202 : cephadm [INF] Detected new or changed devices on smithi150 2024-09-11T07:36:31.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:30 smithi181 bash[22002]: audit 2024-09-11T07:36:29.654179+0000 mon.a (mon.0) 400 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:31.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:30 smithi181 bash[22002]: audit 2024-09-11T07:36:29.662716+0000 mon.a (mon.0) 401 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:31.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:30 smithi181 bash[22002]: audit 2024-09-11T07:36:29.664429+0000 mon.a (mon.0) 402 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:36:31.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:30 smithi181 bash[22002]: cephadm 2024-09-11T07:36:29.665566+0000 mgr.a (mgr.14150) 203 : cephadm [INF] Adjusting osd_memory_target on smithi150 to 17271M 2024-09-11T07:36:31.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:30 smithi181 bash[22002]: audit 2024-09-11T07:36:29.671765+0000 mon.a (mon.0) 403 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:31.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:30 smithi181 bash[22002]: audit 2024-09-11T07:36:29.673715+0000 mon.a (mon.0) 404 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:36:31.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:30 smithi181 bash[22002]: audit 2024-09-11T07:36:29.675318+0000 mon.a (mon.0) 405 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:36:31.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:30 smithi181 bash[22002]: audit 2024-09-11T07:36:29.684308+0000 mon.a (mon.0) 406 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:31.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:30 smithi115 bash[18678]: cluster 2024-09-11T07:36:29.061714+0000 mgr.a (mgr.14150) 201 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 875 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:31.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:30 smithi115 bash[18678]: cephadm 2024-09-11T07:36:29.645421+0000 mgr.a (mgr.14150) 202 : cephadm [INF] Detected new or changed devices on smithi150 2024-09-11T07:36:31.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:30 smithi115 bash[18678]: audit 2024-09-11T07:36:29.654179+0000 mon.a (mon.0) 400 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:31.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:30 smithi115 bash[18678]: audit 2024-09-11T07:36:29.662716+0000 mon.a (mon.0) 401 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:31.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:30 smithi115 bash[18678]: audit 2024-09-11T07:36:29.664429+0000 mon.a (mon.0) 402 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:36:31.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:30 smithi115 bash[18678]: cephadm 2024-09-11T07:36:29.665566+0000 mgr.a (mgr.14150) 203 : cephadm [INF] Adjusting osd_memory_target on smithi150 to 17271M 2024-09-11T07:36:31.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:30 smithi115 bash[18678]: audit 2024-09-11T07:36:29.671765+0000 mon.a (mon.0) 403 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:31.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:30 smithi115 bash[18678]: audit 2024-09-11T07:36:29.673715+0000 mon.a (mon.0) 404 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:36:31.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:30 smithi115 bash[18678]: audit 2024-09-11T07:36:29.675318+0000 mon.a (mon.0) 405 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:36:31.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:30 smithi115 bash[18678]: audit 2024-09-11T07:36:29.684308+0000 mon.a (mon.0) 406 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:36:32.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:32 smithi150 bash[22110]: cluster 2024-09-11T07:36:31.062409+0000 mgr.a (mgr.14150) 204 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 3.0 KiB/s rd, 131 KiB/s wr, 9 op/s 2024-09-11T07:36:33.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:32 smithi181 bash[22002]: cluster 2024-09-11T07:36:31.062409+0000 mgr.a (mgr.14150) 204 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 3.0 KiB/s rd, 131 KiB/s wr, 9 op/s 2024-09-11T07:36:33.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:32 smithi115 bash[18678]: cluster 2024-09-11T07:36:31.062409+0000 mgr.a (mgr.14150) 204 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 3.0 KiB/s rd, 131 KiB/s wr, 9 op/s 2024-09-11T07:36:33.338 INFO:teuthology.orchestra.run.smithi150.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.b/config 2024-09-11T07:36:34.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:34 smithi150 bash[22110]: cluster 2024-09-11T07:36:33.063002+0000 mgr.a (mgr.14150) 205 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 2.2 KiB/s rd, 98 KiB/s wr, 6 op/s 2024-09-11T07:36:35.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:34 smithi181 bash[22002]: cluster 2024-09-11T07:36:33.063002+0000 mgr.a (mgr.14150) 205 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 2.2 KiB/s rd, 98 KiB/s wr, 6 op/s 2024-09-11T07:36:35.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:34 smithi115 bash[18678]: cluster 2024-09-11T07:36:33.063002+0000 mgr.a (mgr.14150) 205 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 2.2 KiB/s rd, 98 KiB/s wr, 6 op/s 2024-09-11T07:36:36.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:36 smithi150 bash[22110]: cluster 2024-09-11T07:36:35.063595+0000 mgr.a (mgr.14150) 206 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 1.8 KiB/s rd, 78 KiB/s wr, 5 op/s 2024-09-11T07:36:36.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:36 smithi150 bash[22110]: audit 2024-09-11T07:36:36.550395+0000 mon.a (mon.0) 407 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T07:36:36.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:36 smithi150 bash[22110]: audit 2024-09-11T07:36:36.556318+0000 mon.a (mon.0) 408 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T07:36:36.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:36 smithi150 bash[22110]: audit 2024-09-11T07:36:36.558118+0000 mon.a (mon.0) 409 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:36:37.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:36 smithi181 bash[22002]: cluster 2024-09-11T07:36:35.063595+0000 mgr.a (mgr.14150) 206 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 1.8 KiB/s rd, 78 KiB/s wr, 5 op/s 2024-09-11T07:36:37.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:36 smithi181 bash[22002]: audit 2024-09-11T07:36:36.550395+0000 mon.a (mon.0) 407 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T07:36:37.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:36 smithi181 bash[22002]: audit 2024-09-11T07:36:36.556318+0000 mon.a (mon.0) 408 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T07:36:37.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:36 smithi181 bash[22002]: audit 2024-09-11T07:36:36.558118+0000 mon.a (mon.0) 409 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:36:37.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:36 smithi115 bash[18678]: cluster 2024-09-11T07:36:35.063595+0000 mgr.a (mgr.14150) 206 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 1.8 KiB/s rd, 78 KiB/s wr, 5 op/s 2024-09-11T07:36:37.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:36 smithi115 bash[18678]: audit 2024-09-11T07:36:36.550395+0000 mon.a (mon.0) 407 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T07:36:37.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:36 smithi115 bash[18678]: audit 2024-09-11T07:36:36.556318+0000 mon.a (mon.0) 408 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T07:36:37.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:36 smithi115 bash[18678]: audit 2024-09-11T07:36:36.558118+0000 mon.a (mon.0) 409 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:36:37.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:37 smithi150 bash[22110]: audit 2024-09-11T07:36:36.544113+0000 mgr.a (mgr.14150) 207 : audit [DBG] from='client.24206 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi150:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:36:38.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:37 smithi181 bash[22002]: audit 2024-09-11T07:36:36.544113+0000 mgr.a (mgr.14150) 207 : audit [DBG] from='client.24206 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi150:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:36:38.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:37 smithi115 bash[18678]: audit 2024-09-11T07:36:36.544113+0000 mgr.a (mgr.14150) 207 : audit [DBG] from='client.24206 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi150:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:36:38.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:38 smithi150 bash[22110]: cluster 2024-09-11T07:36:37.064209+0000 mgr.a (mgr.14150) 208 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-11T07:36:39.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:38 smithi181 bash[22002]: cluster 2024-09-11T07:36:37.064209+0000 mgr.a (mgr.14150) 208 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-11T07:36:39.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:38 smithi115 bash[18678]: cluster 2024-09-11T07:36:37.064209+0000 mgr.a (mgr.14150) 208 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-11T07:36:40.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:40 smithi150 bash[22110]: cluster 2024-09-11T07:36:39.064738+0000 mgr.a (mgr.14150) 209 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-11T07:36:41.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:40 smithi181 bash[22002]: cluster 2024-09-11T07:36:39.064738+0000 mgr.a (mgr.14150) 209 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-11T07:36:41.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:40 smithi115 bash[18678]: cluster 2024-09-11T07:36:39.064738+0000 mgr.a (mgr.14150) 209 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-11T07:36:42.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:42 smithi150 bash[22110]: cluster 2024-09-11T07:36:41.065318+0000 mgr.a (mgr.14150) 210 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-11T07:36:43.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:42 smithi181 bash[22002]: cluster 2024-09-11T07:36:41.065318+0000 mgr.a (mgr.14150) 210 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-11T07:36:43.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:42 smithi115 bash[18678]: cluster 2024-09-11T07:36:41.065318+0000 mgr.a (mgr.14150) 210 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-11T07:36:45.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:44 smithi181 bash[22002]: cluster 2024-09-11T07:36:43.065883+0000 mgr.a (mgr.14150) 211 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:45.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:44 smithi115 bash[18678]: cluster 2024-09-11T07:36:43.065883+0000 mgr.a (mgr.14150) 211 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:45.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:44 smithi150 bash[22110]: cluster 2024-09-11T07:36:43.065883+0000 mgr.a (mgr.14150) 211 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:46.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:45 smithi181 bash[22002]: audit 2024-09-11T07:36:45.000438+0000 mon.b (mon.2) 12 : audit [INF] from='client.? 172.21.15.150:0/3169155303' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "fe6098c7-2798-457a-918c-9b7b2f0022b4"}]: dispatch 2024-09-11T07:36:46.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:45 smithi181 bash[22002]: audit 2024-09-11T07:36:45.001442+0000 mon.a (mon.0) 410 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "fe6098c7-2798-457a-918c-9b7b2f0022b4"}]: dispatch 2024-09-11T07:36:46.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:45 smithi181 bash[22002]: audit 2024-09-11T07:36:45.013218+0000 mon.a (mon.0) 411 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "fe6098c7-2798-457a-918c-9b7b2f0022b4"}]': finished 2024-09-11T07:36:46.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:45 smithi181 bash[22002]: cluster 2024-09-11T07:36:45.013340+0000 mon.a (mon.0) 412 : cluster [DBG] osdmap e22: 4 total, 3 up, 4 in 2024-09-11T07:36:46.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:45 smithi181 bash[22002]: audit 2024-09-11T07:36:45.013546+0000 mon.a (mon.0) 413 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T07:36:46.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:45 smithi181 bash[22002]: audit 2024-09-11T07:36:45.667976+0000 mon.b (mon.2) 13 : audit [DBG] from='client.? 172.21.15.150:0/4169928345' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T07:36:46.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:45 smithi115 bash[18678]: audit 2024-09-11T07:36:45.000438+0000 mon.b (mon.2) 12 : audit [INF] from='client.? 172.21.15.150:0/3169155303' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "fe6098c7-2798-457a-918c-9b7b2f0022b4"}]: dispatch 2024-09-11T07:36:46.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:45 smithi115 bash[18678]: audit 2024-09-11T07:36:45.001442+0000 mon.a (mon.0) 410 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "fe6098c7-2798-457a-918c-9b7b2f0022b4"}]: dispatch 2024-09-11T07:36:46.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:45 smithi115 bash[18678]: audit 2024-09-11T07:36:45.013218+0000 mon.a (mon.0) 411 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "fe6098c7-2798-457a-918c-9b7b2f0022b4"}]': finished 2024-09-11T07:36:46.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:45 smithi115 bash[18678]: cluster 2024-09-11T07:36:45.013340+0000 mon.a (mon.0) 412 : cluster [DBG] osdmap e22: 4 total, 3 up, 4 in 2024-09-11T07:36:46.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:45 smithi115 bash[18678]: audit 2024-09-11T07:36:45.013546+0000 mon.a (mon.0) 413 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T07:36:46.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:45 smithi115 bash[18678]: audit 2024-09-11T07:36:45.667976+0000 mon.b (mon.2) 13 : audit [DBG] from='client.? 172.21.15.150:0/4169928345' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T07:36:46.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:45 smithi150 bash[22110]: audit 2024-09-11T07:36:45.000438+0000 mon.b (mon.2) 12 : audit [INF] from='client.? 172.21.15.150:0/3169155303' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "fe6098c7-2798-457a-918c-9b7b2f0022b4"}]: dispatch 2024-09-11T07:36:46.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:45 smithi150 bash[22110]: audit 2024-09-11T07:36:45.001442+0000 mon.a (mon.0) 410 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "fe6098c7-2798-457a-918c-9b7b2f0022b4"}]: dispatch 2024-09-11T07:36:46.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:45 smithi150 bash[22110]: audit 2024-09-11T07:36:45.013218+0000 mon.a (mon.0) 411 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "fe6098c7-2798-457a-918c-9b7b2f0022b4"}]': finished 2024-09-11T07:36:46.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:45 smithi150 bash[22110]: cluster 2024-09-11T07:36:45.013340+0000 mon.a (mon.0) 412 : cluster [DBG] osdmap e22: 4 total, 3 up, 4 in 2024-09-11T07:36:46.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:45 smithi150 bash[22110]: audit 2024-09-11T07:36:45.013546+0000 mon.a (mon.0) 413 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T07:36:46.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:45 smithi150 bash[22110]: audit 2024-09-11T07:36:45.667976+0000 mon.b (mon.2) 13 : audit [DBG] from='client.? 172.21.15.150:0/4169928345' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T07:36:47.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:46 smithi181 bash[22002]: cluster 2024-09-11T07:36:45.066400+0000 mgr.a (mgr.14150) 212 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:47.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:46 smithi115 bash[18678]: cluster 2024-09-11T07:36:45.066400+0000 mgr.a (mgr.14150) 212 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:47.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:46 smithi150 bash[22110]: cluster 2024-09-11T07:36:45.066400+0000 mgr.a (mgr.14150) 212 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:49.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:48 smithi181 bash[22002]: cluster 2024-09-11T07:36:47.066945+0000 mgr.a (mgr.14150) 213 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:49.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:48 smithi115 bash[18678]: cluster 2024-09-11T07:36:47.066945+0000 mgr.a (mgr.14150) 213 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:49.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:48 smithi150 bash[22110]: cluster 2024-09-11T07:36:47.066945+0000 mgr.a (mgr.14150) 213 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:51.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:50 smithi181 bash[22002]: cluster 2024-09-11T07:36:49.067463+0000 mgr.a (mgr.14150) 214 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:51.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:50 smithi115 bash[18678]: cluster 2024-09-11T07:36:49.067463+0000 mgr.a (mgr.14150) 214 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:51.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:50 smithi150 bash[22110]: cluster 2024-09-11T07:36:49.067463+0000 mgr.a (mgr.14150) 214 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:53.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:52 smithi181 bash[22002]: cluster 2024-09-11T07:36:51.067998+0000 mgr.a (mgr.14150) 215 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:53.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:52 smithi115 bash[18678]: cluster 2024-09-11T07:36:51.067998+0000 mgr.a (mgr.14150) 215 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:53.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:52 smithi150 bash[22110]: cluster 2024-09-11T07:36:51.067998+0000 mgr.a (mgr.14150) 215 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:54.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:54 smithi150 bash[22110]: cluster 2024-09-11T07:36:53.068532+0000 mgr.a (mgr.14150) 216 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:55.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:54 smithi181 bash[22002]: cluster 2024-09-11T07:36:53.068532+0000 mgr.a (mgr.14150) 216 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:55.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:54 smithi115 bash[18678]: cluster 2024-09-11T07:36:53.068532+0000 mgr.a (mgr.14150) 216 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:56.909 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:56 smithi150 bash[22110]: cluster 2024-09-11T07:36:55.069091+0000 mgr.a (mgr.14150) 217 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:57.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:56 smithi181 bash[22002]: cluster 2024-09-11T07:36:55.069091+0000 mgr.a (mgr.14150) 217 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:57.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:56 smithi115 bash[18678]: cluster 2024-09-11T07:36:55.069091+0000 mgr.a (mgr.14150) 217 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:58.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:57 smithi181 bash[22002]: audit 2024-09-11T07:36:57.577358+0000 mon.a (mon.0) 414 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-11T07:36:58.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:57 smithi181 bash[22002]: audit 2024-09-11T07:36:57.579107+0000 mon.a (mon.0) 415 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:36:58.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:57 smithi115 bash[18678]: audit 2024-09-11T07:36:57.577358+0000 mon.a (mon.0) 414 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-11T07:36:58.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:57 smithi115 bash[18678]: audit 2024-09-11T07:36:57.579107+0000 mon.a (mon.0) 415 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:36:58.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:57 smithi150 bash[22110]: audit 2024-09-11T07:36:57.577358+0000 mon.a (mon.0) 414 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-11T07:36:58.210 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:57 smithi150 bash[22110]: audit 2024-09-11T07:36:57.579107+0000 mon.a (mon.0) 415 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:36:59.032 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:58 smithi150 bash[22110]: cluster 2024-09-11T07:36:57.069610+0000 mgr.a (mgr.14150) 218 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:59.032 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:36:58 smithi150 bash[22110]: cephadm 2024-09-11T07:36:57.580519+0000 mgr.a (mgr.14150) 219 : cephadm [INF] Deploying daemon osd.3 on smithi150 2024-09-11T07:36:59.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:58 smithi181 bash[22002]: cluster 2024-09-11T07:36:57.069610+0000 mgr.a (mgr.14150) 218 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:59.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:36:58 smithi181 bash[22002]: cephadm 2024-09-11T07:36:57.580519+0000 mgr.a (mgr.14150) 219 : cephadm [INF] Deploying daemon osd.3 on smithi150 2024-09-11T07:36:59.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:58 smithi115 bash[18678]: cluster 2024-09-11T07:36:57.069610+0000 mgr.a (mgr.14150) 218 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:36:59.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:36:58 smithi115 bash[18678]: cephadm 2024-09-11T07:36:57.580519+0000 mgr.a (mgr.14150) 219 : cephadm [INF] Deploying daemon osd.3 on smithi150 2024-09-11T07:37:01.056 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:00 smithi150 bash[22110]: cluster 2024-09-11T07:36:59.070165+0000 mgr.a (mgr.14150) 220 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:37:01.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:00 smithi181 bash[22002]: cluster 2024-09-11T07:36:59.070165+0000 mgr.a (mgr.14150) 220 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:37:01.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:00 smithi115 bash[18678]: cluster 2024-09-11T07:36:59.070165+0000 mgr.a (mgr.14150) 220 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:37:03.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:02 smithi181 bash[22002]: cluster 2024-09-11T07:37:01.070730+0000 mgr.a (mgr.14150) 221 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:37:03.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:02 smithi181 bash[22002]: audit 2024-09-11T07:37:02.267290+0000 mon.a (mon.0) 416 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:37:03.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:02 smithi181 bash[22002]: audit 2024-09-11T07:37:02.274413+0000 mon.a (mon.0) 417 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:03.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:02 smithi181 bash[22002]: audit 2024-09-11T07:37:02.281953+0000 mon.a (mon.0) 418 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:03.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:02 smithi115 bash[18678]: cluster 2024-09-11T07:37:01.070730+0000 mgr.a (mgr.14150) 221 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:37:03.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:02 smithi115 bash[18678]: audit 2024-09-11T07:37:02.267290+0000 mon.a (mon.0) 416 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:37:03.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:02 smithi115 bash[18678]: audit 2024-09-11T07:37:02.274413+0000 mon.a (mon.0) 417 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:03.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:02 smithi115 bash[18678]: audit 2024-09-11T07:37:02.281953+0000 mon.a (mon.0) 418 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:03.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:02 smithi150 bash[22110]: cluster 2024-09-11T07:37:01.070730+0000 mgr.a (mgr.14150) 221 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:37:03.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:02 smithi150 bash[22110]: audit 2024-09-11T07:37:02.267290+0000 mon.a (mon.0) 416 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:37:03.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:02 smithi150 bash[22110]: audit 2024-09-11T07:37:02.274413+0000 mon.a (mon.0) 417 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:03.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:02 smithi150 bash[22110]: audit 2024-09-11T07:37:02.281953+0000 mon.a (mon.0) 418 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:05.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:04 smithi181 bash[22002]: cluster 2024-09-11T07:37:03.071260+0000 mgr.a (mgr.14150) 222 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:37:05.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:04 smithi115 bash[18678]: cluster 2024-09-11T07:37:03.071260+0000 mgr.a (mgr.14150) 222 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:37:05.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:04 smithi150 bash[22110]: cluster 2024-09-11T07:37:03.071260+0000 mgr.a (mgr.14150) 222 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:37:07.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:06 smithi181 bash[22002]: cluster 2024-09-11T07:37:05.071813+0000 mgr.a (mgr.14150) 223 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:37:07.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:06 smithi115 bash[18678]: cluster 2024-09-11T07:37:05.071813+0000 mgr.a (mgr.14150) 223 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:37:07.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:06 smithi150 bash[22110]: cluster 2024-09-11T07:37:05.071813+0000 mgr.a (mgr.14150) 223 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:37:09.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:08 smithi181 bash[22002]: cluster 2024-09-11T07:37:07.072329+0000 mgr.a (mgr.14150) 224 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:37:09.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:08 smithi181 bash[22002]: audit 2024-09-11T07:37:08.518144+0000 mon.a (mon.0) 419 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:09.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:08 smithi181 bash[22002]: audit 2024-09-11T07:37:08.527992+0000 mon.a (mon.0) 420 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:09.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:08 smithi115 bash[18678]: cluster 2024-09-11T07:37:07.072329+0000 mgr.a (mgr.14150) 224 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:37:09.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:08 smithi115 bash[18678]: audit 2024-09-11T07:37:08.518144+0000 mon.a (mon.0) 419 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:09.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:08 smithi115 bash[18678]: audit 2024-09-11T07:37:08.527992+0000 mon.a (mon.0) 420 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:09.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:08 smithi150 bash[22110]: cluster 2024-09-11T07:37:07.072329+0000 mgr.a (mgr.14150) 224 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:37:09.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:08 smithi150 bash[22110]: audit 2024-09-11T07:37:08.518144+0000 mon.a (mon.0) 419 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:09.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:08 smithi150 bash[22110]: audit 2024-09-11T07:37:08.527992+0000 mon.a (mon.0) 420 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:09.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:09 smithi150 bash[22110]: audit 2024-09-11T07:37:08.905515+0000 mon.a (mon.0) 421 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:37:09.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:09 smithi150 bash[22110]: audit 2024-09-11T07:37:08.906986+0000 mon.a (mon.0) 422 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:37:09.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:09 smithi150 bash[22110]: audit 2024-09-11T07:37:08.916376+0000 mon.a (mon.0) 423 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:09.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:09 smithi150 bash[22110]: audit 2024-09-11T07:37:09.283116+0000 mon.b (mon.2) 14 : audit [INF] from='osd.3 [v2:172.21.15.150:6808/384009909,v1:172.21.15.150:6809/384009909]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-11T07:37:09.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:09 smithi150 bash[22110]: audit 2024-09-11T07:37:09.284172+0000 mon.a (mon.0) 424 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-11T07:37:10.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:09 smithi181 bash[22002]: audit 2024-09-11T07:37:08.905515+0000 mon.a (mon.0) 421 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:37:10.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:09 smithi181 bash[22002]: audit 2024-09-11T07:37:08.906986+0000 mon.a (mon.0) 422 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:37:10.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:09 smithi181 bash[22002]: audit 2024-09-11T07:37:08.916376+0000 mon.a (mon.0) 423 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:10.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:09 smithi181 bash[22002]: audit 2024-09-11T07:37:09.283116+0000 mon.b (mon.2) 14 : audit [INF] from='osd.3 [v2:172.21.15.150:6808/384009909,v1:172.21.15.150:6809/384009909]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-11T07:37:10.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:09 smithi181 bash[22002]: audit 2024-09-11T07:37:09.284172+0000 mon.a (mon.0) 424 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-11T07:37:10.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:09 smithi115 bash[18678]: audit 2024-09-11T07:37:08.905515+0000 mon.a (mon.0) 421 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:37:10.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:09 smithi115 bash[18678]: audit 2024-09-11T07:37:08.906986+0000 mon.a (mon.0) 422 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:37:10.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:09 smithi115 bash[18678]: audit 2024-09-11T07:37:08.916376+0000 mon.a (mon.0) 423 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:10.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:09 smithi115 bash[18678]: audit 2024-09-11T07:37:09.283116+0000 mon.b (mon.2) 14 : audit [INF] from='osd.3 [v2:172.21.15.150:6808/384009909,v1:172.21.15.150:6809/384009909]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-11T07:37:10.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:09 smithi115 bash[18678]: audit 2024-09-11T07:37:09.284172+0000 mon.a (mon.0) 424 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-11T07:37:11.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:10 smithi181 bash[22002]: cluster 2024-09-11T07:37:09.072901+0000 mgr.a (mgr.14150) 225 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:37:11.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:10 smithi181 bash[22002]: audit 2024-09-11T07:37:09.925352+0000 mon.a (mon.0) 425 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-11T07:37:11.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:10 smithi181 bash[22002]: cluster 2024-09-11T07:37:09.925494+0000 mon.a (mon.0) 426 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-11T07:37:11.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:10 smithi181 bash[22002]: audit 2024-09-11T07:37:09.925730+0000 mon.a (mon.0) 427 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T07:37:11.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:10 smithi181 bash[22002]: audit 2024-09-11T07:37:09.929440+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.150:6808/384009909,v1:172.21.15.150:6809/384009909]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi150", "root=default"]}]: dispatch 2024-09-11T07:37:11.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:10 smithi181 bash[22002]: audit 2024-09-11T07:37:09.930462+0000 mon.a (mon.0) 428 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi150", "root=default"]}]: dispatch 2024-09-11T07:37:11.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:10 smithi115 bash[18678]: cluster 2024-09-11T07:37:09.072901+0000 mgr.a (mgr.14150) 225 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:37:11.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:10 smithi115 bash[18678]: audit 2024-09-11T07:37:09.925352+0000 mon.a (mon.0) 425 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-11T07:37:11.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:10 smithi115 bash[18678]: cluster 2024-09-11T07:37:09.925494+0000 mon.a (mon.0) 426 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-11T07:37:11.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:10 smithi115 bash[18678]: audit 2024-09-11T07:37:09.925730+0000 mon.a (mon.0) 427 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T07:37:11.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:10 smithi115 bash[18678]: audit 2024-09-11T07:37:09.929440+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.150:6808/384009909,v1:172.21.15.150:6809/384009909]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi150", "root=default"]}]: dispatch 2024-09-11T07:37:11.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:10 smithi115 bash[18678]: audit 2024-09-11T07:37:09.930462+0000 mon.a (mon.0) 428 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi150", "root=default"]}]: dispatch 2024-09-11T07:37:11.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:10 smithi150 bash[22110]: cluster 2024-09-11T07:37:09.072901+0000 mgr.a (mgr.14150) 225 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:37:11.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:10 smithi150 bash[22110]: audit 2024-09-11T07:37:09.925352+0000 mon.a (mon.0) 425 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-11T07:37:11.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:10 smithi150 bash[22110]: cluster 2024-09-11T07:37:09.925494+0000 mon.a (mon.0) 426 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-11T07:37:11.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:10 smithi150 bash[22110]: audit 2024-09-11T07:37:09.925730+0000 mon.a (mon.0) 427 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T07:37:11.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:10 smithi150 bash[22110]: audit 2024-09-11T07:37:09.929440+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.150:6808/384009909,v1:172.21.15.150:6809/384009909]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi150", "root=default"]}]: dispatch 2024-09-11T07:37:11.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:10 smithi150 bash[22110]: audit 2024-09-11T07:37:09.930462+0000 mon.a (mon.0) 428 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi150", "root=default"]}]: dispatch 2024-09-11T07:37:12.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:11 smithi150 bash[22110]: audit 2024-09-11T07:37:10.928564+0000 mon.a (mon.0) 429 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi150", "root=default"]}]': finished 2024-09-11T07:37:12.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:11 smithi150 bash[22110]: cluster 2024-09-11T07:37:10.928719+0000 mon.a (mon.0) 430 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-11T07:37:12.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:11 smithi150 bash[22110]: audit 2024-09-11T07:37:10.928942+0000 mon.a (mon.0) 431 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T07:37:12.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:11 smithi150 bash[22110]: audit 2024-09-11T07:37:10.940778+0000 mon.a (mon.0) 432 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T07:37:12.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:11 smithi150 bash[22110]: cluster 2024-09-11T07:37:11.073408+0000 mgr.a (mgr.14150) 226 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:37:12.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:11 smithi181 bash[22002]: audit 2024-09-11T07:37:10.928564+0000 mon.a (mon.0) 429 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi150", "root=default"]}]': finished 2024-09-11T07:37:12.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:11 smithi181 bash[22002]: cluster 2024-09-11T07:37:10.928719+0000 mon.a (mon.0) 430 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-11T07:37:12.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:11 smithi181 bash[22002]: audit 2024-09-11T07:37:10.928942+0000 mon.a (mon.0) 431 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T07:37:12.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:11 smithi181 bash[22002]: audit 2024-09-11T07:37:10.940778+0000 mon.a (mon.0) 432 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T07:37:12.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:11 smithi181 bash[22002]: cluster 2024-09-11T07:37:11.073408+0000 mgr.a (mgr.14150) 226 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:37:12.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:11 smithi115 bash[18678]: audit 2024-09-11T07:37:10.928564+0000 mon.a (mon.0) 429 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi150", "root=default"]}]': finished 2024-09-11T07:37:12.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:11 smithi115 bash[18678]: cluster 2024-09-11T07:37:10.928719+0000 mon.a (mon.0) 430 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-11T07:37:12.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:11 smithi115 bash[18678]: audit 2024-09-11T07:37:10.928942+0000 mon.a (mon.0) 431 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T07:37:12.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:11 smithi115 bash[18678]: audit 2024-09-11T07:37:10.940778+0000 mon.a (mon.0) 432 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T07:37:12.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:11 smithi115 bash[18678]: cluster 2024-09-11T07:37:11.073408+0000 mgr.a (mgr.14150) 226 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-11T07:37:12.523 INFO:teuthology.orchestra.run.smithi150.stdout:Created osd(s) 3 on host 'smithi150' 2024-09-11T07:37:13.183 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:12 smithi150 bash[22110]: cluster 2024-09-11T07:37:10.285871+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-11T07:37:13.183 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:12 smithi150 bash[22110]: cluster 2024-09-11T07:37:10.285989+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-11T07:37:13.183 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:12 smithi150 bash[22110]: cluster 2024-09-11T07:37:11.931921+0000 mon.a (mon.0) 433 : cluster [INF] osd.3 [v2:172.21.15.150:6808/384009909,v1:172.21.15.150:6809/384009909] boot 2024-09-11T07:37:13.183 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:12 smithi150 bash[22110]: cluster 2024-09-11T07:37:11.932052+0000 mon.a (mon.0) 434 : cluster [DBG] osdmap e25: 4 total, 4 up, 4 in 2024-09-11T07:37:13.183 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:12 smithi150 bash[22110]: audit 2024-09-11T07:37:11.932928+0000 mon.a (mon.0) 435 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T07:37:13.183 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:12 smithi150 bash[22110]: audit 2024-09-11T07:37:12.502402+0000 mon.a (mon.0) 436 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:37:13.184 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:12 smithi150 bash[22110]: audit 2024-09-11T07:37:12.510246+0000 mon.a (mon.0) 437 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:13.184 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:12 smithi150 bash[22110]: audit 2024-09-11T07:37:12.517273+0000 mon.a (mon.0) 438 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:13.184 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:12 smithi150 bash[22110]: cluster 2024-09-11T07:37:12.934326+0000 mon.a (mon.0) 439 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-09-11T07:37:13.185 DEBUG:teuthology.orchestra.run.smithi150:osd.3> sudo journalctl -f -n 0 -u ceph-1973416c-700f-11ef-bcea-c7b262605968@osd.3.service 2024-09-11T07:37:13.188 INFO:tasks.cephadm:Deploying osd.4 on smithi181 with /dev/vg_nvme/lv_4... 2024-09-11T07:37:13.188 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-09-11T07:37:13.201 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:12 smithi181 bash[22002]: cluster 2024-09-11T07:37:10.285871+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-11T07:37:13.202 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:12 smithi181 bash[22002]: cluster 2024-09-11T07:37:10.285989+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-11T07:37:13.202 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:12 smithi181 bash[22002]: cluster 2024-09-11T07:37:11.931921+0000 mon.a (mon.0) 433 : cluster [INF] osd.3 [v2:172.21.15.150:6808/384009909,v1:172.21.15.150:6809/384009909] boot 2024-09-11T07:37:13.202 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:12 smithi181 bash[22002]: cluster 2024-09-11T07:37:11.932052+0000 mon.a (mon.0) 434 : cluster [DBG] osdmap e25: 4 total, 4 up, 4 in 2024-09-11T07:37:13.203 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:12 smithi181 bash[22002]: audit 2024-09-11T07:37:11.932928+0000 mon.a (mon.0) 435 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T07:37:13.203 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:12 smithi181 bash[22002]: audit 2024-09-11T07:37:12.502402+0000 mon.a (mon.0) 436 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:37:13.203 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:12 smithi181 bash[22002]: audit 2024-09-11T07:37:12.510246+0000 mon.a (mon.0) 437 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:13.203 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:12 smithi181 bash[22002]: audit 2024-09-11T07:37:12.517273+0000 mon.a (mon.0) 438 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:13.203 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:12 smithi181 bash[22002]: cluster 2024-09-11T07:37:12.934326+0000 mon.a (mon.0) 439 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-09-11T07:37:13.334 INFO:journalctl@ceph.osd.3.smithi150.stdout:-- Logs begin at Sun 2022-08-14 12:20:24 UTC. -- 2024-09-11T07:37:13.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:12 smithi115 bash[18678]: cluster 2024-09-11T07:37:10.285871+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-11T07:37:13.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:12 smithi115 bash[18678]: cluster 2024-09-11T07:37:10.285989+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-11T07:37:13.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:12 smithi115 bash[18678]: cluster 2024-09-11T07:37:11.931921+0000 mon.a (mon.0) 433 : cluster [INF] osd.3 [v2:172.21.15.150:6808/384009909,v1:172.21.15.150:6809/384009909] boot 2024-09-11T07:37:13.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:12 smithi115 bash[18678]: cluster 2024-09-11T07:37:11.932052+0000 mon.a (mon.0) 434 : cluster [DBG] osdmap e25: 4 total, 4 up, 4 in 2024-09-11T07:37:13.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:12 smithi115 bash[18678]: audit 2024-09-11T07:37:11.932928+0000 mon.a (mon.0) 435 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T07:37:13.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:12 smithi115 bash[18678]: audit 2024-09-11T07:37:12.502402+0000 mon.a (mon.0) 436 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:37:13.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:12 smithi115 bash[18678]: audit 2024-09-11T07:37:12.510246+0000 mon.a (mon.0) 437 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:13.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:12 smithi115 bash[18678]: audit 2024-09-11T07:37:12.517273+0000 mon.a (mon.0) 438 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:13.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:12 smithi115 bash[18678]: cluster 2024-09-11T07:37:12.934326+0000 mon.a (mon.0) 439 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-09-11T07:37:14.310 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:13 smithi181 bash[22002]: cluster 2024-09-11T07:37:13.073966+0000 mgr.a (mgr.14150) 227 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:14.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:13 smithi115 bash[18678]: cluster 2024-09-11T07:37:13.073966+0000 mgr.a (mgr.14150) 227 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:14.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:13 smithi150 bash[22110]: cluster 2024-09-11T07:37:13.073966+0000 mgr.a (mgr.14150) 227 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:15.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:14 smithi181 bash[22002]: cluster 2024-09-11T07:37:13.939157+0000 mon.a (mon.0) 440 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-11T07:37:15.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:14 smithi115 bash[18678]: cluster 2024-09-11T07:37:13.939157+0000 mon.a (mon.0) 440 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-11T07:37:15.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:14 smithi150 bash[22110]: cluster 2024-09-11T07:37:13.939157+0000 mon.a (mon.0) 440 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-11T07:37:16.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:15 smithi181 bash[22002]: cluster 2024-09-11T07:37:15.074489+0000 mgr.a (mgr.14150) 228 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:16.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:15 smithi115 bash[18678]: cluster 2024-09-11T07:37:15.074489+0000 mgr.a (mgr.14150) 228 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:16.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:15 smithi150 bash[22110]: cluster 2024-09-11T07:37:15.074489+0000 mgr.a (mgr.14150) 228 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:16.907 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.c/config 2024-09-11T07:37:18.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:18 smithi181 bash[22002]: cluster 2024-09-11T07:37:17.075083+0000 mgr.a (mgr.14150) 229 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-11T07:37:18.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:18 smithi150 bash[22110]: cluster 2024-09-11T07:37:17.075083+0000 mgr.a (mgr.14150) 229 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-11T07:37:18.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:18 smithi115 bash[18678]: cluster 2024-09-11T07:37:17.075083+0000 mgr.a (mgr.14150) 229 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-11T07:37:20.091 INFO:teuthology.orchestra.run.smithi181.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-09-11T07:37:20.280 INFO:teuthology.orchestra.run.smithi181.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-09-11T07:37:20.302 INFO:teuthology.orchestra.run.smithi181.stderr: stderr: 10+0 records in 2024-09-11T07:37:20.302 INFO:teuthology.orchestra.run.smithi181.stderr:10+0 records out 2024-09-11T07:37:20.303 INFO:teuthology.orchestra.run.smithi181.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0183941 s, 570 MB/s 2024-09-11T07:37:20.303 INFO:teuthology.orchestra.run.smithi181.stderr:--> Zapping successful for: 2024-09-11T07:37:20.410 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:20 smithi150 bash[22110]: cluster 2024-09-11T07:37:19.075610+0000 mgr.a (mgr.14150) 230 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 81 KiB/s, 0 objects/s recovering 2024-09-11T07:37:20.504 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:20 smithi181 bash[22002]: cluster 2024-09-11T07:37:19.075610+0000 mgr.a (mgr.14150) 230 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 81 KiB/s, 0 objects/s recovering 2024-09-11T07:37:20.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:20 smithi115 bash[18678]: cluster 2024-09-11T07:37:19.075610+0000 mgr.a (mgr.14150) 230 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 81 KiB/s, 0 objects/s recovering 2024-09-11T07:37:20.938 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph orch daemon add osd smithi181:vg_nvme/lv_4 2024-09-11T07:37:22.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:22 smithi150 bash[22110]: cluster 2024-09-11T07:37:21.076196+0000 mgr.a (mgr.14150) 231 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 71 KiB/s, 0 objects/s recovering 2024-09-11T07:37:22.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:22 smithi181 bash[22002]: cluster 2024-09-11T07:37:21.076196+0000 mgr.a (mgr.14150) 231 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 71 KiB/s, 0 objects/s recovering 2024-09-11T07:37:22.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:22 smithi115 bash[18678]: cluster 2024-09-11T07:37:21.076196+0000 mgr.a (mgr.14150) 231 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 71 KiB/s, 0 objects/s recovering 2024-09-11T07:37:24.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:23 smithi181 bash[22002]: cephadm 2024-09-11T07:37:22.783399+0000 mgr.a (mgr.14150) 232 : cephadm [INF] Detected new or changed devices on smithi150 2024-09-11T07:37:24.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:23 smithi181 bash[22002]: audit 2024-09-11T07:37:22.791333+0000 mon.a (mon.0) 441 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:24.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:23 smithi181 bash[22002]: audit 2024-09-11T07:37:22.799632+0000 mon.a (mon.0) 442 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:24.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:23 smithi181 bash[22002]: audit 2024-09-11T07:37:22.801400+0000 mon.a (mon.0) 443 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:37:24.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:23 smithi181 bash[22002]: audit 2024-09-11T07:37:22.803138+0000 mon.a (mon.0) 444 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:37:24.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:23 smithi181 bash[22002]: cephadm 2024-09-11T07:37:22.804377+0000 mgr.a (mgr.14150) 233 : cephadm [INF] Adjusting osd_memory_target on smithi150 to 8635M 2024-09-11T07:37:24.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:23 smithi181 bash[22002]: audit 2024-09-11T07:37:22.811782+0000 mon.a (mon.0) 445 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:24.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:23 smithi181 bash[22002]: audit 2024-09-11T07:37:22.813725+0000 mon.a (mon.0) 446 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:37:24.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:23 smithi181 bash[22002]: audit 2024-09-11T07:37:22.815423+0000 mon.a (mon.0) 447 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:37:24.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:23 smithi181 bash[22002]: audit 2024-09-11T07:37:22.825290+0000 mon.a (mon.0) 448 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:24.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:23 smithi181 bash[22002]: cluster 2024-09-11T07:37:23.076801+0000 mgr.a (mgr.14150) 234 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-11T07:37:24.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:23 smithi115 bash[18678]: cephadm 2024-09-11T07:37:22.783399+0000 mgr.a (mgr.14150) 232 : cephadm [INF] Detected new or changed devices on smithi150 2024-09-11T07:37:24.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:23 smithi115 bash[18678]: audit 2024-09-11T07:37:22.791333+0000 mon.a (mon.0) 441 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:24.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:23 smithi115 bash[18678]: audit 2024-09-11T07:37:22.799632+0000 mon.a (mon.0) 442 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:24.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:23 smithi115 bash[18678]: audit 2024-09-11T07:37:22.801400+0000 mon.a (mon.0) 443 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:37:24.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:23 smithi115 bash[18678]: audit 2024-09-11T07:37:22.803138+0000 mon.a (mon.0) 444 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:37:24.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:23 smithi115 bash[18678]: cephadm 2024-09-11T07:37:22.804377+0000 mgr.a (mgr.14150) 233 : cephadm [INF] Adjusting osd_memory_target on smithi150 to 8635M 2024-09-11T07:37:24.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:23 smithi115 bash[18678]: audit 2024-09-11T07:37:22.811782+0000 mon.a (mon.0) 445 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:24.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:23 smithi115 bash[18678]: audit 2024-09-11T07:37:22.813725+0000 mon.a (mon.0) 446 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:37:24.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:23 smithi115 bash[18678]: audit 2024-09-11T07:37:22.815423+0000 mon.a (mon.0) 447 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:37:24.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:23 smithi115 bash[18678]: audit 2024-09-11T07:37:22.825290+0000 mon.a (mon.0) 448 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:24.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:23 smithi115 bash[18678]: cluster 2024-09-11T07:37:23.076801+0000 mgr.a (mgr.14150) 234 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-11T07:37:24.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:23 smithi150 bash[22110]: cephadm 2024-09-11T07:37:22.783399+0000 mgr.a (mgr.14150) 232 : cephadm [INF] Detected new or changed devices on smithi150 2024-09-11T07:37:24.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:23 smithi150 bash[22110]: audit 2024-09-11T07:37:22.791333+0000 mon.a (mon.0) 441 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:24.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:23 smithi150 bash[22110]: audit 2024-09-11T07:37:22.799632+0000 mon.a (mon.0) 442 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:24.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:23 smithi150 bash[22110]: audit 2024-09-11T07:37:22.801400+0000 mon.a (mon.0) 443 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:37:24.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:23 smithi150 bash[22110]: audit 2024-09-11T07:37:22.803138+0000 mon.a (mon.0) 444 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:37:24.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:23 smithi150 bash[22110]: cephadm 2024-09-11T07:37:22.804377+0000 mgr.a (mgr.14150) 233 : cephadm [INF] Adjusting osd_memory_target on smithi150 to 8635M 2024-09-11T07:37:24.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:23 smithi150 bash[22110]: audit 2024-09-11T07:37:22.811782+0000 mon.a (mon.0) 445 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:24.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:23 smithi150 bash[22110]: audit 2024-09-11T07:37:22.813725+0000 mon.a (mon.0) 446 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:37:24.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:23 smithi150 bash[22110]: audit 2024-09-11T07:37:22.815423+0000 mon.a (mon.0) 447 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:37:24.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:23 smithi150 bash[22110]: audit 2024-09-11T07:37:22.825290+0000 mon.a (mon.0) 448 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:24.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:23 smithi150 bash[22110]: cluster 2024-09-11T07:37:23.076801+0000 mgr.a (mgr.14150) 234 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-11T07:37:24.656 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.c/config 2024-09-11T07:37:26.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:26 smithi181 bash[22002]: cluster 2024-09-11T07:37:25.077413+0000 mgr.a (mgr.14150) 235 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-09-11T07:37:26.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:26 smithi150 bash[22110]: cluster 2024-09-11T07:37:25.077413+0000 mgr.a (mgr.14150) 235 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-09-11T07:37:26.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:26 smithi115 bash[18678]: cluster 2024-09-11T07:37:25.077413+0000 mgr.a (mgr.14150) 235 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-09-11T07:37:28.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:28 smithi150 bash[22110]: cluster 2024-09-11T07:37:27.078148+0000 mgr.a (mgr.14150) 236 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T07:37:28.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:28 smithi150 bash[22110]: audit 2024-09-11T07:37:27.770698+0000 mgr.a (mgr.14150) 237 : audit [DBG] from='client.24232 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi181:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:37:28.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:28 smithi150 bash[22110]: audit 2024-09-11T07:37:27.777430+0000 mon.a (mon.0) 449 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T07:37:28.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:28 smithi150 bash[22110]: audit 2024-09-11T07:37:27.783638+0000 mon.a (mon.0) 450 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T07:37:28.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:28 smithi150 bash[22110]: audit 2024-09-11T07:37:27.785483+0000 mon.a (mon.0) 451 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:37:28.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:28 smithi181 bash[22002]: cluster 2024-09-11T07:37:27.078148+0000 mgr.a (mgr.14150) 236 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T07:37:28.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:28 smithi181 bash[22002]: audit 2024-09-11T07:37:27.770698+0000 mgr.a (mgr.14150) 237 : audit [DBG] from='client.24232 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi181:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:37:28.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:28 smithi181 bash[22002]: audit 2024-09-11T07:37:27.777430+0000 mon.a (mon.0) 449 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T07:37:28.560 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:28 smithi181 bash[22002]: audit 2024-09-11T07:37:27.783638+0000 mon.a (mon.0) 450 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T07:37:28.560 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:28 smithi181 bash[22002]: audit 2024-09-11T07:37:27.785483+0000 mon.a (mon.0) 451 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:37:28.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:28 smithi115 bash[18678]: cluster 2024-09-11T07:37:27.078148+0000 mgr.a (mgr.14150) 236 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T07:37:28.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:28 smithi115 bash[18678]: audit 2024-09-11T07:37:27.770698+0000 mgr.a (mgr.14150) 237 : audit [DBG] from='client.24232 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi181:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:37:28.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:28 smithi115 bash[18678]: audit 2024-09-11T07:37:27.777430+0000 mon.a (mon.0) 449 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T07:37:28.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:28 smithi115 bash[18678]: audit 2024-09-11T07:37:27.783638+0000 mon.a (mon.0) 450 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T07:37:28.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:28 smithi115 bash[18678]: audit 2024-09-11T07:37:27.785483+0000 mon.a (mon.0) 451 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:37:30.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:30 smithi150 bash[22110]: cluster 2024-09-11T07:37:29.078679+0000 mgr.a (mgr.14150) 238 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:30.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:30 smithi181 bash[22002]: cluster 2024-09-11T07:37:29.078679+0000 mgr.a (mgr.14150) 238 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:30.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:30 smithi115 bash[18678]: cluster 2024-09-11T07:37:29.078679+0000 mgr.a (mgr.14150) 238 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:32.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:32 smithi150 bash[22110]: cluster 2024-09-11T07:37:31.079234+0000 mgr.a (mgr.14150) 239 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:32.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:32 smithi181 bash[22002]: cluster 2024-09-11T07:37:31.079234+0000 mgr.a (mgr.14150) 239 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:32.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:32 smithi115 bash[18678]: cluster 2024-09-11T07:37:31.079234+0000 mgr.a (mgr.14150) 239 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:34.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:34 smithi181 bash[22002]: cluster 2024-09-11T07:37:33.079845+0000 mgr.a (mgr.14150) 240 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:34.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:34 smithi150 bash[22110]: cluster 2024-09-11T07:37:33.079845+0000 mgr.a (mgr.14150) 240 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:34.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:34 smithi115 bash[18678]: cluster 2024-09-11T07:37:33.079845+0000 mgr.a (mgr.14150) 240 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:36.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:36 smithi150 bash[22110]: cluster 2024-09-11T07:37:35.080407+0000 mgr.a (mgr.14150) 241 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:36.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:36 smithi181 bash[22002]: cluster 2024-09-11T07:37:35.080407+0000 mgr.a (mgr.14150) 241 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:36.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:36 smithi115 bash[18678]: cluster 2024-09-11T07:37:35.080407+0000 mgr.a (mgr.14150) 241 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:37.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:37 smithi150 bash[22110]: audit 2024-09-11T07:37:36.318450+0000 mon.c (mon.1) 5 : audit [INF] from='client.? 172.21.15.181:0/2895374796' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "91ce98be-445c-45ed-b811-6ff5569f062f"}]: dispatch 2024-09-11T07:37:37.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:37 smithi150 bash[22110]: audit 2024-09-11T07:37:36.318985+0000 mon.a (mon.0) 452 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "91ce98be-445c-45ed-b811-6ff5569f062f"}]: dispatch 2024-09-11T07:37:37.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:37 smithi150 bash[22110]: audit 2024-09-11T07:37:36.330663+0000 mon.a (mon.0) 453 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "91ce98be-445c-45ed-b811-6ff5569f062f"}]': finished 2024-09-11T07:37:37.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:37 smithi150 bash[22110]: cluster 2024-09-11T07:37:36.330777+0000 mon.a (mon.0) 454 : cluster [DBG] osdmap e28: 5 total, 4 up, 5 in 2024-09-11T07:37:37.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:37 smithi150 bash[22110]: audit 2024-09-11T07:37:36.331022+0000 mon.a (mon.0) 455 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T07:37:37.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:37 smithi150 bash[22110]: audit 2024-09-11T07:37:36.939469+0000 mon.c (mon.1) 6 : audit [DBG] from='client.? 172.21.15.181:0/2836127760' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T07:37:37.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:37 smithi181 bash[22002]: audit 2024-09-11T07:37:36.318450+0000 mon.c (mon.1) 5 : audit [INF] from='client.? 172.21.15.181:0/2895374796' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "91ce98be-445c-45ed-b811-6ff5569f062f"}]: dispatch 2024-09-11T07:37:37.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:37 smithi181 bash[22002]: audit 2024-09-11T07:37:36.318985+0000 mon.a (mon.0) 452 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "91ce98be-445c-45ed-b811-6ff5569f062f"}]: dispatch 2024-09-11T07:37:37.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:37 smithi181 bash[22002]: audit 2024-09-11T07:37:36.330663+0000 mon.a (mon.0) 453 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "91ce98be-445c-45ed-b811-6ff5569f062f"}]': finished 2024-09-11T07:37:37.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:37 smithi181 bash[22002]: cluster 2024-09-11T07:37:36.330777+0000 mon.a (mon.0) 454 : cluster [DBG] osdmap e28: 5 total, 4 up, 5 in 2024-09-11T07:37:37.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:37 smithi181 bash[22002]: audit 2024-09-11T07:37:36.331022+0000 mon.a (mon.0) 455 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T07:37:37.560 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:37 smithi181 bash[22002]: audit 2024-09-11T07:37:36.939469+0000 mon.c (mon.1) 6 : audit [DBG] from='client.? 172.21.15.181:0/2836127760' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T07:37:37.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:37 smithi115 bash[18678]: audit 2024-09-11T07:37:36.318450+0000 mon.c (mon.1) 5 : audit [INF] from='client.? 172.21.15.181:0/2895374796' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "91ce98be-445c-45ed-b811-6ff5569f062f"}]: dispatch 2024-09-11T07:37:37.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:37 smithi115 bash[18678]: audit 2024-09-11T07:37:36.318985+0000 mon.a (mon.0) 452 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "91ce98be-445c-45ed-b811-6ff5569f062f"}]: dispatch 2024-09-11T07:37:37.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:37 smithi115 bash[18678]: audit 2024-09-11T07:37:36.330663+0000 mon.a (mon.0) 453 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "91ce98be-445c-45ed-b811-6ff5569f062f"}]': finished 2024-09-11T07:37:37.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:37 smithi115 bash[18678]: cluster 2024-09-11T07:37:36.330777+0000 mon.a (mon.0) 454 : cluster [DBG] osdmap e28: 5 total, 4 up, 5 in 2024-09-11T07:37:37.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:37 smithi115 bash[18678]: audit 2024-09-11T07:37:36.331022+0000 mon.a (mon.0) 455 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T07:37:37.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:37 smithi115 bash[18678]: audit 2024-09-11T07:37:36.939469+0000 mon.c (mon.1) 6 : audit [DBG] from='client.? 172.21.15.181:0/2836127760' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T07:37:38.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:38 smithi115 bash[18678]: cluster 2024-09-11T07:37:37.080962+0000 mgr.a (mgr.14150) 242 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:38.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:38 smithi150 bash[22110]: cluster 2024-09-11T07:37:37.080962+0000 mgr.a (mgr.14150) 242 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:38.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:38 smithi181 bash[22002]: cluster 2024-09-11T07:37:37.080962+0000 mgr.a (mgr.14150) 242 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:40.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:40 smithi115 bash[18678]: cluster 2024-09-11T07:37:39.081483+0000 mgr.a (mgr.14150) 243 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:40.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:40 smithi150 bash[22110]: cluster 2024-09-11T07:37:39.081483+0000 mgr.a (mgr.14150) 243 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:40.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:40 smithi181 bash[22002]: cluster 2024-09-11T07:37:39.081483+0000 mgr.a (mgr.14150) 243 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:42.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:42 smithi115 bash[18678]: cluster 2024-09-11T07:37:41.082085+0000 mgr.a (mgr.14150) 244 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:42.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:42 smithi150 bash[22110]: cluster 2024-09-11T07:37:41.082085+0000 mgr.a (mgr.14150) 244 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:42.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:42 smithi181 bash[22002]: cluster 2024-09-11T07:37:41.082085+0000 mgr.a (mgr.14150) 244 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:44.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:44 smithi115 bash[18678]: cluster 2024-09-11T07:37:43.082629+0000 mgr.a (mgr.14150) 245 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:44.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:44 smithi150 bash[22110]: cluster 2024-09-11T07:37:43.082629+0000 mgr.a (mgr.14150) 245 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:44.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:44 smithi181 bash[22002]: cluster 2024-09-11T07:37:43.082629+0000 mgr.a (mgr.14150) 245 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:46.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:46 smithi181 bash[22002]: cluster 2024-09-11T07:37:45.083155+0000 mgr.a (mgr.14150) 246 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:46.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:46 smithi150 bash[22110]: cluster 2024-09-11T07:37:45.083155+0000 mgr.a (mgr.14150) 246 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:46.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:46 smithi115 bash[18678]: cluster 2024-09-11T07:37:45.083155+0000 mgr.a (mgr.14150) 246 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:48.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:48 smithi181 bash[22002]: cluster 2024-09-11T07:37:47.083695+0000 mgr.a (mgr.14150) 247 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:48.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:48 smithi150 bash[22110]: cluster 2024-09-11T07:37:47.083695+0000 mgr.a (mgr.14150) 247 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:48.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:48 smithi115 bash[18678]: cluster 2024-09-11T07:37:47.083695+0000 mgr.a (mgr.14150) 247 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:49.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:49 smithi150 bash[22110]: audit 2024-09-11T07:37:48.669883+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-11T07:37:49.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:49 smithi150 bash[22110]: audit 2024-09-11T07:37:48.671599+0000 mon.a (mon.0) 457 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:37:49.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:49 smithi150 bash[22110]: cephadm 2024-09-11T07:37:48.673052+0000 mgr.a (mgr.14150) 248 : cephadm [INF] Deploying daemon osd.4 on smithi181 2024-09-11T07:37:49.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:49 smithi181 bash[22002]: audit 2024-09-11T07:37:48.669883+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-11T07:37:49.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:49 smithi181 bash[22002]: audit 2024-09-11T07:37:48.671599+0000 mon.a (mon.0) 457 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:37:49.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:49 smithi181 bash[22002]: cephadm 2024-09-11T07:37:48.673052+0000 mgr.a (mgr.14150) 248 : cephadm [INF] Deploying daemon osd.4 on smithi181 2024-09-11T07:37:49.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:49 smithi115 bash[18678]: audit 2024-09-11T07:37:48.669883+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-11T07:37:49.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:49 smithi115 bash[18678]: audit 2024-09-11T07:37:48.671599+0000 mon.a (mon.0) 457 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:37:49.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:49 smithi115 bash[18678]: cephadm 2024-09-11T07:37:48.673052+0000 mgr.a (mgr.14150) 248 : cephadm [INF] Deploying daemon osd.4 on smithi181 2024-09-11T07:37:50.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:50 smithi150 bash[22110]: cluster 2024-09-11T07:37:49.084200+0000 mgr.a (mgr.14150) 249 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:50.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:50 smithi181 bash[22002]: cluster 2024-09-11T07:37:49.084200+0000 mgr.a (mgr.14150) 249 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:50.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:50 smithi115 bash[18678]: cluster 2024-09-11T07:37:49.084200+0000 mgr.a (mgr.14150) 249 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:52.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:52 smithi181 bash[22002]: cluster 2024-09-11T07:37:51.084715+0000 mgr.a (mgr.14150) 250 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:52.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:52 smithi150 bash[22110]: cluster 2024-09-11T07:37:51.084715+0000 mgr.a (mgr.14150) 250 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:52.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:52 smithi115 bash[18678]: cluster 2024-09-11T07:37:51.084715+0000 mgr.a (mgr.14150) 250 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:53.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:53 smithi181 bash[22002]: audit 2024-09-11T07:37:53.239065+0000 mon.a (mon.0) 458 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:37:53.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:53 smithi181 bash[22002]: audit 2024-09-11T07:37:53.246621+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:53.560 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:53 smithi181 bash[22002]: audit 2024-09-11T07:37:53.254595+0000 mon.a (mon.0) 460 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:53.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:53 smithi150 bash[22110]: audit 2024-09-11T07:37:53.239065+0000 mon.a (mon.0) 458 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:37:53.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:53 smithi150 bash[22110]: audit 2024-09-11T07:37:53.246621+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:53.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:53 smithi150 bash[22110]: audit 2024-09-11T07:37:53.254595+0000 mon.a (mon.0) 460 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:53.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:53 smithi115 bash[18678]: audit 2024-09-11T07:37:53.239065+0000 mon.a (mon.0) 458 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:37:53.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:53 smithi115 bash[18678]: audit 2024-09-11T07:37:53.246621+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:53.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:53 smithi115 bash[18678]: audit 2024-09-11T07:37:53.254595+0000 mon.a (mon.0) 460 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:37:54.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:54 smithi150 bash[22110]: cluster 2024-09-11T07:37:53.085297+0000 mgr.a (mgr.14150) 251 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:54.739 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:54 smithi181 bash[22002]: cluster 2024-09-11T07:37:53.085297+0000 mgr.a (mgr.14150) 251 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:54.849 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:54 smithi115 bash[18678]: cluster 2024-09-11T07:37:53.085297+0000 mgr.a (mgr.14150) 251 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:56.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:56 smithi150 bash[22110]: cluster 2024-09-11T07:37:55.085816+0000 mgr.a (mgr.14150) 252 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:56.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:56 smithi181 bash[22002]: cluster 2024-09-11T07:37:55.085816+0000 mgr.a (mgr.14150) 252 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:56.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:56 smithi115 bash[18678]: cluster 2024-09-11T07:37:55.085816+0000 mgr.a (mgr.14150) 252 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:58.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:37:58 smithi150 bash[22110]: cluster 2024-09-11T07:37:57.086387+0000 mgr.a (mgr.14150) 253 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:58.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:37:58 smithi181 bash[22002]: cluster 2024-09-11T07:37:57.086387+0000 mgr.a (mgr.14150) 253 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:37:58.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:37:58 smithi115 bash[18678]: cluster 2024-09-11T07:37:57.086387+0000 mgr.a (mgr.14150) 253 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:38:00.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:00 smithi181 bash[22002]: cluster 2024-09-11T07:37:59.086890+0000 mgr.a (mgr.14150) 254 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:38:00.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:00 smithi181 bash[22002]: audit 2024-09-11T07:37:59.627475+0000 mon.a (mon.0) 461 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:00.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:00 smithi181 bash[22002]: audit 2024-09-11T07:37:59.636939+0000 mon.a (mon.0) 462 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:00.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:00 smithi181 bash[22002]: audit 2024-09-11T07:37:59.976434+0000 mon.c (mon.1) 7 : audit [INF] from='osd.4 [v2:172.21.15.181:6800/1736827996,v1:172.21.15.181:6801/1736827996]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-11T07:38:00.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:00 smithi181 bash[22002]: audit 2024-09-11T07:37:59.976785+0000 mon.a (mon.0) 463 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-11T07:38:00.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:00 smithi181 bash[22002]: audit 2024-09-11T07:38:00.013388+0000 mon.a (mon.0) 464 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:38:00.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:00 smithi181 bash[22002]: audit 2024-09-11T07:38:00.014768+0000 mon.a (mon.0) 465 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:38:00.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:00 smithi181 bash[22002]: audit 2024-09-11T07:38:00.024263+0000 mon.a (mon.0) 466 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:00.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:00 smithi150 bash[22110]: cluster 2024-09-11T07:37:59.086890+0000 mgr.a (mgr.14150) 254 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:38:00.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:00 smithi150 bash[22110]: audit 2024-09-11T07:37:59.627475+0000 mon.a (mon.0) 461 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:00.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:00 smithi150 bash[22110]: audit 2024-09-11T07:37:59.636939+0000 mon.a (mon.0) 462 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:00.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:00 smithi150 bash[22110]: audit 2024-09-11T07:37:59.976434+0000 mon.c (mon.1) 7 : audit [INF] from='osd.4 [v2:172.21.15.181:6800/1736827996,v1:172.21.15.181:6801/1736827996]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-11T07:38:00.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:00 smithi150 bash[22110]: audit 2024-09-11T07:37:59.976785+0000 mon.a (mon.0) 463 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-11T07:38:00.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:00 smithi150 bash[22110]: audit 2024-09-11T07:38:00.013388+0000 mon.a (mon.0) 464 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:38:00.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:00 smithi150 bash[22110]: audit 2024-09-11T07:38:00.014768+0000 mon.a (mon.0) 465 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:38:00.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:00 smithi150 bash[22110]: audit 2024-09-11T07:38:00.024263+0000 mon.a (mon.0) 466 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:01.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:00 smithi115 bash[18678]: cluster 2024-09-11T07:37:59.086890+0000 mgr.a (mgr.14150) 254 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:38:01.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:00 smithi115 bash[18678]: audit 2024-09-11T07:37:59.627475+0000 mon.a (mon.0) 461 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:01.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:00 smithi115 bash[18678]: audit 2024-09-11T07:37:59.636939+0000 mon.a (mon.0) 462 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:01.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:00 smithi115 bash[18678]: audit 2024-09-11T07:37:59.976434+0000 mon.c (mon.1) 7 : audit [INF] from='osd.4 [v2:172.21.15.181:6800/1736827996,v1:172.21.15.181:6801/1736827996]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-11T07:38:01.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:00 smithi115 bash[18678]: audit 2024-09-11T07:37:59.976785+0000 mon.a (mon.0) 463 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-11T07:38:01.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:00 smithi115 bash[18678]: audit 2024-09-11T07:38:00.013388+0000 mon.a (mon.0) 464 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:38:01.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:00 smithi115 bash[18678]: audit 2024-09-11T07:38:00.014768+0000 mon.a (mon.0) 465 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:38:01.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:00 smithi115 bash[18678]: audit 2024-09-11T07:38:00.024263+0000 mon.a (mon.0) 466 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:01.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:01 smithi150 bash[22110]: audit 2024-09-11T07:38:00.639327+0000 mon.a (mon.0) 467 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-11T07:38:01.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:01 smithi150 bash[22110]: cluster 2024-09-11T07:38:00.639465+0000 mon.a (mon.0) 468 : cluster [DBG] osdmap e29: 5 total, 4 up, 5 in 2024-09-11T07:38:01.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:01 smithi150 bash[22110]: audit 2024-09-11T07:38:00.639742+0000 mon.a (mon.0) 469 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T07:38:01.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:01 smithi150 bash[22110]: audit 2024-09-11T07:38:00.640944+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.181:6800/1736827996,v1:172.21.15.181:6801/1736827996]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi181", "root=default"]}]: dispatch 2024-09-11T07:38:01.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:01 smithi150 bash[22110]: audit 2024-09-11T07:38:00.641399+0000 mon.a (mon.0) 470 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi181", "root=default"]}]: dispatch 2024-09-11T07:38:02.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:01 smithi181 bash[22002]: audit 2024-09-11T07:38:00.639327+0000 mon.a (mon.0) 467 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-11T07:38:02.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:01 smithi181 bash[22002]: cluster 2024-09-11T07:38:00.639465+0000 mon.a (mon.0) 468 : cluster [DBG] osdmap e29: 5 total, 4 up, 5 in 2024-09-11T07:38:02.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:01 smithi181 bash[22002]: audit 2024-09-11T07:38:00.639742+0000 mon.a (mon.0) 469 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T07:38:02.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:01 smithi181 bash[22002]: audit 2024-09-11T07:38:00.640944+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.181:6800/1736827996,v1:172.21.15.181:6801/1736827996]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi181", "root=default"]}]: dispatch 2024-09-11T07:38:02.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:01 smithi181 bash[22002]: audit 2024-09-11T07:38:00.641399+0000 mon.a (mon.0) 470 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi181", "root=default"]}]: dispatch 2024-09-11T07:38:02.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:01 smithi115 bash[18678]: audit 2024-09-11T07:38:00.639327+0000 mon.a (mon.0) 467 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-11T07:38:02.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:01 smithi115 bash[18678]: cluster 2024-09-11T07:38:00.639465+0000 mon.a (mon.0) 468 : cluster [DBG] osdmap e29: 5 total, 4 up, 5 in 2024-09-11T07:38:02.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:01 smithi115 bash[18678]: audit 2024-09-11T07:38:00.639742+0000 mon.a (mon.0) 469 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T07:38:02.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:01 smithi115 bash[18678]: audit 2024-09-11T07:38:00.640944+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.181:6800/1736827996,v1:172.21.15.181:6801/1736827996]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi181", "root=default"]}]: dispatch 2024-09-11T07:38:02.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:01 smithi115 bash[18678]: audit 2024-09-11T07:38:00.641399+0000 mon.a (mon.0) 470 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi181", "root=default"]}]: dispatch 2024-09-11T07:38:02.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:02 smithi150 bash[22110]: cluster 2024-09-11T07:38:01.087417+0000 mgr.a (mgr.14150) 255 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:38:02.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:02 smithi150 bash[22110]: audit 2024-09-11T07:38:01.642657+0000 mon.a (mon.0) 471 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi181", "root=default"]}]': finished 2024-09-11T07:38:02.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:02 smithi150 bash[22110]: cluster 2024-09-11T07:38:01.642835+0000 mon.a (mon.0) 472 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-11T07:38:02.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:02 smithi150 bash[22110]: audit 2024-09-11T07:38:01.643508+0000 mon.a (mon.0) 473 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T07:38:02.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:02 smithi150 bash[22110]: audit 2024-09-11T07:38:01.653026+0000 mon.a (mon.0) 474 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T07:38:03.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:02 smithi181 bash[22002]: cluster 2024-09-11T07:38:01.087417+0000 mgr.a (mgr.14150) 255 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:38:03.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:02 smithi181 bash[22002]: audit 2024-09-11T07:38:01.642657+0000 mon.a (mon.0) 471 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi181", "root=default"]}]': finished 2024-09-11T07:38:03.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:02 smithi181 bash[22002]: cluster 2024-09-11T07:38:01.642835+0000 mon.a (mon.0) 472 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-11T07:38:03.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:02 smithi181 bash[22002]: audit 2024-09-11T07:38:01.643508+0000 mon.a (mon.0) 473 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T07:38:03.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:02 smithi181 bash[22002]: audit 2024-09-11T07:38:01.653026+0000 mon.a (mon.0) 474 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T07:38:03.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:02 smithi115 bash[18678]: cluster 2024-09-11T07:38:01.087417+0000 mgr.a (mgr.14150) 255 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:38:03.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:02 smithi115 bash[18678]: audit 2024-09-11T07:38:01.642657+0000 mon.a (mon.0) 471 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi181", "root=default"]}]': finished 2024-09-11T07:38:03.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:02 smithi115 bash[18678]: cluster 2024-09-11T07:38:01.642835+0000 mon.a (mon.0) 472 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-11T07:38:03.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:02 smithi115 bash[18678]: audit 2024-09-11T07:38:01.643508+0000 mon.a (mon.0) 473 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T07:38:03.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:02 smithi115 bash[18678]: audit 2024-09-11T07:38:01.653026+0000 mon.a (mon.0) 474 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T07:38:03.285 INFO:teuthology.orchestra.run.smithi181.stdout:Created osd(s) 4 on host 'smithi181' 2024-09-11T07:38:03.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:03 smithi181 bash[22002]: cluster 2024-09-11T07:38:00.927948+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-11T07:38:03.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:03 smithi181 bash[22002]: cluster 2024-09-11T07:38:00.928043+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-11T07:38:03.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:03 smithi181 bash[22002]: cluster 2024-09-11T07:38:02.653279+0000 mon.a (mon.0) 475 : cluster [INF] osd.4 [v2:172.21.15.181:6800/1736827996,v1:172.21.15.181:6801/1736827996] boot 2024-09-11T07:38:03.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:03 smithi181 bash[22002]: cluster 2024-09-11T07:38:02.653363+0000 mon.a (mon.0) 476 : cluster [DBG] osdmap e31: 5 total, 5 up, 5 in 2024-09-11T07:38:03.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:03 smithi181 bash[22002]: audit 2024-09-11T07:38:02.654042+0000 mon.a (mon.0) 477 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T07:38:03.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:03 smithi181 bash[22002]: audit 2024-09-11T07:38:03.261159+0000 mon.a (mon.0) 478 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:38:03.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:03 smithi181 bash[22002]: audit 2024-09-11T07:38:03.268797+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:03.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:03 smithi181 bash[22002]: audit 2024-09-11T07:38:03.275491+0000 mon.a (mon.0) 480 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:03.885 DEBUG:teuthology.orchestra.run.smithi181:osd.4> sudo journalctl -f -n 0 -u ceph-1973416c-700f-11ef-bcea-c7b262605968@osd.4.service 2024-09-11T07:38:03.887 INFO:tasks.cephadm:Deploying osd.5 on smithi181 with /dev/vg_nvme/lv_3... 2024-09-11T07:38:03.887 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-09-11T07:38:03.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:03 smithi150 bash[22110]: cluster 2024-09-11T07:38:00.927948+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-11T07:38:03.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:03 smithi150 bash[22110]: cluster 2024-09-11T07:38:00.928043+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-11T07:38:03.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:03 smithi150 bash[22110]: cluster 2024-09-11T07:38:02.653279+0000 mon.a (mon.0) 475 : cluster [INF] osd.4 [v2:172.21.15.181:6800/1736827996,v1:172.21.15.181:6801/1736827996] boot 2024-09-11T07:38:03.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:03 smithi150 bash[22110]: cluster 2024-09-11T07:38:02.653363+0000 mon.a (mon.0) 476 : cluster [DBG] osdmap e31: 5 total, 5 up, 5 in 2024-09-11T07:38:03.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:03 smithi150 bash[22110]: audit 2024-09-11T07:38:02.654042+0000 mon.a (mon.0) 477 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T07:38:03.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:03 smithi150 bash[22110]: audit 2024-09-11T07:38:03.261159+0000 mon.a (mon.0) 478 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:38:03.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:03 smithi150 bash[22110]: audit 2024-09-11T07:38:03.268797+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:03.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:03 smithi150 bash[22110]: audit 2024-09-11T07:38:03.275491+0000 mon.a (mon.0) 480 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:04.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:03 smithi115 bash[18678]: cluster 2024-09-11T07:38:00.927948+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-11T07:38:04.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:03 smithi115 bash[18678]: cluster 2024-09-11T07:38:00.928043+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-11T07:38:04.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:03 smithi115 bash[18678]: cluster 2024-09-11T07:38:02.653279+0000 mon.a (mon.0) 475 : cluster [INF] osd.4 [v2:172.21.15.181:6800/1736827996,v1:172.21.15.181:6801/1736827996] boot 2024-09-11T07:38:04.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:03 smithi115 bash[18678]: cluster 2024-09-11T07:38:02.653363+0000 mon.a (mon.0) 476 : cluster [DBG] osdmap e31: 5 total, 5 up, 5 in 2024-09-11T07:38:04.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:03 smithi115 bash[18678]: audit 2024-09-11T07:38:02.654042+0000 mon.a (mon.0) 477 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T07:38:04.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:03 smithi115 bash[18678]: audit 2024-09-11T07:38:03.261159+0000 mon.a (mon.0) 478 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:38:04.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:03 smithi115 bash[18678]: audit 2024-09-11T07:38:03.268797+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:04.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:03 smithi115 bash[18678]: audit 2024-09-11T07:38:03.275491+0000 mon.a (mon.0) 480 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:04.154 INFO:journalctl@ceph.osd.4.smithi181.stdout:-- Logs begin at Sun 2022-08-14 12:20:24 UTC. -- 2024-09-11T07:38:04.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:04 smithi150 bash[22110]: cluster 2024-09-11T07:38:03.087944+0000 mgr.a (mgr.14150) 256 : cluster [DBG] pgmap v218: 1 pgs: 1 peering; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:38:04.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:04 smithi150 bash[22110]: cluster 2024-09-11T07:38:03.672358+0000 mon.a (mon.0) 481 : cluster [DBG] osdmap e32: 5 total, 5 up, 5 in 2024-09-11T07:38:05.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:04 smithi181 bash[22002]: cluster 2024-09-11T07:38:03.087944+0000 mgr.a (mgr.14150) 256 : cluster [DBG] pgmap v218: 1 pgs: 1 peering; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:38:05.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:04 smithi181 bash[22002]: cluster 2024-09-11T07:38:03.672358+0000 mon.a (mon.0) 481 : cluster [DBG] osdmap e32: 5 total, 5 up, 5 in 2024-09-11T07:38:05.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:04 smithi115 bash[18678]: cluster 2024-09-11T07:38:03.087944+0000 mgr.a (mgr.14150) 256 : cluster [DBG] pgmap v218: 1 pgs: 1 peering; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:38:05.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:04 smithi115 bash[18678]: cluster 2024-09-11T07:38:03.672358+0000 mon.a (mon.0) 481 : cluster [DBG] osdmap e32: 5 total, 5 up, 5 in 2024-09-11T07:38:05.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:05 smithi150 bash[22110]: cluster 2024-09-11T07:38:04.670616+0000 mon.a (mon.0) 482 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-11T07:38:06.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:05 smithi181 bash[22002]: cluster 2024-09-11T07:38:04.670616+0000 mon.a (mon.0) 482 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-11T07:38:06.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:05 smithi115 bash[18678]: cluster 2024-09-11T07:38:04.670616+0000 mon.a (mon.0) 482 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-11T07:38:06.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:06 smithi150 bash[22110]: cluster 2024-09-11T07:38:05.088516+0000 mgr.a (mgr.14150) 257 : cluster [DBG] pgmap v221: 1 pgs: 1 peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:07.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:06 smithi181 bash[22002]: cluster 2024-09-11T07:38:05.088516+0000 mgr.a (mgr.14150) 257 : cluster [DBG] pgmap v221: 1 pgs: 1 peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:07.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:06 smithi115 bash[18678]: cluster 2024-09-11T07:38:05.088516+0000 mgr.a (mgr.14150) 257 : cluster [DBG] pgmap v221: 1 pgs: 1 peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:08.033 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.c/config 2024-09-11T07:38:08.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:08 smithi150 bash[22110]: cluster 2024-09-11T07:38:07.089084+0000 mgr.a (mgr.14150) 258 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 106 KiB/s, 0 objects/s recovering 2024-09-11T07:38:09.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:08 smithi181 bash[22002]: cluster 2024-09-11T07:38:07.089084+0000 mgr.a (mgr.14150) 258 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 106 KiB/s, 0 objects/s recovering 2024-09-11T07:38:09.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:08 smithi115 bash[18678]: cluster 2024-09-11T07:38:07.089084+0000 mgr.a (mgr.14150) 258 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 106 KiB/s, 0 objects/s recovering 2024-09-11T07:38:11.052 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:10 smithi181 bash[22002]: cluster 2024-09-11T07:38:09.089628+0000 mgr.a (mgr.14150) 259 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 90 KiB/s, 0 objects/s recovering 2024-09-11T07:38:11.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:10 smithi115 bash[18678]: cluster 2024-09-11T07:38:09.089628+0000 mgr.a (mgr.14150) 259 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 90 KiB/s, 0 objects/s recovering 2024-09-11T07:38:11.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:10 smithi150 bash[22110]: cluster 2024-09-11T07:38:09.089628+0000 mgr.a (mgr.14150) 259 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 90 KiB/s, 0 objects/s recovering 2024-09-11T07:38:12.679 INFO:teuthology.orchestra.run.smithi181.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-09-11T07:38:12.871 INFO:teuthology.orchestra.run.smithi181.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-09-11T07:38:12.894 INFO:teuthology.orchestra.run.smithi181.stderr: stderr: 10+0 records in 2024-09-11T07:38:12.894 INFO:teuthology.orchestra.run.smithi181.stderr:10+0 records out 2024-09-11T07:38:12.894 INFO:teuthology.orchestra.run.smithi181.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.0192918 s, 544 MB/s 2024-09-11T07:38:12.894 INFO:teuthology.orchestra.run.smithi181.stderr:--> Zapping successful for: 2024-09-11T07:38:13.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:12 smithi181 bash[22002]: cluster 2024-09-11T07:38:11.090229+0000 mgr.a (mgr.14150) 260 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-11T07:38:13.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:12 smithi115 bash[18678]: cluster 2024-09-11T07:38:11.090229+0000 mgr.a (mgr.14150) 260 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-11T07:38:13.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:12 smithi150 bash[22110]: cluster 2024-09-11T07:38:11.090229+0000 mgr.a (mgr.14150) 260 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-11T07:38:13.614 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph orch daemon add osd smithi181:vg_nvme/lv_3 2024-09-11T07:38:15.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:14 smithi181 bash[22002]: cluster 2024-09-11T07:38:13.090871+0000 mgr.a (mgr.14150) 261 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 61 KiB/s, 0 objects/s recovering 2024-09-11T07:38:15.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:14 smithi181 bash[22002]: audit 2024-09-11T07:38:14.394797+0000 mon.a (mon.0) 483 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:15.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:14 smithi181 bash[22002]: audit 2024-09-11T07:38:14.402664+0000 mon.a (mon.0) 484 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:15.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:14 smithi181 bash[22002]: audit 2024-09-11T07:38:14.403961+0000 mon.a (mon.0) 485 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:38:15.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:14 smithi181 bash[22002]: audit 2024-09-11T07:38:14.411279+0000 mon.a (mon.0) 486 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:15.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:14 smithi181 bash[22002]: audit 2024-09-11T07:38:14.413297+0000 mon.a (mon.0) 487 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:38:15.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:14 smithi181 bash[22002]: audit 2024-09-11T07:38:14.415076+0000 mon.a (mon.0) 488 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:38:15.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:14 smithi181 bash[22002]: audit 2024-09-11T07:38:14.423617+0000 mon.a (mon.0) 489 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:15.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:14 smithi115 bash[18678]: cluster 2024-09-11T07:38:13.090871+0000 mgr.a (mgr.14150) 261 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 61 KiB/s, 0 objects/s recovering 2024-09-11T07:38:15.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:14 smithi115 bash[18678]: audit 2024-09-11T07:38:14.394797+0000 mon.a (mon.0) 483 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:15.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:14 smithi115 bash[18678]: audit 2024-09-11T07:38:14.402664+0000 mon.a (mon.0) 484 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:15.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:14 smithi115 bash[18678]: audit 2024-09-11T07:38:14.403961+0000 mon.a (mon.0) 485 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:38:15.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:14 smithi115 bash[18678]: audit 2024-09-11T07:38:14.411279+0000 mon.a (mon.0) 486 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:15.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:14 smithi115 bash[18678]: audit 2024-09-11T07:38:14.413297+0000 mon.a (mon.0) 487 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:38:15.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:14 smithi115 bash[18678]: audit 2024-09-11T07:38:14.415076+0000 mon.a (mon.0) 488 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:38:15.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:14 smithi115 bash[18678]: audit 2024-09-11T07:38:14.423617+0000 mon.a (mon.0) 489 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:15.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:14 smithi150 bash[22110]: cluster 2024-09-11T07:38:13.090871+0000 mgr.a (mgr.14150) 261 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 61 KiB/s, 0 objects/s recovering 2024-09-11T07:38:15.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:14 smithi150 bash[22110]: audit 2024-09-11T07:38:14.394797+0000 mon.a (mon.0) 483 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:15.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:14 smithi150 bash[22110]: audit 2024-09-11T07:38:14.402664+0000 mon.a (mon.0) 484 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:15.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:14 smithi150 bash[22110]: audit 2024-09-11T07:38:14.403961+0000 mon.a (mon.0) 485 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:38:15.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:14 smithi150 bash[22110]: audit 2024-09-11T07:38:14.411279+0000 mon.a (mon.0) 486 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:15.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:14 smithi150 bash[22110]: audit 2024-09-11T07:38:14.413297+0000 mon.a (mon.0) 487 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:38:15.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:14 smithi150 bash[22110]: audit 2024-09-11T07:38:14.415076+0000 mon.a (mon.0) 488 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:38:15.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:14 smithi150 bash[22110]: audit 2024-09-11T07:38:14.423617+0000 mon.a (mon.0) 489 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:16.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:15 smithi181 bash[22002]: cephadm 2024-09-11T07:38:14.386551+0000 mgr.a (mgr.14150) 262 : cephadm [INF] Detected new or changed devices on smithi181 2024-09-11T07:38:16.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:15 smithi181 bash[22002]: cephadm 2024-09-11T07:38:14.405210+0000 mgr.a (mgr.14150) 263 : cephadm [INF] Adjusting osd_memory_target on smithi181 to 21366M 2024-09-11T07:38:16.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:15 smithi115 bash[18678]: cephadm 2024-09-11T07:38:14.386551+0000 mgr.a (mgr.14150) 262 : cephadm [INF] Detected new or changed devices on smithi181 2024-09-11T07:38:16.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:15 smithi115 bash[18678]: cephadm 2024-09-11T07:38:14.405210+0000 mgr.a (mgr.14150) 263 : cephadm [INF] Adjusting osd_memory_target on smithi181 to 21366M 2024-09-11T07:38:16.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:15 smithi150 bash[22110]: cephadm 2024-09-11T07:38:14.386551+0000 mgr.a (mgr.14150) 262 : cephadm [INF] Detected new or changed devices on smithi181 2024-09-11T07:38:16.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:15 smithi150 bash[22110]: cephadm 2024-09-11T07:38:14.405210+0000 mgr.a (mgr.14150) 263 : cephadm [INF] Adjusting osd_memory_target on smithi181 to 21366M 2024-09-11T07:38:17.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:16 smithi181 bash[22002]: cluster 2024-09-11T07:38:15.091409+0000 mgr.a (mgr.14150) 264 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 55 KiB/s, 0 objects/s recovering 2024-09-11T07:38:17.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:16 smithi115 bash[18678]: cluster 2024-09-11T07:38:15.091409+0000 mgr.a (mgr.14150) 264 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 55 KiB/s, 0 objects/s recovering 2024-09-11T07:38:17.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:16 smithi150 bash[22110]: cluster 2024-09-11T07:38:15.091409+0000 mgr.a (mgr.14150) 264 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 55 KiB/s, 0 objects/s recovering 2024-09-11T07:38:18.338 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.c/config 2024-09-11T07:38:19.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:18 smithi181 bash[22002]: cluster 2024-09-11T07:38:17.091966+0000 mgr.a (mgr.14150) 265 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T07:38:19.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:18 smithi115 bash[18678]: cluster 2024-09-11T07:38:17.091966+0000 mgr.a (mgr.14150) 265 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T07:38:19.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:18 smithi150 bash[22110]: cluster 2024-09-11T07:38:17.091966+0000 mgr.a (mgr.14150) 265 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T07:38:21.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:20 smithi181 bash[22002]: cluster 2024-09-11T07:38:19.092504+0000 mgr.a (mgr.14150) 266 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:21.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:20 smithi115 bash[18678]: cluster 2024-09-11T07:38:19.092504+0000 mgr.a (mgr.14150) 266 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:21.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:20 smithi150 bash[22110]: cluster 2024-09-11T07:38:19.092504+0000 mgr.a (mgr.14150) 266 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:22.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:21 smithi181 bash[22002]: audit 2024-09-11T07:38:21.488323+0000 mon.a (mon.0) 490 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T07:38:22.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:21 smithi181 bash[22002]: audit 2024-09-11T07:38:21.495431+0000 mon.a (mon.0) 491 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T07:38:22.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:21 smithi181 bash[22002]: audit 2024-09-11T07:38:21.496811+0000 mon.a (mon.0) 492 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:38:22.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:21 smithi115 bash[18678]: audit 2024-09-11T07:38:21.488323+0000 mon.a (mon.0) 490 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T07:38:22.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:21 smithi115 bash[18678]: audit 2024-09-11T07:38:21.495431+0000 mon.a (mon.0) 491 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T07:38:22.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:21 smithi115 bash[18678]: audit 2024-09-11T07:38:21.496811+0000 mon.a (mon.0) 492 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:38:22.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:21 smithi150 bash[22110]: audit 2024-09-11T07:38:21.488323+0000 mon.a (mon.0) 490 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T07:38:22.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:21 smithi150 bash[22110]: audit 2024-09-11T07:38:21.495431+0000 mon.a (mon.0) 491 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T07:38:22.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:21 smithi150 bash[22110]: audit 2024-09-11T07:38:21.496811+0000 mon.a (mon.0) 492 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:38:23.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:22 smithi181 bash[22002]: cluster 2024-09-11T07:38:21.093068+0000 mgr.a (mgr.14150) 267 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:23.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:22 smithi181 bash[22002]: audit 2024-09-11T07:38:21.482059+0000 mgr.a (mgr.14150) 268 : audit [DBG] from='client.24259 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi181:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:38:23.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:22 smithi115 bash[18678]: cluster 2024-09-11T07:38:21.093068+0000 mgr.a (mgr.14150) 267 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:23.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:22 smithi115 bash[18678]: audit 2024-09-11T07:38:21.482059+0000 mgr.a (mgr.14150) 268 : audit [DBG] from='client.24259 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi181:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:38:23.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:22 smithi150 bash[22110]: cluster 2024-09-11T07:38:21.093068+0000 mgr.a (mgr.14150) 267 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:23.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:22 smithi150 bash[22110]: audit 2024-09-11T07:38:21.482059+0000 mgr.a (mgr.14150) 268 : audit [DBG] from='client.24259 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi181:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:38:25.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:24 smithi181 bash[22002]: cluster 2024-09-11T07:38:23.093610+0000 mgr.a (mgr.14150) 269 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:25.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:24 smithi115 bash[18678]: cluster 2024-09-11T07:38:23.093610+0000 mgr.a (mgr.14150) 269 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:25.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:24 smithi150 bash[22110]: cluster 2024-09-11T07:38:23.093610+0000 mgr.a (mgr.14150) 269 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:27.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:26 smithi181 bash[22002]: cluster 2024-09-11T07:38:25.094205+0000 mgr.a (mgr.14150) 270 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:27.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:26 smithi115 bash[18678]: cluster 2024-09-11T07:38:25.094205+0000 mgr.a (mgr.14150) 270 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:27.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:26 smithi150 bash[22110]: cluster 2024-09-11T07:38:25.094205+0000 mgr.a (mgr.14150) 270 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:29.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:28 smithi181 bash[22002]: cluster 2024-09-11T07:38:27.094805+0000 mgr.a (mgr.14150) 271 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:29.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:28 smithi115 bash[18678]: cluster 2024-09-11T07:38:27.094805+0000 mgr.a (mgr.14150) 271 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:29.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:28 smithi150 bash[22110]: cluster 2024-09-11T07:38:27.094805+0000 mgr.a (mgr.14150) 271 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:31.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:30 smithi181 bash[22002]: cluster 2024-09-11T07:38:29.095300+0000 mgr.a (mgr.14150) 272 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:31.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:30 smithi181 bash[22002]: audit 2024-09-11T07:38:29.842278+0000 mon.c (mon.1) 9 : audit [INF] from='client.? 172.21.15.181:0/805676818' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "13a37601-83cc-471b-ab56-e37cd20ffadc"}]: dispatch 2024-09-11T07:38:31.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:30 smithi181 bash[22002]: audit 2024-09-11T07:38:29.842678+0000 mon.a (mon.0) 493 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "13a37601-83cc-471b-ab56-e37cd20ffadc"}]: dispatch 2024-09-11T07:38:31.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:30 smithi181 bash[22002]: audit 2024-09-11T07:38:29.851281+0000 mon.a (mon.0) 494 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "13a37601-83cc-471b-ab56-e37cd20ffadc"}]': finished 2024-09-11T07:38:31.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:30 smithi181 bash[22002]: cluster 2024-09-11T07:38:29.851452+0000 mon.a (mon.0) 495 : cluster [DBG] osdmap e34: 6 total, 5 up, 6 in 2024-09-11T07:38:31.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:30 smithi181 bash[22002]: audit 2024-09-11T07:38:29.851761+0000 mon.a (mon.0) 496 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T07:38:31.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:30 smithi181 bash[22002]: audit 2024-09-11T07:38:30.508977+0000 mon.c (mon.1) 10 : audit [DBG] from='client.? 172.21.15.181:0/3153535969' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T07:38:31.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:30 smithi115 bash[18678]: cluster 2024-09-11T07:38:29.095300+0000 mgr.a (mgr.14150) 272 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:31.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:30 smithi115 bash[18678]: audit 2024-09-11T07:38:29.842278+0000 mon.c (mon.1) 9 : audit [INF] from='client.? 172.21.15.181:0/805676818' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "13a37601-83cc-471b-ab56-e37cd20ffadc"}]: dispatch 2024-09-11T07:38:31.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:30 smithi115 bash[18678]: audit 2024-09-11T07:38:29.842678+0000 mon.a (mon.0) 493 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "13a37601-83cc-471b-ab56-e37cd20ffadc"}]: dispatch 2024-09-11T07:38:31.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:30 smithi115 bash[18678]: audit 2024-09-11T07:38:29.851281+0000 mon.a (mon.0) 494 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "13a37601-83cc-471b-ab56-e37cd20ffadc"}]': finished 2024-09-11T07:38:31.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:30 smithi115 bash[18678]: cluster 2024-09-11T07:38:29.851452+0000 mon.a (mon.0) 495 : cluster [DBG] osdmap e34: 6 total, 5 up, 6 in 2024-09-11T07:38:31.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:30 smithi115 bash[18678]: audit 2024-09-11T07:38:29.851761+0000 mon.a (mon.0) 496 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T07:38:31.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:30 smithi115 bash[18678]: audit 2024-09-11T07:38:30.508977+0000 mon.c (mon.1) 10 : audit [DBG] from='client.? 172.21.15.181:0/3153535969' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T07:38:31.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:30 smithi150 bash[22110]: cluster 2024-09-11T07:38:29.095300+0000 mgr.a (mgr.14150) 272 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:31.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:30 smithi150 bash[22110]: audit 2024-09-11T07:38:29.842278+0000 mon.c (mon.1) 9 : audit [INF] from='client.? 172.21.15.181:0/805676818' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "13a37601-83cc-471b-ab56-e37cd20ffadc"}]: dispatch 2024-09-11T07:38:31.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:30 smithi150 bash[22110]: audit 2024-09-11T07:38:29.842678+0000 mon.a (mon.0) 493 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "13a37601-83cc-471b-ab56-e37cd20ffadc"}]: dispatch 2024-09-11T07:38:31.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:30 smithi150 bash[22110]: audit 2024-09-11T07:38:29.851281+0000 mon.a (mon.0) 494 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "13a37601-83cc-471b-ab56-e37cd20ffadc"}]': finished 2024-09-11T07:38:31.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:30 smithi150 bash[22110]: cluster 2024-09-11T07:38:29.851452+0000 mon.a (mon.0) 495 : cluster [DBG] osdmap e34: 6 total, 5 up, 6 in 2024-09-11T07:38:31.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:30 smithi150 bash[22110]: audit 2024-09-11T07:38:29.851761+0000 mon.a (mon.0) 496 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T07:38:31.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:30 smithi150 bash[22110]: audit 2024-09-11T07:38:30.508977+0000 mon.c (mon.1) 10 : audit [DBG] from='client.? 172.21.15.181:0/3153535969' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T07:38:33.011 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:32 smithi181 bash[22002]: cluster 2024-09-11T07:38:31.095832+0000 mgr.a (mgr.14150) 273 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:33.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:32 smithi115 bash[18678]: cluster 2024-09-11T07:38:31.095832+0000 mgr.a (mgr.14150) 273 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:33.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:32 smithi150 bash[22110]: cluster 2024-09-11T07:38:31.095832+0000 mgr.a (mgr.14150) 273 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:35.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:34 smithi181 bash[22002]: cluster 2024-09-11T07:38:33.096415+0000 mgr.a (mgr.14150) 274 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:35.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:34 smithi115 bash[18678]: cluster 2024-09-11T07:38:33.096415+0000 mgr.a (mgr.14150) 274 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:35.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:34 smithi150 bash[22110]: cluster 2024-09-11T07:38:33.096415+0000 mgr.a (mgr.14150) 274 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:37.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:36 smithi181 bash[22002]: cluster 2024-09-11T07:38:35.096940+0000 mgr.a (mgr.14150) 275 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:37.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:36 smithi115 bash[18678]: cluster 2024-09-11T07:38:35.096940+0000 mgr.a (mgr.14150) 275 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:37.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:36 smithi150 bash[22110]: cluster 2024-09-11T07:38:35.096940+0000 mgr.a (mgr.14150) 275 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:39.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:38 smithi181 bash[22002]: cluster 2024-09-11T07:38:37.097487+0000 mgr.a (mgr.14150) 276 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:39.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:38 smithi115 bash[18678]: cluster 2024-09-11T07:38:37.097487+0000 mgr.a (mgr.14150) 276 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:39.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:38 smithi150 bash[22110]: cluster 2024-09-11T07:38:37.097487+0000 mgr.a (mgr.14150) 276 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:41.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:40 smithi181 bash[22002]: cluster 2024-09-11T07:38:39.098077+0000 mgr.a (mgr.14150) 277 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:41.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:40 smithi115 bash[18678]: cluster 2024-09-11T07:38:39.098077+0000 mgr.a (mgr.14150) 277 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:41.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:40 smithi150 bash[22110]: cluster 2024-09-11T07:38:39.098077+0000 mgr.a (mgr.14150) 277 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:43.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:42 smithi181 bash[22002]: cluster 2024-09-11T07:38:41.098570+0000 mgr.a (mgr.14150) 278 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:43.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:42 smithi181 bash[22002]: audit 2024-09-11T07:38:42.290505+0000 mon.a (mon.0) 497 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-11T07:38:43.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:42 smithi181 bash[22002]: audit 2024-09-11T07:38:42.292221+0000 mon.a (mon.0) 498 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:38:43.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:42 smithi115 bash[18678]: cluster 2024-09-11T07:38:41.098570+0000 mgr.a (mgr.14150) 278 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:43.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:42 smithi115 bash[18678]: audit 2024-09-11T07:38:42.290505+0000 mon.a (mon.0) 497 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-11T07:38:43.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:42 smithi115 bash[18678]: audit 2024-09-11T07:38:42.292221+0000 mon.a (mon.0) 498 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:38:43.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:42 smithi150 bash[22110]: cluster 2024-09-11T07:38:41.098570+0000 mgr.a (mgr.14150) 278 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:43.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:42 smithi150 bash[22110]: audit 2024-09-11T07:38:42.290505+0000 mon.a (mon.0) 497 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-11T07:38:43.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:42 smithi150 bash[22110]: audit 2024-09-11T07:38:42.292221+0000 mon.a (mon.0) 498 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:38:44.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:43 smithi181 bash[22002]: cephadm 2024-09-11T07:38:42.293609+0000 mgr.a (mgr.14150) 279 : cephadm [INF] Deploying daemon osd.5 on smithi181 2024-09-11T07:38:44.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:43 smithi115 bash[18678]: cephadm 2024-09-11T07:38:42.293609+0000 mgr.a (mgr.14150) 279 : cephadm [INF] Deploying daemon osd.5 on smithi181 2024-09-11T07:38:44.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:43 smithi150 bash[22110]: cephadm 2024-09-11T07:38:42.293609+0000 mgr.a (mgr.14150) 279 : cephadm [INF] Deploying daemon osd.5 on smithi181 2024-09-11T07:38:45.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:44 smithi181 bash[22002]: cluster 2024-09-11T07:38:43.099196+0000 mgr.a (mgr.14150) 280 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:45.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:44 smithi115 bash[18678]: cluster 2024-09-11T07:38:43.099196+0000 mgr.a (mgr.14150) 280 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:45.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:44 smithi150 bash[22110]: cluster 2024-09-11T07:38:43.099196+0000 mgr.a (mgr.14150) 280 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:47.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:46 smithi181 bash[22002]: cluster 2024-09-11T07:38:45.099757+0000 mgr.a (mgr.14150) 281 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:47.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:46 smithi115 bash[18678]: cluster 2024-09-11T07:38:45.099757+0000 mgr.a (mgr.14150) 281 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:47.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:46 smithi150 bash[22110]: cluster 2024-09-11T07:38:45.099757+0000 mgr.a (mgr.14150) 281 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:48.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:47 smithi181 bash[22002]: audit 2024-09-11T07:38:46.889147+0000 mon.a (mon.0) 499 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:38:48.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:47 smithi181 bash[22002]: audit 2024-09-11T07:38:46.895512+0000 mon.a (mon.0) 500 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:48.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:47 smithi181 bash[22002]: audit 2024-09-11T07:38:46.902994+0000 mon.a (mon.0) 501 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:48.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:47 smithi115 bash[18678]: audit 2024-09-11T07:38:46.889147+0000 mon.a (mon.0) 499 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:38:48.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:47 smithi115 bash[18678]: audit 2024-09-11T07:38:46.895512+0000 mon.a (mon.0) 500 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:48.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:47 smithi115 bash[18678]: audit 2024-09-11T07:38:46.902994+0000 mon.a (mon.0) 501 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:48.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:47 smithi150 bash[22110]: audit 2024-09-11T07:38:46.889147+0000 mon.a (mon.0) 499 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:38:48.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:47 smithi150 bash[22110]: audit 2024-09-11T07:38:46.895512+0000 mon.a (mon.0) 500 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:48.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:47 smithi150 bash[22110]: audit 2024-09-11T07:38:46.902994+0000 mon.a (mon.0) 501 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:49.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:48 smithi181 bash[22002]: cluster 2024-09-11T07:38:47.100267+0000 mgr.a (mgr.14150) 282 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:49.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:48 smithi115 bash[18678]: cluster 2024-09-11T07:38:47.100267+0000 mgr.a (mgr.14150) 282 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:49.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:48 smithi150 bash[22110]: cluster 2024-09-11T07:38:47.100267+0000 mgr.a (mgr.14150) 282 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:51.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:50 smithi181 bash[22002]: cluster 2024-09-11T07:38:49.100792+0000 mgr.a (mgr.14150) 283 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:51.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:50 smithi115 bash[18678]: cluster 2024-09-11T07:38:49.100792+0000 mgr.a (mgr.14150) 283 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:51.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:50 smithi150 bash[22110]: cluster 2024-09-11T07:38:49.100792+0000 mgr.a (mgr.14150) 283 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:52.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:51 smithi181 bash[22002]: cluster 2024-09-11T07:38:51.101318+0000 mgr.a (mgr.14150) 284 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:52.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:51 smithi150 bash[22110]: cluster 2024-09-11T07:38:51.101318+0000 mgr.a (mgr.14150) 284 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:52.346 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:51 smithi115 bash[18678]: cluster 2024-09-11T07:38:51.101318+0000 mgr.a (mgr.14150) 284 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:53.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:53 smithi181 bash[22002]: audit 2024-09-11T07:38:52.318869+0000 mon.a (mon.0) 502 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:53.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:53 smithi181 bash[22002]: audit 2024-09-11T07:38:52.329240+0000 mon.a (mon.0) 503 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:53.560 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:53 smithi181 bash[22002]: audit 2024-09-11T07:38:52.330956+0000 mon.a (mon.0) 504 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:38:53.560 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:53 smithi181 bash[22002]: audit 2024-09-11T07:38:52.332553+0000 mon.a (mon.0) 505 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:38:53.560 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:53 smithi181 bash[22002]: audit 2024-09-11T07:38:52.345710+0000 mon.a (mon.0) 506 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:53.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:53 smithi115 bash[18678]: audit 2024-09-11T07:38:52.318869+0000 mon.a (mon.0) 502 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:53.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:53 smithi115 bash[18678]: audit 2024-09-11T07:38:52.329240+0000 mon.a (mon.0) 503 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:53.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:53 smithi115 bash[18678]: audit 2024-09-11T07:38:52.330956+0000 mon.a (mon.0) 504 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:38:53.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:53 smithi115 bash[18678]: audit 2024-09-11T07:38:52.332553+0000 mon.a (mon.0) 505 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:38:53.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:53 smithi115 bash[18678]: audit 2024-09-11T07:38:52.345710+0000 mon.a (mon.0) 506 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:53.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:53 smithi150 bash[22110]: audit 2024-09-11T07:38:52.318869+0000 mon.a (mon.0) 502 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:53.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:53 smithi150 bash[22110]: audit 2024-09-11T07:38:52.329240+0000 mon.a (mon.0) 503 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:53.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:53 smithi150 bash[22110]: audit 2024-09-11T07:38:52.330956+0000 mon.a (mon.0) 504 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:38:53.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:53 smithi150 bash[22110]: audit 2024-09-11T07:38:52.332553+0000 mon.a (mon.0) 505 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:38:53.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:53 smithi150 bash[22110]: audit 2024-09-11T07:38:52.345710+0000 mon.a (mon.0) 506 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:54.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:54 smithi150 bash[22110]: cluster 2024-09-11T07:38:53.101881+0000 mgr.a (mgr.14150) 285 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:54.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:54 smithi150 bash[22110]: audit 2024-09-11T07:38:53.685103+0000 mon.c (mon.1) 11 : audit [INF] from='osd.5 [v2:172.21.15.181:6808/906119179,v1:172.21.15.181:6809/906119179]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-11T07:38:54.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:54 smithi150 bash[22110]: audit 2024-09-11T07:38:53.685671+0000 mon.a (mon.0) 507 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-11T07:38:54.739 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:54 smithi181 bash[22002]: cluster 2024-09-11T07:38:53.101881+0000 mgr.a (mgr.14150) 285 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:54.739 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:54 smithi181 bash[22002]: audit 2024-09-11T07:38:53.685103+0000 mon.c (mon.1) 11 : audit [INF] from='osd.5 [v2:172.21.15.181:6808/906119179,v1:172.21.15.181:6809/906119179]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-11T07:38:54.739 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:54 smithi181 bash[22002]: audit 2024-09-11T07:38:53.685671+0000 mon.a (mon.0) 507 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-11T07:38:54.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:54 smithi115 bash[18678]: cluster 2024-09-11T07:38:53.101881+0000 mgr.a (mgr.14150) 285 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:54.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:54 smithi115 bash[18678]: audit 2024-09-11T07:38:53.685103+0000 mon.c (mon.1) 11 : audit [INF] from='osd.5 [v2:172.21.15.181:6808/906119179,v1:172.21.15.181:6809/906119179]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-11T07:38:54.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:54 smithi115 bash[18678]: audit 2024-09-11T07:38:53.685671+0000 mon.a (mon.0) 507 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-11T07:38:55.518 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:55 smithi181 bash[22002]: audit 2024-09-11T07:38:54.364297+0000 mon.a (mon.0) 508 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-11T07:38:55.519 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:55 smithi181 bash[22002]: cluster 2024-09-11T07:38:54.364366+0000 mon.a (mon.0) 509 : cluster [DBG] osdmap e35: 6 total, 5 up, 6 in 2024-09-11T07:38:55.519 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:55 smithi181 bash[22002]: audit 2024-09-11T07:38:54.364601+0000 mon.a (mon.0) 510 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T07:38:55.519 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:55 smithi181 bash[22002]: audit 2024-09-11T07:38:54.368450+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.181:6808/906119179,v1:172.21.15.181:6809/906119179]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi181", "root=default"]}]: dispatch 2024-09-11T07:38:55.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:55 smithi150 bash[22110]: audit 2024-09-11T07:38:54.364297+0000 mon.a (mon.0) 508 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-11T07:38:55.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:55 smithi150 bash[22110]: cluster 2024-09-11T07:38:54.364366+0000 mon.a (mon.0) 509 : cluster [DBG] osdmap e35: 6 total, 5 up, 6 in 2024-09-11T07:38:55.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:55 smithi150 bash[22110]: audit 2024-09-11T07:38:54.364601+0000 mon.a (mon.0) 510 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T07:38:55.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:55 smithi150 bash[22110]: audit 2024-09-11T07:38:54.368450+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.181:6808/906119179,v1:172.21.15.181:6809/906119179]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi181", "root=default"]}]: dispatch 2024-09-11T07:38:55.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:55 smithi150 bash[22110]: audit 2024-09-11T07:38:54.369087+0000 mon.a (mon.0) 511 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi181", "root=default"]}]: dispatch 2024-09-11T07:38:55.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:55 smithi181 bash[22002]: audit 2024-09-11T07:38:54.369087+0000 mon.a (mon.0) 511 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi181", "root=default"]}]: dispatch 2024-09-11T07:38:55.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:55 smithi115 bash[18678]: audit 2024-09-11T07:38:54.364297+0000 mon.a (mon.0) 508 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-11T07:38:55.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:55 smithi115 bash[18678]: cluster 2024-09-11T07:38:54.364366+0000 mon.a (mon.0) 509 : cluster [DBG] osdmap e35: 6 total, 5 up, 6 in 2024-09-11T07:38:55.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:55 smithi115 bash[18678]: audit 2024-09-11T07:38:54.364601+0000 mon.a (mon.0) 510 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T07:38:55.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:55 smithi115 bash[18678]: audit 2024-09-11T07:38:54.368450+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.181:6808/906119179,v1:172.21.15.181:6809/906119179]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi181", "root=default"]}]: dispatch 2024-09-11T07:38:55.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:55 smithi115 bash[18678]: audit 2024-09-11T07:38:54.369087+0000 mon.a (mon.0) 511 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi181", "root=default"]}]: dispatch 2024-09-11T07:38:55.879 INFO:teuthology.orchestra.run.smithi181.stdout:Created osd(s) 5 on host 'smithi181' 2024-09-11T07:38:56.543 DEBUG:teuthology.orchestra.run.smithi181:osd.5> sudo journalctl -f -n 0 -u ceph-1973416c-700f-11ef-bcea-c7b262605968@osd.5.service 2024-09-11T07:38:56.545 INFO:tasks.cephadm:Waiting for 6 OSDs to come up... 2024-09-11T07:38:56.545 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-11T07:38:56.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:56 smithi150 bash[22110]: cluster 2024-09-11T07:38:55.102390+0000 mgr.a (mgr.14150) 286 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:56.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:56 smithi150 bash[22110]: audit 2024-09-11T07:38:55.369302+0000 mon.a (mon.0) 512 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi181", "root=default"]}]': finished 2024-09-11T07:38:56.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:56 smithi150 bash[22110]: cluster 2024-09-11T07:38:55.369457+0000 mon.a (mon.0) 513 : cluster [DBG] osdmap e36: 6 total, 5 up, 6 in 2024-09-11T07:38:56.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:56 smithi150 bash[22110]: audit 2024-09-11T07:38:55.370201+0000 mon.a (mon.0) 514 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T07:38:56.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:56 smithi150 bash[22110]: audit 2024-09-11T07:38:55.378882+0000 mon.a (mon.0) 515 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T07:38:56.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:56 smithi150 bash[22110]: audit 2024-09-11T07:38:55.859569+0000 mon.a (mon.0) 516 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:38:56.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:56 smithi150 bash[22110]: audit 2024-09-11T07:38:55.867048+0000 mon.a (mon.0) 517 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:56.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:56 smithi150 bash[22110]: audit 2024-09-11T07:38:55.873449+0000 mon.a (mon.0) 518 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:56.745 INFO:journalctl@ceph.osd.5.smithi181.stdout:-- Logs begin at Sun 2022-08-14 12:20:24 UTC. -- 2024-09-11T07:38:56.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:56 smithi181 bash[22002]: cluster 2024-09-11T07:38:55.102390+0000 mgr.a (mgr.14150) 286 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:56.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:56 smithi181 bash[22002]: audit 2024-09-11T07:38:55.369302+0000 mon.a (mon.0) 512 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi181", "root=default"]}]': finished 2024-09-11T07:38:56.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:56 smithi181 bash[22002]: cluster 2024-09-11T07:38:55.369457+0000 mon.a (mon.0) 513 : cluster [DBG] osdmap e36: 6 total, 5 up, 6 in 2024-09-11T07:38:56.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:56 smithi181 bash[22002]: audit 2024-09-11T07:38:55.370201+0000 mon.a (mon.0) 514 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T07:38:56.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:56 smithi181 bash[22002]: audit 2024-09-11T07:38:55.378882+0000 mon.a (mon.0) 515 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T07:38:56.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:56 smithi181 bash[22002]: audit 2024-09-11T07:38:55.859569+0000 mon.a (mon.0) 516 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:38:56.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:56 smithi181 bash[22002]: audit 2024-09-11T07:38:55.867048+0000 mon.a (mon.0) 517 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:56.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:56 smithi181 bash[22002]: audit 2024-09-11T07:38:55.873449+0000 mon.a (mon.0) 518 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:56.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:56 smithi115 bash[18678]: cluster 2024-09-11T07:38:55.102390+0000 mgr.a (mgr.14150) 286 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:56.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:56 smithi115 bash[18678]: audit 2024-09-11T07:38:55.369302+0000 mon.a (mon.0) 512 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi181", "root=default"]}]': finished 2024-09-11T07:38:56.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:56 smithi115 bash[18678]: cluster 2024-09-11T07:38:55.369457+0000 mon.a (mon.0) 513 : cluster [DBG] osdmap e36: 6 total, 5 up, 6 in 2024-09-11T07:38:56.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:56 smithi115 bash[18678]: audit 2024-09-11T07:38:55.370201+0000 mon.a (mon.0) 514 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T07:38:56.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:56 smithi115 bash[18678]: audit 2024-09-11T07:38:55.378882+0000 mon.a (mon.0) 515 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T07:38:56.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:56 smithi115 bash[18678]: audit 2024-09-11T07:38:55.859569+0000 mon.a (mon.0) 516 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:38:56.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:56 smithi115 bash[18678]: audit 2024-09-11T07:38:55.867048+0000 mon.a (mon.0) 517 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:56.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:56 smithi115 bash[18678]: audit 2024-09-11T07:38:55.873449+0000 mon.a (mon.0) 518 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:38:57.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:57 smithi150 bash[22110]: cluster 2024-09-11T07:38:54.716447+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-11T07:38:57.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:57 smithi150 bash[22110]: cluster 2024-09-11T07:38:54.716540+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-11T07:38:57.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:57 smithi150 bash[22110]: cluster 2024-09-11T07:38:56.379887+0000 mon.a (mon.0) 519 : cluster [INF] osd.5 [v2:172.21.15.181:6808/906119179,v1:172.21.15.181:6809/906119179] boot 2024-09-11T07:38:57.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:57 smithi150 bash[22110]: cluster 2024-09-11T07:38:56.379966+0000 mon.a (mon.0) 520 : cluster [DBG] osdmap e37: 6 total, 6 up, 6 in 2024-09-11T07:38:57.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:57 smithi150 bash[22110]: audit 2024-09-11T07:38:56.380724+0000 mon.a (mon.0) 521 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T07:38:57.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:57 smithi181 bash[22002]: cluster 2024-09-11T07:38:54.716447+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-11T07:38:57.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:57 smithi181 bash[22002]: cluster 2024-09-11T07:38:54.716540+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-11T07:38:57.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:57 smithi181 bash[22002]: cluster 2024-09-11T07:38:56.379887+0000 mon.a (mon.0) 519 : cluster [INF] osd.5 [v2:172.21.15.181:6808/906119179,v1:172.21.15.181:6809/906119179] boot 2024-09-11T07:38:57.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:57 smithi181 bash[22002]: cluster 2024-09-11T07:38:56.379966+0000 mon.a (mon.0) 520 : cluster [DBG] osdmap e37: 6 total, 6 up, 6 in 2024-09-11T07:38:57.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:57 smithi181 bash[22002]: audit 2024-09-11T07:38:56.380724+0000 mon.a (mon.0) 521 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T07:38:57.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:57 smithi115 bash[18678]: cluster 2024-09-11T07:38:54.716447+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-11T07:38:57.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:57 smithi115 bash[18678]: cluster 2024-09-11T07:38:54.716540+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-11T07:38:57.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:57 smithi115 bash[18678]: cluster 2024-09-11T07:38:56.379887+0000 mon.a (mon.0) 519 : cluster [INF] osd.5 [v2:172.21.15.181:6808/906119179,v1:172.21.15.181:6809/906119179] boot 2024-09-11T07:38:57.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:57 smithi115 bash[18678]: cluster 2024-09-11T07:38:56.379966+0000 mon.a (mon.0) 520 : cluster [DBG] osdmap e37: 6 total, 6 up, 6 in 2024-09-11T07:38:57.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:57 smithi115 bash[18678]: audit 2024-09-11T07:38:56.380724+0000 mon.a (mon.0) 521 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T07:38:58.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:58 smithi150 bash[22110]: cluster 2024-09-11T07:38:57.102930+0000 mgr.a (mgr.14150) 287 : cluster [DBG] pgmap v251: 1 pgs: 1 remapped+peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:58.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:58 smithi150 bash[22110]: cluster 2024-09-11T07:38:57.397090+0000 mon.a (mon.0) 522 : cluster [DBG] osdmap e38: 6 total, 6 up, 6 in 2024-09-11T07:38:58.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:58 smithi181 bash[22002]: cluster 2024-09-11T07:38:57.102930+0000 mgr.a (mgr.14150) 287 : cluster [DBG] pgmap v251: 1 pgs: 1 remapped+peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:58.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:58 smithi181 bash[22002]: cluster 2024-09-11T07:38:57.397090+0000 mon.a (mon.0) 522 : cluster [DBG] osdmap e38: 6 total, 6 up, 6 in 2024-09-11T07:38:58.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:58 smithi115 bash[18678]: cluster 2024-09-11T07:38:57.102930+0000 mgr.a (mgr.14150) 287 : cluster [DBG] pgmap v251: 1 pgs: 1 remapped+peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:38:58.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:58 smithi115 bash[18678]: cluster 2024-09-11T07:38:57.397090+0000 mon.a (mon.0) 522 : cluster [DBG] osdmap e38: 6 total, 6 up, 6 in 2024-09-11T07:38:59.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:38:59 smithi150 bash[22110]: cluster 2024-09-11T07:38:58.399906+0000 mon.a (mon.0) 523 : cluster [DBG] osdmap e39: 6 total, 6 up, 6 in 2024-09-11T07:38:59.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:38:59 smithi181 bash[22002]: cluster 2024-09-11T07:38:58.399906+0000 mon.a (mon.0) 523 : cluster [DBG] osdmap e39: 6 total, 6 up, 6 in 2024-09-11T07:38:59.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:38:59 smithi115 bash[18678]: cluster 2024-09-11T07:38:58.399906+0000 mon.a (mon.0) 523 : cluster [DBG] osdmap e39: 6 total, 6 up, 6 in 2024-09-11T07:39:00.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:00 smithi150 bash[22110]: cluster 2024-09-11T07:38:59.103424+0000 mgr.a (mgr.14150) 288 : cluster [DBG] pgmap v254: 1 pgs: 1 remapped+peering; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:00.739 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:00 smithi181 bash[22002]: cluster 2024-09-11T07:38:59.103424+0000 mgr.a (mgr.14150) 288 : cluster [DBG] pgmap v254: 1 pgs: 1 remapped+peering; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:00.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:00 smithi115 bash[18678]: cluster 2024-09-11T07:38:59.103424+0000 mgr.a (mgr.14150) 288 : cluster [DBG] pgmap v254: 1 pgs: 1 remapped+peering; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:01.283 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:39:02.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:02 smithi150 bash[22110]: cluster 2024-09-11T07:39:01.104091+0000 mgr.a (mgr.14150) 289 : cluster [DBG] pgmap v255: 1 pgs: 1 remapped+peering; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:02.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:02 smithi181 bash[22002]: cluster 2024-09-11T07:39:01.104091+0000 mgr.a (mgr.14150) 289 : cluster [DBG] pgmap v255: 1 pgs: 1 remapped+peering; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:02.826 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:02 smithi115 bash[18678]: cluster 2024-09-11T07:39:01.104091+0000 mgr.a (mgr.14150) 289 : cluster [DBG] pgmap v255: 1 pgs: 1 remapped+peering; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:04.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:04 smithi150 bash[22110]: cluster 2024-09-11T07:39:03.104803+0000 mgr.a (mgr.14150) 290 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 86 KiB/s, 0 objects/s recovering 2024-09-11T07:39:04.785 INFO:teuthology.orchestra.run.smithi115.stdout: 2024-09-11T07:39:04.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:04 smithi181 bash[22002]: cluster 2024-09-11T07:39:03.104803+0000 mgr.a (mgr.14150) 290 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 86 KiB/s, 0 objects/s recovering 2024-09-11T07:39:04.813 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:04 smithi115 bash[18678]: cluster 2024-09-11T07:39:03.104803+0000 mgr.a (mgr.14150) 290 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 86 KiB/s, 0 objects/s recovering 2024-09-11T07:39:05.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:05 smithi181 bash[22002]: audit 2024-09-11T07:39:04.781990+0000 mon.a (mon.0) 524 : audit [DBG] from='client.? 172.21.15.115:0/2943928917' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T07:39:05.650 INFO:teuthology.orchestra.run.smithi115.stdout:{"epoch":39,"num_osds":6,"num_up_osds":6,"osd_up_since":1726040336,"num_in_osds":6,"osd_in_since":1726040309,"num_remapped_pgs":0} 2024-09-11T07:39:05.651 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph osd dump --format=json 2024-09-11T07:39:05.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:05 smithi150 bash[22110]: audit 2024-09-11T07:39:04.781990+0000 mon.a (mon.0) 524 : audit [DBG] from='client.? 172.21.15.115:0/2943928917' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T07:39:05.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:05 smithi115 bash[18678]: audit 2024-09-11T07:39:04.781990+0000 mon.a (mon.0) 524 : audit [DBG] from='client.? 172.21.15.115:0/2943928917' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T07:39:06.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:06 smithi150 bash[22110]: cluster 2024-09-11T07:39:05.105419+0000 mgr.a (mgr.14150) 291 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-11T07:39:06.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:06 smithi150 bash[22110]: audit 2024-09-11T07:39:05.877873+0000 mon.a (mon.0) 525 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:39:06.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:06 smithi150 bash[22110]: audit 2024-09-11T07:39:05.886132+0000 mon.a (mon.0) 526 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:39:06.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:06 smithi150 bash[22110]: audit 2024-09-11T07:39:05.887826+0000 mon.a (mon.0) 527 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:39:06.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:06 smithi150 bash[22110]: audit 2024-09-11T07:39:05.889487+0000 mon.a (mon.0) 528 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:39:06.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:06 smithi150 bash[22110]: audit 2024-09-11T07:39:05.898895+0000 mon.a (mon.0) 529 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:39:06.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:06 smithi150 bash[22110]: audit 2024-09-11T07:39:05.900605+0000 mon.a (mon.0) 530 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:39:06.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:06 smithi150 bash[22110]: audit 2024-09-11T07:39:05.901943+0000 mon.a (mon.0) 531 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:39:06.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:06 smithi150 bash[22110]: audit 2024-09-11T07:39:05.910768+0000 mon.a (mon.0) 532 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:39:06.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:06 smithi181 bash[22002]: cluster 2024-09-11T07:39:05.105419+0000 mgr.a (mgr.14150) 291 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-11T07:39:06.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:06 smithi181 bash[22002]: audit 2024-09-11T07:39:05.877873+0000 mon.a (mon.0) 525 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:39:06.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:06 smithi181 bash[22002]: audit 2024-09-11T07:39:05.886132+0000 mon.a (mon.0) 526 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:39:06.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:06 smithi181 bash[22002]: audit 2024-09-11T07:39:05.887826+0000 mon.a (mon.0) 527 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:39:06.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:06 smithi181 bash[22002]: audit 2024-09-11T07:39:05.889487+0000 mon.a (mon.0) 528 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:39:06.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:06 smithi181 bash[22002]: audit 2024-09-11T07:39:05.898895+0000 mon.a (mon.0) 529 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:39:06.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:06 smithi181 bash[22002]: audit 2024-09-11T07:39:05.900605+0000 mon.a (mon.0) 530 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:39:06.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:06 smithi181 bash[22002]: audit 2024-09-11T07:39:05.901943+0000 mon.a (mon.0) 531 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:39:06.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:06 smithi181 bash[22002]: audit 2024-09-11T07:39:05.910768+0000 mon.a (mon.0) 532 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:39:06.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:06 smithi115 bash[18678]: cluster 2024-09-11T07:39:05.105419+0000 mgr.a (mgr.14150) 291 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-11T07:39:06.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:06 smithi115 bash[18678]: audit 2024-09-11T07:39:05.877873+0000 mon.a (mon.0) 525 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:39:06.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:06 smithi115 bash[18678]: audit 2024-09-11T07:39:05.886132+0000 mon.a (mon.0) 526 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:39:06.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:06 smithi115 bash[18678]: audit 2024-09-11T07:39:05.887826+0000 mon.a (mon.0) 527 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:39:06.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:06 smithi115 bash[18678]: audit 2024-09-11T07:39:05.889487+0000 mon.a (mon.0) 528 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-11T07:39:06.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:06 smithi115 bash[18678]: audit 2024-09-11T07:39:05.898895+0000 mon.a (mon.0) 529 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:39:06.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:06 smithi115 bash[18678]: audit 2024-09-11T07:39:05.900605+0000 mon.a (mon.0) 530 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:39:06.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:06 smithi115 bash[18678]: audit 2024-09-11T07:39:05.901943+0000 mon.a (mon.0) 531 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:39:06.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:06 smithi115 bash[18678]: audit 2024-09-11T07:39:05.910768+0000 mon.a (mon.0) 532 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:39:07.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:07 smithi181 bash[22002]: cephadm 2024-09-11T07:39:05.870102+0000 mgr.a (mgr.14150) 292 : cephadm [INF] Detected new or changed devices on smithi181 2024-09-11T07:39:07.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:07 smithi181 bash[22002]: cephadm 2024-09-11T07:39:05.890654+0000 mgr.a (mgr.14150) 293 : cephadm [INF] Adjusting osd_memory_target on smithi181 to 10683M 2024-09-11T07:39:07.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:07 smithi115 bash[18678]: cephadm 2024-09-11T07:39:05.870102+0000 mgr.a (mgr.14150) 292 : cephadm [INF] Detected new or changed devices on smithi181 2024-09-11T07:39:07.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:07 smithi115 bash[18678]: cephadm 2024-09-11T07:39:05.890654+0000 mgr.a (mgr.14150) 293 : cephadm [INF] Adjusting osd_memory_target on smithi181 to 10683M 2024-09-11T07:39:07.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:07 smithi150 bash[22110]: cephadm 2024-09-11T07:39:05.870102+0000 mgr.a (mgr.14150) 292 : cephadm [INF] Detected new or changed devices on smithi181 2024-09-11T07:39:07.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:07 smithi150 bash[22110]: cephadm 2024-09-11T07:39:05.890654+0000 mgr.a (mgr.14150) 293 : cephadm [INF] Adjusting osd_memory_target on smithi181 to 10683M 2024-09-11T07:39:08.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:08 smithi181 bash[22002]: cluster 2024-09-11T07:39:07.106011+0000 mgr.a (mgr.14150) 294 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-09-11T07:39:08.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:08 smithi115 bash[18678]: cluster 2024-09-11T07:39:07.106011+0000 mgr.a (mgr.14150) 294 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-09-11T07:39:08.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:08 smithi150 bash[22110]: cluster 2024-09-11T07:39:07.106011+0000 mgr.a (mgr.14150) 294 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-09-11T07:39:10.389 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:39:10.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:10 smithi181 bash[22002]: cluster 2024-09-11T07:39:09.106529+0000 mgr.a (mgr.14150) 295 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 54 KiB/s, 0 objects/s recovering 2024-09-11T07:39:10.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:10 smithi115 bash[18678]: cluster 2024-09-11T07:39:09.106529+0000 mgr.a (mgr.14150) 295 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 54 KiB/s, 0 objects/s recovering 2024-09-11T07:39:10.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:10 smithi150 bash[22110]: cluster 2024-09-11T07:39:09.106529+0000 mgr.a (mgr.14150) 295 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 54 KiB/s, 0 objects/s recovering 2024-09-11T07:39:12.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:12 smithi181 bash[22002]: cluster 2024-09-11T07:39:11.107140+0000 mgr.a (mgr.14150) 296 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T07:39:12.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:12 smithi115 bash[18678]: cluster 2024-09-11T07:39:11.107140+0000 mgr.a (mgr.14150) 296 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T07:39:12.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:12 smithi150 bash[22110]: cluster 2024-09-11T07:39:11.107140+0000 mgr.a (mgr.14150) 296 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T07:39:14.072 INFO:teuthology.orchestra.run.smithi115.stdout: 2024-09-11T07:39:14.073 INFO:teuthology.orchestra.run.smithi115.stdout:{"epoch":39,"fsid":"1973416c-700f-11ef-bcea-c7b262605968","created":"2024-09-11T07:30:27.344292+0000","modified":"2024-09-11T07:38:58.392495+0000","last_up_change":"2024-09-11T07:38:56.371503+0000","last_in_change":"2024-09-11T07:38:29.843728+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"quincy","pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-11T07:36:19.594111+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"21","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}}}],"osds":[{"osd":0,"uuid":"7ea9b8c0-49c6-43e5-9332-4c9129950673","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:6802","nonce":4152627375},{"type":"v1","addr":"172.21.15.115:6803","nonce":4152627375}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:6804","nonce":4152627375},{"type":"v1","addr":"172.21.15.115:6805","nonce":4152627375}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:6808","nonce":4152627375},{"type":"v1","addr":"172.21.15.115:6809","nonce":4152627375}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:6806","nonce":4152627375},{"type":"v1","addr":"172.21.15.115:6807","nonce":4152627375}]},"public_addr":"172.21.15.115:6803/4152627375","cluster_addr":"172.21.15.115:6805/4152627375","heartbeat_back_addr":"172.21.15.115:6809/4152627375","heartbeat_front_addr":"172.21.15.115:6807/4152627375","state":["exists","up"]},{"osd":1,"uuid":"20e789a8-02d9-4653-ba8f-a2872aaf28aa","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":13,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:6810","nonce":660496757},{"type":"v1","addr":"172.21.15.115:6811","nonce":660496757}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:6812","nonce":660496757},{"type":"v1","addr":"172.21.15.115:6813","nonce":660496757}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:6816","nonce":660496757},{"type":"v1","addr":"172.21.15.115:6817","nonce":660496757}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:6814","nonce":660496757},{"type":"v1","addr":"172.21.15.115:6815","nonce":660496757}]},"public_addr":"172.21.15.115:6811/660496757","cluster_addr":"172.21.15.115:6813/660496757","heartbeat_back_addr":"172.21.15.115:6817/660496757","heartbeat_front_addr":"172.21.15.115:6815/660496757","state":["exists","up"]},{"osd":2,"uuid":"40aff587-3e34-4cab-b381-c117fe9e36c7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":19,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.150:6800","nonce":2543552073},{"type":"v1","addr":"172.21.15.150:6801","nonce":2543552073}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.150:6802","nonce":2543552073},{"type":"v1","addr":"172.21.15.150:6803","nonce":2543552073}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.150:6806","nonce":2543552073},{"type":"v1","addr":"172.21.15.150:6807","nonce":2543552073}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.150:6804","nonce":2543552073},{"type":"v1","addr":"172.21.15.150:6805","nonce":2543552073}]},"public_addr":"172.21.15.150:6801/2543552073","cluster_addr":"172.21.15.150:6803/2543552073","heartbeat_back_addr":"172.21.15.150:6807/2543552073","heartbeat_front_addr":"172.21.15.150:6805/2543552073","state":["exists","up"]},{"osd":3,"uuid":"fe6098c7-2798-457a-918c-9b7b2f0022b4","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.150:6808","nonce":384009909},{"type":"v1","addr":"172.21.15.150:6809","nonce":384009909}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.150:6810","nonce":384009909},{"type":"v1","addr":"172.21.15.150:6811","nonce":384009909}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.150:6814","nonce":384009909},{"type":"v1","addr":"172.21.15.150:6815","nonce":384009909}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.150:6812","nonce":384009909},{"type":"v1","addr":"172.21.15.150:6813","nonce":384009909}]},"public_addr":"172.21.15.150:6809/384009909","cluster_addr":"172.21.15.150:6811/384009909","heartbeat_back_addr":"172.21.15.150:6815/384009909","heartbeat_front_addr":"172.21.15.150:6813/384009909","state":["exists","up"]},{"osd":4,"uuid":"91ce98be-445c-45ed-b811-6ff5569f062f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6800","nonce":1736827996},{"type":"v1","addr":"172.21.15.181:6801","nonce":1736827996}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6802","nonce":1736827996},{"type":"v1","addr":"172.21.15.181:6803","nonce":1736827996}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6806","nonce":1736827996},{"type":"v1","addr":"172.21.15.181:6807","nonce":1736827996}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6804","nonce":1736827996},{"type":"v1","addr":"172.21.15.181:6805","nonce":1736827996}]},"public_addr":"172.21.15.181:6801/1736827996","cluster_addr":"172.21.15.181:6803/1736827996","heartbeat_back_addr":"172.21.15.181:6807/1736827996","heartbeat_front_addr":"172.21.15.181:6805/1736827996","state":["exists","up"]},{"osd":5,"uuid":"13a37601-83cc-471b-ab56-e37cd20ffadc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":37,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6808","nonce":906119179},{"type":"v1","addr":"172.21.15.181:6809","nonce":906119179}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6810","nonce":906119179},{"type":"v1","addr":"172.21.15.181:6811","nonce":906119179}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6814","nonce":906119179},{"type":"v1","addr":"172.21.15.181:6815","nonce":906119179}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6812","nonce":906119179},{"type":"v1","addr":"172.21.15.181:6813","nonce":906119179}]},"public_addr":"172.21.15.181:6809/906119179","cluster_addr":"172.21.15.181:6811/906119179","heartbeat_back_addr":"172.21.15.181:6815/906119179","heartbeat_front_addr":"172.21.15.181:6813/906119179","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T07:34:28.644785+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T07:35:23.683107+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T07:36:16.633024+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T07:37:10.285997+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T07:38:00.928048+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T07:38:54.716545+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.115:0/1046388686":"2024-09-12T07:31:28.983705+0000","172.21.15.115:6801/3046415737":"2024-09-12T07:31:28.983705+0000","172.21.15.115:6800/3046415737":"2024-09-12T07:31:28.983705+0000","172.21.15.115:0/40819708":"2024-09-12T07:31:28.983705+0000","172.21.15.115:6801/598039986":"2024-09-12T07:30:54.975993+0000","172.21.15.115:6800/598039986":"2024-09-12T07:30:54.975993+0000","172.21.15.115:0/3299889272":"2024-09-12T07:30:54.975993+0000","172.21.15.115:0/1479242871":"2024-09-12T07:31:28.983705+0000","172.21.15.115:0/2097127196":"2024-09-12T07:30:54.975993+0000","172.21.15.115:0/322363914":"2024-09-12T07:30:54.975993+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-11T07:39:14.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:14 smithi115 bash[18678]: cluster 2024-09-11T07:39:13.107793+0000 mgr.a (mgr.14150) 297 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T07:39:14.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:14 smithi115 bash[18678]: audit 2024-09-11T07:39:14.068483+0000 mon.a (mon.0) 533 : audit [DBG] from='client.? 172.21.15.115:0/2568620327' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-11T07:39:14.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:14 smithi181 bash[22002]: cluster 2024-09-11T07:39:13.107793+0000 mgr.a (mgr.14150) 297 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T07:39:14.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:14 smithi181 bash[22002]: audit 2024-09-11T07:39:14.068483+0000 mon.a (mon.0) 533 : audit [DBG] from='client.? 172.21.15.115:0/2568620327' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-11T07:39:14.853 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-09-11T07:36:19.594111+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '21', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr': {}}}] 2024-09-11T07:39:14.854 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-09-11T07:39:14.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:14 smithi150 bash[22110]: cluster 2024-09-11T07:39:13.107793+0000 mgr.a (mgr.14150) 297 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T07:39:14.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:14 smithi150 bash[22110]: audit 2024-09-11T07:39:14.068483+0000 mon.a (mon.0) 533 : audit [DBG] from='client.? 172.21.15.115:0/2568620327' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-11T07:39:16.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:16 smithi181 bash[22002]: cluster 2024-09-11T07:39:15.108473+0000 mgr.a (mgr.14150) 298 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:16.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:16 smithi115 bash[18678]: cluster 2024-09-11T07:39:15.108473+0000 mgr.a (mgr.14150) 298 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:16.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:16 smithi150 bash[22110]: cluster 2024-09-11T07:39:15.108473+0000 mgr.a (mgr.14150) 298 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:18.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:18 smithi181 bash[22002]: cluster 2024-09-11T07:39:17.109080+0000 mgr.a (mgr.14150) 299 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:18.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:18 smithi115 bash[18678]: cluster 2024-09-11T07:39:17.109080+0000 mgr.a (mgr.14150) 299 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:18.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:18 smithi150 bash[22110]: cluster 2024-09-11T07:39:17.109080+0000 mgr.a (mgr.14150) 299 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:19.599 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:39:20.753 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:20 smithi115 bash[18678]: cluster 2024-09-11T07:39:19.109659+0000 mgr.a (mgr.14150) 300 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:20.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:20 smithi181 bash[22002]: cluster 2024-09-11T07:39:19.109659+0000 mgr.a (mgr.14150) 300 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:20.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:20 smithi150 bash[22110]: cluster 2024-09-11T07:39:19.109659+0000 mgr.a (mgr.14150) 300 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:22.745 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:22 smithi115 bash[18678]: cluster 2024-09-11T07:39:21.110254+0000 mgr.a (mgr.14150) 301 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:22.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:22 smithi181 bash[22002]: cluster 2024-09-11T07:39:21.110254+0000 mgr.a (mgr.14150) 301 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:22.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:22 smithi150 bash[22110]: cluster 2024-09-11T07:39:21.110254+0000 mgr.a (mgr.14150) 301 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:23.099 INFO:teuthology.orchestra.run.smithi115.stdout:pg_num: 1 2024-09-11T07:39:23.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:23 smithi115 bash[18678]: audit 2024-09-11T07:39:23.096881+0000 mon.a (mon.0) 534 : audit [DBG] from='client.? 172.21.15.115:0/1585078735' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-11T07:39:23.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:23 smithi181 bash[22002]: audit 2024-09-11T07:39:23.096881+0000 mon.a (mon.0) 534 : audit [DBG] from='client.? 172.21.15.115:0/1585078735' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-11T07:39:23.814 INFO:tasks.cephadm:Setting up client nodes... 2024-09-11T07:39:23.814 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-09-11T07:39:23.814 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-09-11T07:39:23.814 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph mgr dump --format=json 2024-09-11T07:39:23.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:23 smithi150 bash[22110]: audit 2024-09-11T07:39:23.096881+0000 mon.a (mon.0) 534 : audit [DBG] from='client.? 172.21.15.115:0/1585078735' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-11T07:39:24.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:24 smithi181 bash[22002]: cluster 2024-09-11T07:39:23.110805+0000 mgr.a (mgr.14150) 302 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:24.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:24 smithi115 bash[18678]: cluster 2024-09-11T07:39:23.110805+0000 mgr.a (mgr.14150) 302 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:24.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:24 smithi150 bash[22110]: cluster 2024-09-11T07:39:23.110805+0000 mgr.a (mgr.14150) 302 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:26.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:26 smithi181 bash[22002]: cluster 2024-09-11T07:39:25.111406+0000 mgr.a (mgr.14150) 303 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:26.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:26 smithi115 bash[18678]: cluster 2024-09-11T07:39:25.111406+0000 mgr.a (mgr.14150) 303 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:26.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:26 smithi150 bash[22110]: cluster 2024-09-11T07:39:25.111406+0000 mgr.a (mgr.14150) 303 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:28.548 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:39:28.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:28 smithi181 bash[22002]: cluster 2024-09-11T07:39:27.112065+0000 mgr.a (mgr.14150) 304 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:28.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:28 smithi115 bash[18678]: cluster 2024-09-11T07:39:27.112065+0000 mgr.a (mgr.14150) 304 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:28.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:28 smithi150 bash[22110]: cluster 2024-09-11T07:39:27.112065+0000 mgr.a (mgr.14150) 304 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:30.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:30 smithi181 bash[22002]: cluster 2024-09-11T07:39:29.112641+0000 mgr.a (mgr.14150) 305 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:30.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:30 smithi115 bash[18678]: cluster 2024-09-11T07:39:29.112641+0000 mgr.a (mgr.14150) 305 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:30.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:30 smithi150 bash[22110]: cluster 2024-09-11T07:39:29.112641+0000 mgr.a (mgr.14150) 305 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:32.190 INFO:teuthology.orchestra.run.smithi115.stdout: 2024-09-11T07:39:32.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:32 smithi181 bash[22002]: cluster 2024-09-11T07:39:31.113202+0000 mgr.a (mgr.14150) 306 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:32.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:32 smithi181 bash[22002]: audit 2024-09-11T07:39:32.182303+0000 mon.a (mon.0) 535 : audit [DBG] from='client.? 172.21.15.115:0/2442921910' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-11T07:39:32.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:32 smithi115 bash[18678]: cluster 2024-09-11T07:39:31.113202+0000 mgr.a (mgr.14150) 306 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:32.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:32 smithi115 bash[18678]: audit 2024-09-11T07:39:32.182303+0000 mon.a (mon.0) 535 : audit [DBG] from='client.? 172.21.15.115:0/2442921910' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-11T07:39:32.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:32 smithi150 bash[22110]: cluster 2024-09-11T07:39:31.113202+0000 mgr.a (mgr.14150) 306 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:32.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:32 smithi150 bash[22110]: audit 2024-09-11T07:39:32.182303+0000 mon.a (mon.0) 535 : audit [DBG] from='client.? 172.21.15.115:0/2442921910' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-11T07:39:32.947 INFO:teuthology.orchestra.run.smithi115.stdout:{"epoch":15,"flags":0,"active_gid":14150,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:6800","nonce":2865672823},{"type":"v1","addr":"172.21.15.115:6801","nonce":2865672823}]},"active_addr":"172.21.15.115:6801/2865672823","active_change":"2024-09-11T07:31:28.983921+0000","active_mgr_features":4540138320759226367,"available":true,"standbys":[{"gid":24116,"name":"b","mgr_features":4540138320759226367,"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"7","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 or 7 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2400","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"7","min":"0","max":"7","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 or 7 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","upmap"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/ceph-grafana:9.4.7","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.1.5","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.43.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"drive_group_interval":{"name":"drive_group_interval","type":"float","level":"advanced","flags":0,"default_value":"300.0","min":"","max":"","enum_allowed":[],"desc":"interval in seconds between re-application of applied drive_groups","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs","restful"],"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"7","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 or 7 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2400","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"7","min":"0","max":"7","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 or 7 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","upmap"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/ceph-grafana:9.4.7","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.1.5","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.43.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"drive_group_interval":{"name":"drive_group_interval","type":"float","level":"advanced","flags":0,"default_value":"300.0","min":"","max":"","enum_allowed":[],"desc":"interval in seconds between re-application of applied drive_groups","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}],"services":{"dashboard":"https://172.21.15.115:8443/"},"always_on_modules":{"octopus":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"pacific":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"quincy":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"]},"last_failure_osd_epoch":3,"active_clients":[{"name":"devicehealth","addrvec":[{"type":"v2","addr":"172.21.15.115:0","nonce":513656511}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.115:0","nonce":945237561}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.115:0","nonce":115355959}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.115:0","nonce":3184327803}]}]} 2024-09-11T07:39:32.951 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-09-11T07:39:32.951 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-09-11T07:39:32.952 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph osd dump --format=json 2024-09-11T07:39:34.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:34 smithi181 bash[22002]: cluster 2024-09-11T07:39:33.113754+0000 mgr.a (mgr.14150) 307 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:34.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:34 smithi115 bash[18678]: cluster 2024-09-11T07:39:33.113754+0000 mgr.a (mgr.14150) 307 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:34.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:34 smithi150 bash[22110]: cluster 2024-09-11T07:39:33.113754+0000 mgr.a (mgr.14150) 307 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:36.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:36 smithi181 bash[22002]: cluster 2024-09-11T07:39:35.114297+0000 mgr.a (mgr.14150) 308 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:36.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:36 smithi115 bash[18678]: cluster 2024-09-11T07:39:35.114297+0000 mgr.a (mgr.14150) 308 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:36.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:36 smithi150 bash[22110]: cluster 2024-09-11T07:39:35.114297+0000 mgr.a (mgr.14150) 308 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:37.695 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:39:38.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:38 smithi181 bash[22002]: cluster 2024-09-11T07:39:37.114858+0000 mgr.a (mgr.14150) 309 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:38.839 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:38 smithi115 bash[18678]: cluster 2024-09-11T07:39:37.114858+0000 mgr.a (mgr.14150) 309 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:38.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:38 smithi150 bash[22110]: cluster 2024-09-11T07:39:37.114858+0000 mgr.a (mgr.14150) 309 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:40.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:40 smithi181 bash[22002]: cluster 2024-09-11T07:39:39.115402+0000 mgr.a (mgr.14150) 310 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:40.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:40 smithi115 bash[18678]: cluster 2024-09-11T07:39:39.115402+0000 mgr.a (mgr.14150) 310 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:40.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:40 smithi150 bash[22110]: cluster 2024-09-11T07:39:39.115402+0000 mgr.a (mgr.14150) 310 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:41.219 INFO:teuthology.orchestra.run.smithi115.stdout: 2024-09-11T07:39:41.220 INFO:teuthology.orchestra.run.smithi115.stdout:{"epoch":39,"fsid":"1973416c-700f-11ef-bcea-c7b262605968","created":"2024-09-11T07:30:27.344292+0000","modified":"2024-09-11T07:38:58.392495+0000","last_up_change":"2024-09-11T07:38:56.371503+0000","last_in_change":"2024-09-11T07:38:29.843728+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"quincy","pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-11T07:36:19.594111+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"21","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}}}],"osds":[{"osd":0,"uuid":"7ea9b8c0-49c6-43e5-9332-4c9129950673","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:6802","nonce":4152627375},{"type":"v1","addr":"172.21.15.115:6803","nonce":4152627375}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:6804","nonce":4152627375},{"type":"v1","addr":"172.21.15.115:6805","nonce":4152627375}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:6808","nonce":4152627375},{"type":"v1","addr":"172.21.15.115:6809","nonce":4152627375}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:6806","nonce":4152627375},{"type":"v1","addr":"172.21.15.115:6807","nonce":4152627375}]},"public_addr":"172.21.15.115:6803/4152627375","cluster_addr":"172.21.15.115:6805/4152627375","heartbeat_back_addr":"172.21.15.115:6809/4152627375","heartbeat_front_addr":"172.21.15.115:6807/4152627375","state":["exists","up"]},{"osd":1,"uuid":"20e789a8-02d9-4653-ba8f-a2872aaf28aa","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":13,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:6810","nonce":660496757},{"type":"v1","addr":"172.21.15.115:6811","nonce":660496757}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:6812","nonce":660496757},{"type":"v1","addr":"172.21.15.115:6813","nonce":660496757}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:6816","nonce":660496757},{"type":"v1","addr":"172.21.15.115:6817","nonce":660496757}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:6814","nonce":660496757},{"type":"v1","addr":"172.21.15.115:6815","nonce":660496757}]},"public_addr":"172.21.15.115:6811/660496757","cluster_addr":"172.21.15.115:6813/660496757","heartbeat_back_addr":"172.21.15.115:6817/660496757","heartbeat_front_addr":"172.21.15.115:6815/660496757","state":["exists","up"]},{"osd":2,"uuid":"40aff587-3e34-4cab-b381-c117fe9e36c7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":19,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.150:6800","nonce":2543552073},{"type":"v1","addr":"172.21.15.150:6801","nonce":2543552073}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.150:6802","nonce":2543552073},{"type":"v1","addr":"172.21.15.150:6803","nonce":2543552073}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.150:6806","nonce":2543552073},{"type":"v1","addr":"172.21.15.150:6807","nonce":2543552073}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.150:6804","nonce":2543552073},{"type":"v1","addr":"172.21.15.150:6805","nonce":2543552073}]},"public_addr":"172.21.15.150:6801/2543552073","cluster_addr":"172.21.15.150:6803/2543552073","heartbeat_back_addr":"172.21.15.150:6807/2543552073","heartbeat_front_addr":"172.21.15.150:6805/2543552073","state":["exists","up"]},{"osd":3,"uuid":"fe6098c7-2798-457a-918c-9b7b2f0022b4","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.150:6808","nonce":384009909},{"type":"v1","addr":"172.21.15.150:6809","nonce":384009909}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.150:6810","nonce":384009909},{"type":"v1","addr":"172.21.15.150:6811","nonce":384009909}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.150:6814","nonce":384009909},{"type":"v1","addr":"172.21.15.150:6815","nonce":384009909}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.150:6812","nonce":384009909},{"type":"v1","addr":"172.21.15.150:6813","nonce":384009909}]},"public_addr":"172.21.15.150:6809/384009909","cluster_addr":"172.21.15.150:6811/384009909","heartbeat_back_addr":"172.21.15.150:6815/384009909","heartbeat_front_addr":"172.21.15.150:6813/384009909","state":["exists","up"]},{"osd":4,"uuid":"91ce98be-445c-45ed-b811-6ff5569f062f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6800","nonce":1736827996},{"type":"v1","addr":"172.21.15.181:6801","nonce":1736827996}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6802","nonce":1736827996},{"type":"v1","addr":"172.21.15.181:6803","nonce":1736827996}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6806","nonce":1736827996},{"type":"v1","addr":"172.21.15.181:6807","nonce":1736827996}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6804","nonce":1736827996},{"type":"v1","addr":"172.21.15.181:6805","nonce":1736827996}]},"public_addr":"172.21.15.181:6801/1736827996","cluster_addr":"172.21.15.181:6803/1736827996","heartbeat_back_addr":"172.21.15.181:6807/1736827996","heartbeat_front_addr":"172.21.15.181:6805/1736827996","state":["exists","up"]},{"osd":5,"uuid":"13a37601-83cc-471b-ab56-e37cd20ffadc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":37,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6808","nonce":906119179},{"type":"v1","addr":"172.21.15.181:6809","nonce":906119179}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6810","nonce":906119179},{"type":"v1","addr":"172.21.15.181:6811","nonce":906119179}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6814","nonce":906119179},{"type":"v1","addr":"172.21.15.181:6815","nonce":906119179}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6812","nonce":906119179},{"type":"v1","addr":"172.21.15.181:6813","nonce":906119179}]},"public_addr":"172.21.15.181:6809/906119179","cluster_addr":"172.21.15.181:6811/906119179","heartbeat_back_addr":"172.21.15.181:6815/906119179","heartbeat_front_addr":"172.21.15.181:6813/906119179","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T07:34:28.644785+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T07:35:23.683107+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T07:36:16.633024+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T07:37:10.285997+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T07:38:00.928048+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T07:38:54.716545+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.115:0/1046388686":"2024-09-12T07:31:28.983705+0000","172.21.15.115:6801/3046415737":"2024-09-12T07:31:28.983705+0000","172.21.15.115:6800/3046415737":"2024-09-12T07:31:28.983705+0000","172.21.15.115:0/40819708":"2024-09-12T07:31:28.983705+0000","172.21.15.115:6801/598039986":"2024-09-12T07:30:54.975993+0000","172.21.15.115:6800/598039986":"2024-09-12T07:30:54.975993+0000","172.21.15.115:0/3299889272":"2024-09-12T07:30:54.975993+0000","172.21.15.115:0/1479242871":"2024-09-12T07:31:28.983705+0000","172.21.15.115:0/2097127196":"2024-09-12T07:30:54.975993+0000","172.21.15.115:0/322363914":"2024-09-12T07:30:54.975993+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-11T07:39:41.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:41 smithi181 bash[22002]: audit 2024-09-11T07:39:41.215994+0000 mon.c (mon.1) 13 : audit [DBG] from='client.? 172.21.15.115:0/3019284006' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-11T07:39:41.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:41 smithi115 bash[18678]: audit 2024-09-11T07:39:41.215994+0000 mon.c (mon.1) 13 : audit [DBG] from='client.? 172.21.15.115:0/3019284006' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-11T07:39:41.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:41 smithi150 bash[22110]: audit 2024-09-11T07:39:41.215994+0000 mon.c (mon.1) 13 : audit [DBG] from='client.? 172.21.15.115:0/3019284006' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-11T07:39:42.012 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-09-11T07:39:42.013 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph osd dump --format=json 2024-09-11T07:39:42.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:42 smithi181 bash[22002]: cluster 2024-09-11T07:39:41.115933+0000 mgr.a (mgr.14150) 311 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:42.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:42 smithi115 bash[18678]: cluster 2024-09-11T07:39:41.115933+0000 mgr.a (mgr.14150) 311 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:42.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:42 smithi150 bash[22110]: cluster 2024-09-11T07:39:41.115933+0000 mgr.a (mgr.14150) 311 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:44.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:44 smithi181 bash[22002]: cluster 2024-09-11T07:39:43.116484+0000 mgr.a (mgr.14150) 312 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:44.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:44 smithi115 bash[18678]: cluster 2024-09-11T07:39:43.116484+0000 mgr.a (mgr.14150) 312 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:44.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:44 smithi150 bash[22110]: cluster 2024-09-11T07:39:43.116484+0000 mgr.a (mgr.14150) 312 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:46.748 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:39:46.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:46 smithi181 bash[22002]: cluster 2024-09-11T07:39:45.117062+0000 mgr.a (mgr.14150) 313 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:46.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:46 smithi115 bash[18678]: cluster 2024-09-11T07:39:45.117062+0000 mgr.a (mgr.14150) 313 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:46.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:46 smithi150 bash[22110]: cluster 2024-09-11T07:39:45.117062+0000 mgr.a (mgr.14150) 313 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:48.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:48 smithi115 bash[18678]: cluster 2024-09-11T07:39:47.117618+0000 mgr.a (mgr.14150) 314 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:48.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:48 smithi181 bash[22002]: cluster 2024-09-11T07:39:47.117618+0000 mgr.a (mgr.14150) 314 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:48.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:48 smithi150 bash[22110]: cluster 2024-09-11T07:39:47.117618+0000 mgr.a (mgr.14150) 314 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:50.305 INFO:teuthology.orchestra.run.smithi115.stdout: 2024-09-11T07:39:50.305 INFO:teuthology.orchestra.run.smithi115.stdout:{"epoch":39,"fsid":"1973416c-700f-11ef-bcea-c7b262605968","created":"2024-09-11T07:30:27.344292+0000","modified":"2024-09-11T07:38:58.392495+0000","last_up_change":"2024-09-11T07:38:56.371503+0000","last_in_change":"2024-09-11T07:38:29.843728+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"quincy","pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-11T07:36:19.594111+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"21","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}}}],"osds":[{"osd":0,"uuid":"7ea9b8c0-49c6-43e5-9332-4c9129950673","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:6802","nonce":4152627375},{"type":"v1","addr":"172.21.15.115:6803","nonce":4152627375}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:6804","nonce":4152627375},{"type":"v1","addr":"172.21.15.115:6805","nonce":4152627375}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:6808","nonce":4152627375},{"type":"v1","addr":"172.21.15.115:6809","nonce":4152627375}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:6806","nonce":4152627375},{"type":"v1","addr":"172.21.15.115:6807","nonce":4152627375}]},"public_addr":"172.21.15.115:6803/4152627375","cluster_addr":"172.21.15.115:6805/4152627375","heartbeat_back_addr":"172.21.15.115:6809/4152627375","heartbeat_front_addr":"172.21.15.115:6807/4152627375","state":["exists","up"]},{"osd":1,"uuid":"20e789a8-02d9-4653-ba8f-a2872aaf28aa","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":13,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:6810","nonce":660496757},{"type":"v1","addr":"172.21.15.115:6811","nonce":660496757}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:6812","nonce":660496757},{"type":"v1","addr":"172.21.15.115:6813","nonce":660496757}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:6816","nonce":660496757},{"type":"v1","addr":"172.21.15.115:6817","nonce":660496757}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.115:6814","nonce":660496757},{"type":"v1","addr":"172.21.15.115:6815","nonce":660496757}]},"public_addr":"172.21.15.115:6811/660496757","cluster_addr":"172.21.15.115:6813/660496757","heartbeat_back_addr":"172.21.15.115:6817/660496757","heartbeat_front_addr":"172.21.15.115:6815/660496757","state":["exists","up"]},{"osd":2,"uuid":"40aff587-3e34-4cab-b381-c117fe9e36c7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":19,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.150:6800","nonce":2543552073},{"type":"v1","addr":"172.21.15.150:6801","nonce":2543552073}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.150:6802","nonce":2543552073},{"type":"v1","addr":"172.21.15.150:6803","nonce":2543552073}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.150:6806","nonce":2543552073},{"type":"v1","addr":"172.21.15.150:6807","nonce":2543552073}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.150:6804","nonce":2543552073},{"type":"v1","addr":"172.21.15.150:6805","nonce":2543552073}]},"public_addr":"172.21.15.150:6801/2543552073","cluster_addr":"172.21.15.150:6803/2543552073","heartbeat_back_addr":"172.21.15.150:6807/2543552073","heartbeat_front_addr":"172.21.15.150:6805/2543552073","state":["exists","up"]},{"osd":3,"uuid":"fe6098c7-2798-457a-918c-9b7b2f0022b4","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.150:6808","nonce":384009909},{"type":"v1","addr":"172.21.15.150:6809","nonce":384009909}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.150:6810","nonce":384009909},{"type":"v1","addr":"172.21.15.150:6811","nonce":384009909}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.150:6814","nonce":384009909},{"type":"v1","addr":"172.21.15.150:6815","nonce":384009909}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.150:6812","nonce":384009909},{"type":"v1","addr":"172.21.15.150:6813","nonce":384009909}]},"public_addr":"172.21.15.150:6809/384009909","cluster_addr":"172.21.15.150:6811/384009909","heartbeat_back_addr":"172.21.15.150:6815/384009909","heartbeat_front_addr":"172.21.15.150:6813/384009909","state":["exists","up"]},{"osd":4,"uuid":"91ce98be-445c-45ed-b811-6ff5569f062f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6800","nonce":1736827996},{"type":"v1","addr":"172.21.15.181:6801","nonce":1736827996}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6802","nonce":1736827996},{"type":"v1","addr":"172.21.15.181:6803","nonce":1736827996}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6806","nonce":1736827996},{"type":"v1","addr":"172.21.15.181:6807","nonce":1736827996}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6804","nonce":1736827996},{"type":"v1","addr":"172.21.15.181:6805","nonce":1736827996}]},"public_addr":"172.21.15.181:6801/1736827996","cluster_addr":"172.21.15.181:6803/1736827996","heartbeat_back_addr":"172.21.15.181:6807/1736827996","heartbeat_front_addr":"172.21.15.181:6805/1736827996","state":["exists","up"]},{"osd":5,"uuid":"13a37601-83cc-471b-ab56-e37cd20ffadc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":37,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6808","nonce":906119179},{"type":"v1","addr":"172.21.15.181:6809","nonce":906119179}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6810","nonce":906119179},{"type":"v1","addr":"172.21.15.181:6811","nonce":906119179}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6814","nonce":906119179},{"type":"v1","addr":"172.21.15.181:6815","nonce":906119179}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6812","nonce":906119179},{"type":"v1","addr":"172.21.15.181:6813","nonce":906119179}]},"public_addr":"172.21.15.181:6809/906119179","cluster_addr":"172.21.15.181:6811/906119179","heartbeat_back_addr":"172.21.15.181:6815/906119179","heartbeat_front_addr":"172.21.15.181:6813/906119179","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T07:34:28.644785+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T07:35:23.683107+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T07:36:16.633024+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T07:37:10.285997+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T07:38:00.928048+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T07:38:54.716545+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.115:0/1046388686":"2024-09-12T07:31:28.983705+0000","172.21.15.115:6801/3046415737":"2024-09-12T07:31:28.983705+0000","172.21.15.115:6800/3046415737":"2024-09-12T07:31:28.983705+0000","172.21.15.115:0/40819708":"2024-09-12T07:31:28.983705+0000","172.21.15.115:6801/598039986":"2024-09-12T07:30:54.975993+0000","172.21.15.115:6800/598039986":"2024-09-12T07:30:54.975993+0000","172.21.15.115:0/3299889272":"2024-09-12T07:30:54.975993+0000","172.21.15.115:0/1479242871":"2024-09-12T07:31:28.983705+0000","172.21.15.115:0/2097127196":"2024-09-12T07:30:54.975993+0000","172.21.15.115:0/322363914":"2024-09-12T07:30:54.975993+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-11T07:39:50.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:50 smithi115 bash[18678]: cluster 2024-09-11T07:39:49.118211+0000 mgr.a (mgr.14150) 315 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:50.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:50 smithi115 bash[18678]: audit 2024-09-11T07:39:50.301022+0000 mon.a (mon.0) 536 : audit [DBG] from='client.? 172.21.15.115:0/4174261204' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-11T07:39:50.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:50 smithi181 bash[22002]: cluster 2024-09-11T07:39:49.118211+0000 mgr.a (mgr.14150) 315 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:50.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:50 smithi181 bash[22002]: audit 2024-09-11T07:39:50.301022+0000 mon.a (mon.0) 536 : audit [DBG] from='client.? 172.21.15.115:0/4174261204' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-11T07:39:50.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:50 smithi150 bash[22110]: cluster 2024-09-11T07:39:49.118211+0000 mgr.a (mgr.14150) 315 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:50.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:50 smithi150 bash[22110]: audit 2024-09-11T07:39:50.301022+0000 mon.a (mon.0) 536 : audit [DBG] from='client.? 172.21.15.115:0/4174261204' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-11T07:39:50.982 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-09-11T07:39:50.983 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-09-11T07:39:50.983 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-09-11T07:39:50.984 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-09-11T07:39:50.984 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-09-11T07:39:50.984 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-09-11T07:39:52.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:52 smithi115 bash[18678]: cluster 2024-09-11T07:39:51.118637+0000 mgr.a (mgr.14150) 316 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:52.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:52 smithi150 bash[22110]: cluster 2024-09-11T07:39:51.118637+0000 mgr.a (mgr.14150) 316 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:53.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:52 smithi181 bash[22002]: cluster 2024-09-11T07:39:51.118637+0000 mgr.a (mgr.14150) 316 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:54.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:54 smithi115 bash[18678]: cluster 2024-09-11T07:39:53.119173+0000 mgr.a (mgr.14150) 317 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:54.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:54 smithi150 bash[22110]: cluster 2024-09-11T07:39:53.119173+0000 mgr.a (mgr.14150) 317 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:55.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:54 smithi181 bash[22002]: cluster 2024-09-11T07:39:53.119173+0000 mgr.a (mgr.14150) 317 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:55.744 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:39:55.744 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:39:55.744 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:39:55.745 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:39:55.745 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:39:55.745 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:39:56.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:56 smithi115 bash[18678]: cluster 2024-09-11T07:39:55.119714+0000 mgr.a (mgr.14150) 318 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:56.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:56 smithi150 bash[22110]: cluster 2024-09-11T07:39:55.119714+0000 mgr.a (mgr.14150) 318 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:57.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:56 smithi181 bash[22002]: cluster 2024-09-11T07:39:55.119714+0000 mgr.a (mgr.14150) 318 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:58.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:39:58 smithi115 bash[18678]: cluster 2024-09-11T07:39:57.120265+0000 mgr.a (mgr.14150) 319 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:58.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:39:58 smithi150 bash[22110]: cluster 2024-09-11T07:39:57.120265+0000 mgr.a (mgr.14150) 319 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:39:59.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:39:58 smithi181 bash[22002]: cluster 2024-09-11T07:39:57.120265+0000 mgr.a (mgr.14150) 319 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:00.739 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:00 smithi115 bash[18678]: cluster 2024-09-11T07:39:59.120821+0000 mgr.a (mgr.14150) 320 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:00.739 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:00 smithi115 bash[18678]: cluster 2024-09-11T07:40:00.000155+0000 mon.a (mon.0) 537 : cluster [INF] overall HEALTH_OK 2024-09-11T07:40:00.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:00 smithi150 bash[22110]: cluster 2024-09-11T07:39:59.120821+0000 mgr.a (mgr.14150) 320 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:00.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:00 smithi150 bash[22110]: cluster 2024-09-11T07:40:00.000155+0000 mon.a (mon.0) 537 : cluster [INF] overall HEALTH_OK 2024-09-11T07:40:01.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:00 smithi181 bash[22002]: cluster 2024-09-11T07:39:59.120821+0000 mgr.a (mgr.14150) 320 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:01.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:00 smithi181 bash[22002]: cluster 2024-09-11T07:40:00.000155+0000 mon.a (mon.0) 537 : cluster [INF] overall HEALTH_OK 2024-09-11T07:40:02.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:02 smithi115 bash[18678]: cluster 2024-09-11T07:40:01.121371+0000 mgr.a (mgr.14150) 321 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:02.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:02 smithi150 bash[22110]: cluster 2024-09-11T07:40:01.121371+0000 mgr.a (mgr.14150) 321 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:03.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:02 smithi181 bash[22002]: cluster 2024-09-11T07:40:01.121371+0000 mgr.a (mgr.14150) 321 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:04.720 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:04 smithi115 bash[18678]: cluster 2024-09-11T07:40:03.122020+0000 mgr.a (mgr.14150) 322 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:04.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:04 smithi150 bash[22110]: cluster 2024-09-11T07:40:03.122020+0000 mgr.a (mgr.14150) 322 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:05.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:04 smithi181 bash[22002]: cluster 2024-09-11T07:40:03.122020+0000 mgr.a (mgr.14150) 322 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:06.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:06 smithi115 bash[18678]: cluster 2024-09-11T07:40:05.122518+0000 mgr.a (mgr.14150) 323 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:06.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:06 smithi115 bash[18678]: audit 2024-09-11T07:40:05.980823+0000 mon.a (mon.0) 538 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:40:06.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:06 smithi115 bash[18678]: audit 2024-09-11T07:40:06.539067+0000 mon.a (mon.0) 539 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:40:06.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:06 smithi115 bash[18678]: audit 2024-09-11T07:40:06.540462+0000 mon.a (mon.0) 540 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:40:06.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:06 smithi115 bash[18678]: audit 2024-09-11T07:40:06.548251+0000 mon.a (mon.0) 541 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:40:06.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:06 smithi150 bash[22110]: cluster 2024-09-11T07:40:05.122518+0000 mgr.a (mgr.14150) 323 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:06.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:06 smithi150 bash[22110]: audit 2024-09-11T07:40:05.980823+0000 mon.a (mon.0) 538 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:40:06.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:06 smithi150 bash[22110]: audit 2024-09-11T07:40:06.539067+0000 mon.a (mon.0) 539 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:40:06.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:06 smithi150 bash[22110]: audit 2024-09-11T07:40:06.540462+0000 mon.a (mon.0) 540 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:40:06.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:06 smithi150 bash[22110]: audit 2024-09-11T07:40:06.548251+0000 mon.a (mon.0) 541 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:40:07.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:06 smithi181 bash[22002]: cluster 2024-09-11T07:40:05.122518+0000 mgr.a (mgr.14150) 323 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:07.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:06 smithi181 bash[22002]: audit 2024-09-11T07:40:05.980823+0000 mon.a (mon.0) 538 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:40:07.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:06 smithi181 bash[22002]: audit 2024-09-11T07:40:06.539067+0000 mon.a (mon.0) 539 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:40:07.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:06 smithi181 bash[22002]: audit 2024-09-11T07:40:06.540462+0000 mon.a (mon.0) 540 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:40:07.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:06 smithi181 bash[22002]: audit 2024-09-11T07:40:06.548251+0000 mon.a (mon.0) 541 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:40:07.787 INFO:teuthology.orchestra.run.smithi115.stdout:158913789969 2024-09-11T07:40:07.787 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-09-11T07:40:08.220 INFO:teuthology.orchestra.run.smithi115.stdout:107374182437 2024-09-11T07:40:08.220 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-09-11T07:40:08.841 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:08 smithi115 bash[18678]: cluster 2024-09-11T07:40:07.123015+0000 mgr.a (mgr.14150) 324 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:08.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:08 smithi150 bash[22110]: cluster 2024-09-11T07:40:07.123015+0000 mgr.a (mgr.14150) 324 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:09.021 INFO:teuthology.orchestra.run.smithi115.stdout:55834574907 2024-09-11T07:40:09.021 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-09-11T07:40:09.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:08 smithi181 bash[22002]: cluster 2024-09-11T07:40:07.123015+0000 mgr.a (mgr.14150) 324 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:09.759 INFO:teuthology.orchestra.run.smithi115.stdout:77309411377 2024-09-11T07:40:09.759 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-09-11T07:40:10.396 INFO:teuthology.orchestra.run.smithi115.stdout:34359738438 2024-09-11T07:40:10.397 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-09-11T07:40:10.791 INFO:teuthology.orchestra.run.smithi115.stdout:133143986204 2024-09-11T07:40:10.792 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-09-11T07:40:10.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:10 smithi150 bash[22110]: cluster 2024-09-11T07:40:09.123527+0000 mgr.a (mgr.14150) 325 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:11.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:10 smithi181 bash[22002]: cluster 2024-09-11T07:40:09.123527+0000 mgr.a (mgr.14150) 325 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:11.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:10 smithi115 bash[18678]: cluster 2024-09-11T07:40:09.123527+0000 mgr.a (mgr.14150) 325 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:12.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:12 smithi150 bash[22110]: cluster 2024-09-11T07:40:11.124100+0000 mgr.a (mgr.14150) 326 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:13.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:12 smithi181 bash[22002]: cluster 2024-09-11T07:40:11.124100+0000 mgr.a (mgr.14150) 326 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:13.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:12 smithi115 bash[18678]: cluster 2024-09-11T07:40:11.124100+0000 mgr.a (mgr.14150) 326 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:13.543 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:40:13.544 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:40:13.544 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:40:13.545 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:40:14.550 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:40:14.551 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:40:14.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:14 smithi150 bash[22110]: cluster 2024-09-11T07:40:13.124685+0000 mgr.a (mgr.14150) 327 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:15.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:14 smithi181 bash[22002]: cluster 2024-09-11T07:40:13.124685+0000 mgr.a (mgr.14150) 327 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:15.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:14 smithi115 bash[18678]: cluster 2024-09-11T07:40:13.124685+0000 mgr.a (mgr.14150) 327 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:16.773 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:16 smithi115 bash[18678]: cluster 2024-09-11T07:40:15.125241+0000 mgr.a (mgr.14150) 328 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:16.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:16 smithi150 bash[22110]: cluster 2024-09-11T07:40:15.125241+0000 mgr.a (mgr.14150) 328 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:17.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:16 smithi181 bash[22002]: cluster 2024-09-11T07:40:15.125241+0000 mgr.a (mgr.14150) 328 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:18.825 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:18 smithi115 bash[18678]: cluster 2024-09-11T07:40:17.125779+0000 mgr.a (mgr.14150) 329 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:18.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:18 smithi150 bash[22110]: cluster 2024-09-11T07:40:17.125779+0000 mgr.a (mgr.14150) 329 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:19.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:18 smithi181 bash[22002]: cluster 2024-09-11T07:40:17.125779+0000 mgr.a (mgr.14150) 329 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:20.888 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:20 smithi115 bash[18678]: cluster 2024-09-11T07:40:19.126427+0000 mgr.a (mgr.14150) 330 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:20.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:20 smithi150 bash[22110]: cluster 2024-09-11T07:40:19.126427+0000 mgr.a (mgr.14150) 330 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:21.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:20 smithi181 bash[22002]: cluster 2024-09-11T07:40:19.126427+0000 mgr.a (mgr.14150) 330 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:22.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:22 smithi150 bash[22110]: cluster 2024-09-11T07:40:21.127069+0000 mgr.a (mgr.14150) 331 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:23.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:22 smithi181 bash[22002]: cluster 2024-09-11T07:40:21.127069+0000 mgr.a (mgr.14150) 331 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:23.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:22 smithi115 bash[18678]: cluster 2024-09-11T07:40:21.127069+0000 mgr.a (mgr.14150) 331 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:23.906 INFO:teuthology.orchestra.run.smithi115.stdout:158913789973 2024-09-11T07:40:24.655 INFO:teuthology.orchestra.run.smithi115.stdout:107374182441 2024-09-11T07:40:24.712 INFO:teuthology.orchestra.run.smithi115.stdout:77309411380 2024-09-11T07:40:24.733 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:24 smithi115 bash[18678]: cluster 2024-09-11T07:40:23.127603+0000 mgr.a (mgr.14150) 332 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:24.733 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:24 smithi115 bash[18678]: audit 2024-09-11T07:40:23.904078+0000 mon.a (mon.0) 542 : audit [DBG] from='client.? 172.21.15.115:0/4027791352' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-11T07:40:24.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:24 smithi150 bash[22110]: cluster 2024-09-11T07:40:23.127603+0000 mgr.a (mgr.14150) 332 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:24.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:24 smithi150 bash[22110]: audit 2024-09-11T07:40:23.904078+0000 mon.a (mon.0) 542 : audit [DBG] from='client.? 172.21.15.115:0/4027791352' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-11T07:40:25.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:24 smithi181 bash[22002]: cluster 2024-09-11T07:40:23.127603+0000 mgr.a (mgr.14150) 332 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:25.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:24 smithi181 bash[22002]: audit 2024-09-11T07:40:23.904078+0000 mon.a (mon.0) 542 : audit [DBG] from='client.? 172.21.15.115:0/4027791352' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-11T07:40:25.486 INFO:tasks.cephadm.ceph_manager.ceph:need seq 158913789969 got 158913789973 for osd.5 2024-09-11T07:40:25.486 DEBUG:teuthology.parallel:result is None 2024-09-11T07:40:25.512 INFO:teuthology.orchestra.run.smithi115.stdout:55834574911 2024-09-11T07:40:25.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:25 smithi115 bash[18678]: audit 2024-09-11T07:40:24.652193+0000 mon.a (mon.0) 543 : audit [DBG] from='client.? 172.21.15.115:0/1912588252' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-11T07:40:25.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:25 smithi115 bash[18678]: audit 2024-09-11T07:40:24.709563+0000 mon.a (mon.0) 544 : audit [DBG] from='client.? 172.21.15.115:0/1962336898' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-11T07:40:25.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:25 smithi115 bash[18678]: audit 2024-09-11T07:40:25.510305+0000 mon.a (mon.0) 545 : audit [DBG] from='client.? 172.21.15.115:0/1024484404' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-11T07:40:25.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:25 smithi150 bash[22110]: audit 2024-09-11T07:40:24.652193+0000 mon.a (mon.0) 543 : audit [DBG] from='client.? 172.21.15.115:0/1912588252' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-11T07:40:25.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:25 smithi150 bash[22110]: audit 2024-09-11T07:40:24.709563+0000 mon.a (mon.0) 544 : audit [DBG] from='client.? 172.21.15.115:0/1962336898' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-11T07:40:25.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:25 smithi150 bash[22110]: audit 2024-09-11T07:40:25.510305+0000 mon.a (mon.0) 545 : audit [DBG] from='client.? 172.21.15.115:0/1024484404' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-11T07:40:26.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:25 smithi181 bash[22002]: audit 2024-09-11T07:40:24.652193+0000 mon.a (mon.0) 543 : audit [DBG] from='client.? 172.21.15.115:0/1912588252' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-11T07:40:26.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:25 smithi181 bash[22002]: audit 2024-09-11T07:40:24.709563+0000 mon.a (mon.0) 544 : audit [DBG] from='client.? 172.21.15.115:0/1962336898' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-11T07:40:26.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:25 smithi181 bash[22002]: audit 2024-09-11T07:40:25.510305+0000 mon.a (mon.0) 545 : audit [DBG] from='client.? 172.21.15.115:0/1024484404' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-11T07:40:26.887 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:26 smithi115 bash[18678]: cluster 2024-09-11T07:40:25.128178+0000 mgr.a (mgr.14150) 333 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:26.888 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411377 got 77309411380 for osd.2 2024-09-11T07:40:26.888 DEBUG:teuthology.parallel:result is None 2024-09-11T07:40:26.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:26 smithi150 bash[22110]: cluster 2024-09-11T07:40:25.128178+0000 mgr.a (mgr.14150) 333 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:27.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:26 smithi181 bash[22002]: cluster 2024-09-11T07:40:25.128178+0000 mgr.a (mgr.14150) 333 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:27.064 INFO:teuthology.orchestra.run.smithi115.stdout:133143986207 2024-09-11T07:40:27.496 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182437 got 107374182441 for osd.3 2024-09-11T07:40:27.497 DEBUG:teuthology.parallel:result is None 2024-09-11T07:40:27.650 INFO:teuthology.orchestra.run.smithi115.stdout:34359738442 2024-09-11T07:40:27.719 INFO:tasks.cephadm.ceph_manager.ceph:need seq 55834574907 got 55834574911 for osd.1 2024-09-11T07:40:27.720 DEBUG:teuthology.parallel:result is None 2024-09-11T07:40:27.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:27 smithi115 bash[18678]: audit 2024-09-11T07:40:27.061913+0000 mon.a (mon.0) 546 : audit [DBG] from='client.? 172.21.15.115:0/4172987198' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-11T07:40:27.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:27 smithi150 bash[22110]: audit 2024-09-11T07:40:27.061913+0000 mon.a (mon.0) 546 : audit [DBG] from='client.? 172.21.15.115:0/4172987198' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-11T07:40:28.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:27 smithi181 bash[22002]: audit 2024-09-11T07:40:27.061913+0000 mon.a (mon.0) 546 : audit [DBG] from='client.? 172.21.15.115:0/4172987198' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-11T07:40:28.544 INFO:tasks.cephadm.ceph_manager.ceph:need seq 133143986204 got 133143986207 for osd.4 2024-09-11T07:40:28.544 DEBUG:teuthology.parallel:result is None 2024-09-11T07:40:28.614 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738438 got 34359738442 for osd.0 2024-09-11T07:40:28.615 DEBUG:teuthology.parallel:result is None 2024-09-11T07:40:28.615 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-09-11T07:40:28.615 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph pg dump --format=json 2024-09-11T07:40:28.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:28 smithi150 bash[22110]: cluster 2024-09-11T07:40:27.128794+0000 mgr.a (mgr.14150) 334 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:28.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:28 smithi150 bash[22110]: audit 2024-09-11T07:40:27.648018+0000 mon.a (mon.0) 547 : audit [DBG] from='client.? 172.21.15.115:0/4097444800' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-11T07:40:29.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:28 smithi181 bash[22002]: cluster 2024-09-11T07:40:27.128794+0000 mgr.a (mgr.14150) 334 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:29.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:28 smithi181 bash[22002]: audit 2024-09-11T07:40:27.648018+0000 mon.a (mon.0) 547 : audit [DBG] from='client.? 172.21.15.115:0/4097444800' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-11T07:40:29.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:28 smithi115 bash[18678]: cluster 2024-09-11T07:40:27.128794+0000 mgr.a (mgr.14150) 334 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:29.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:28 smithi115 bash[18678]: audit 2024-09-11T07:40:27.648018+0000 mon.a (mon.0) 547 : audit [DBG] from='client.? 172.21.15.115:0/4097444800' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-11T07:40:30.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:30 smithi150 bash[22110]: cluster 2024-09-11T07:40:29.129333+0000 mgr.a (mgr.14150) 335 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:31.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:30 smithi181 bash[22002]: cluster 2024-09-11T07:40:29.129333+0000 mgr.a (mgr.14150) 335 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:31.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:30 smithi115 bash[18678]: cluster 2024-09-11T07:40:29.129333+0000 mgr.a (mgr.14150) 335 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:32.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:32 smithi150 bash[22110]: cluster 2024-09-11T07:40:31.129875+0000 mgr.a (mgr.14150) 336 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:33.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:32 smithi181 bash[22002]: cluster 2024-09-11T07:40:31.129875+0000 mgr.a (mgr.14150) 336 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:33.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:32 smithi115 bash[18678]: cluster 2024-09-11T07:40:31.129875+0000 mgr.a (mgr.14150) 336 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:33.348 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:40:34.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:34 smithi115 bash[18678]: cluster 2024-09-11T07:40:33.130420+0000 mgr.a (mgr.14150) 337 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:34.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:34 smithi150 bash[22110]: cluster 2024-09-11T07:40:33.130420+0000 mgr.a (mgr.14150) 337 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:35.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:34 smithi181 bash[22002]: cluster 2024-09-11T07:40:33.130420+0000 mgr.a (mgr.14150) 337 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:36.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:36 smithi150 bash[22110]: cluster 2024-09-11T07:40:35.130951+0000 mgr.a (mgr.14150) 338 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:36.984 INFO:teuthology.orchestra.run.smithi115.stderr:dumped all 2024-09-11T07:40:36.985 INFO:teuthology.orchestra.run.smithi115.stdout: 2024-09-11T07:40:37.010 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:36 smithi115 bash[18678]: cluster 2024-09-11T07:40:35.130951+0000 mgr.a (mgr.14150) 338 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:37.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:36 smithi181 bash[22002]: cluster 2024-09-11T07:40:35.130951+0000 mgr.a (mgr.14150) 338 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:37.769 INFO:teuthology.orchestra.run.smithi115.stdout:{"pg_ready":true,"pg_map":{"version":302,"stamp":"2024-09-11T07:40:35.130708+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":92,"ondisk_log_size":92,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":3,"kb":562470912,"kb_used":1787948,"kb_used_data":3792,"kb_used_omap":9,"kb_used_meta":1784054,"kb_avail":560682964,"statfs":{"total":575970213888,"available":574139355136,"internally_reserved":0,"allocated":3883008,"data_stored":2572617,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":10224,"internal_metadata":1826871312},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"12.003373"},"pg_stats":[{"pgid":"1.0","version":"21'92","reported_seq":68,"reported_epoch":39,"state":"active+clean","last_fresh":"2024-09-11T07:38:58.794156+0000","last_change":"2024-09-11T07:38:58.794156+0000","last_active":"2024-09-11T07:38:58.794156+0000","last_peered":"2024-09-11T07:38:58.794156+0000","last_clean":"2024-09-11T07:38:58.794156+0000","last_became_active":"2024-09-11T07:38:58.784004+0000","last_became_peered":"2024-09-11T07:38:58.784004+0000","last_unstale":"2024-09-11T07:38:58.794156+0000","last_undegraded":"2024-09-11T07:38:58.794156+0000","last_fullsized":"2024-09-11T07:38:58.794156+0000","mapping_epoch":38,"log_start":"0'0","ondisk_log_start":"0'0","created":19,"last_epoch_clean":39,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-11T07:36:19.659354+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-11T07:36:19.659354+0000","last_clean_scrub_stamp":"2024-09-11T07:36:19.659354+0000","objects_scrubbed":0,"log_size":92,"log_dups_size":0,"ondisk_log_size":92,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-09-12T17:46:26.343796+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[3,5,2],"acting":[3,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":3,"acting_primary":3,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":3563520,"data_stored":3542208,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":92,"ondisk_log_size":92,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":37,"seq":158913789975,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":298280,"kb_used_data":920,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93446872,"statfs":{"total":95995035648,"available":95689596928,"internally_reserved":0,"allocated":942080,"data_stored":723796,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Wed Sep 11 07:39:59 2024","interfaces":[{"interface":"back","average":{"1min":0.76000000000000001,"5min":0.76000000000000001,"15min":0.76000000000000001},"min":{"1min":0.54800000000000004,"5min":0.54800000000000004,"15min":0.54800000000000004},"max":{"1min":1.091,"5min":1.091,"15min":1.091},"last":0.75700000000000001},{"interface":"front","average":{"1min":0.74299999999999999,"5min":0.74299999999999999,"15min":0.74299999999999999},"min":{"1min":0.61699999999999999,"5min":0.61699999999999999,"15min":0.61699999999999999},"max":{"1min":1.002,"5min":1.002,"15min":1.002},"last":0.61899999999999999}]},{"osd":1,"last update":"Wed Sep 11 07:39:59 2024","interfaces":[{"interface":"back","average":{"1min":0.79200000000000004,"5min":0.79200000000000004,"15min":0.79200000000000004},"min":{"1min":0.58999999999999997,"5min":0.58999999999999997,"15min":0.58999999999999997},"max":{"1min":1.339,"5min":1.339,"15min":1.339},"last":0.71599999999999997},{"interface":"front","average":{"1min":0.79800000000000004,"5min":0.79800000000000004,"15min":0.79800000000000004},"min":{"1min":0.64200000000000002,"5min":0.64200000000000002,"15min":0.64200000000000002},"max":{"1min":1.3,"5min":1.3,"15min":1.3},"last":0.87}]},{"osd":2,"last update":"Wed Sep 11 07:39:59 2024","interfaces":[{"interface":"back","average":{"1min":0.84299999999999997,"5min":0.84299999999999997,"15min":0.84299999999999997},"min":{"1min":0.67000000000000004,"5min":0.67000000000000004,"15min":0.67000000000000004},"max":{"1min":1.0840000000000001,"5min":1.0840000000000001,"15min":1.0840000000000001},"last":0.91200000000000003},{"interface":"front","average":{"1min":0.89200000000000002,"5min":0.89200000000000002,"15min":0.89200000000000002},"min":{"1min":0.64600000000000002,"5min":0.64600000000000002,"15min":0.64600000000000002},"max":{"1min":1.611,"5min":1.611,"15min":1.611},"last":0.80800000000000005}]},{"osd":3,"last update":"Wed Sep 11 07:39:59 2024","interfaces":[{"interface":"back","average":{"1min":0.82999999999999996,"5min":0.82999999999999996,"15min":0.82999999999999996},"min":{"1min":0.629,"5min":0.629,"15min":0.629},"max":{"1min":1.268,"5min":1.268,"15min":1.268},"last":0.78300000000000003},{"interface":"front","average":{"1min":0.89700000000000002,"5min":0.89700000000000002,"15min":0.89700000000000002},"min":{"1min":0.75900000000000001,"5min":0.75900000000000001,"15min":0.75900000000000001},"max":{"1min":1.056,"5min":1.056,"15min":1.056},"last":0.82399999999999995}]},{"osd":4,"last update":"Wed Sep 11 07:39:59 2024","interfaces":[{"interface":"back","average":{"1min":0.83099999999999996,"5min":0.83099999999999996,"15min":0.83099999999999996},"min":{"1min":0.51600000000000001,"5min":0.51600000000000001,"15min":0.51600000000000001},"max":{"1min":1.1919999999999999,"5min":1.1919999999999999,"15min":1.1919999999999999},"last":0.66600000000000004},{"interface":"front","average":{"1min":0.90600000000000003,"5min":0.90600000000000003,"15min":0.90600000000000003},"min":{"1min":0.55700000000000005,"5min":0.55700000000000005,"15min":0.55700000000000005},"max":{"1min":1.4239999999999999,"5min":1.4239999999999999,"15min":1.4239999999999999},"last":0.56200000000000006}]}]},{"osd":4,"up_from":31,"seq":133143986209,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":297704,"kb_used_data":344,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93447448,"statfs":{"total":95995035648,"available":95690186752,"internally_reserved":0,"allocated":352256,"data_stored":133743,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Wed Sep 11 07:40:04 2024","interfaces":[{"interface":"back","average":{"1min":0.877,"5min":0.82099999999999995,"15min":0.81200000000000006},"min":{"1min":0.53800000000000003,"5min":0.53800000000000003,"15min":0.53800000000000003},"max":{"1min":1.0680000000000001,"5min":1.0680000000000001,"15min":1.0680000000000001},"last":0.76500000000000001},{"interface":"front","average":{"1min":0.81799999999999995,"5min":0.83799999999999997,"15min":0.84099999999999997},"min":{"1min":0.66900000000000004,"5min":0.66900000000000004,"15min":0.66900000000000004},"max":{"1min":0.98299999999999998,"5min":1.0620000000000001,"15min":1.0620000000000001},"last":0.60999999999999999}]},{"osd":1,"last update":"Wed Sep 11 07:40:04 2024","interfaces":[{"interface":"back","average":{"1min":0.82499999999999996,"5min":0.80400000000000005,"15min":0.80000000000000004},"min":{"1min":0.70999999999999996,"5min":0.60799999999999998,"15min":0.60799999999999998},"max":{"1min":1.028,"5min":1.028,"15min":1.028},"last":0.66100000000000003},{"interface":"front","average":{"1min":0.77600000000000002,"5min":0.76500000000000001,"15min":0.76300000000000001},"min":{"1min":0.61199999999999999,"5min":0.60799999999999998,"15min":0.60799999999999998},"max":{"1min":0.97299999999999998,"5min":0.97299999999999998,"15min":0.97299999999999998},"last":0.72699999999999998}]},{"osd":2,"last update":"Wed Sep 11 07:40:04 2024","interfaces":[{"interface":"back","average":{"1min":0.82699999999999996,"5min":0.81999999999999995,"15min":0.81899999999999995},"min":{"1min":0.66400000000000003,"5min":0.62,"15min":0.62},"max":{"1min":0.997,"5min":1.0469999999999999,"15min":1.0469999999999999},"last":0.68999999999999995},{"interface":"front","average":{"1min":0.93899999999999995,"5min":0.88800000000000001,"15min":0.88},"min":{"1min":0.79200000000000004,"5min":0.68799999999999994,"15min":0.68799999999999994},"max":{"1min":1.0449999999999999,"5min":1.0449999999999999,"15min":1.0449999999999999},"last":0.92300000000000004}]},{"osd":3,"last update":"Wed Sep 11 07:40:04 2024","interfaces":[{"interface":"back","average":{"1min":0.878,"5min":0.86899999999999999,"15min":0.86699999999999999},"min":{"1min":0.69599999999999995,"5min":0.64400000000000002,"15min":0.64400000000000002},"max":{"1min":0.98399999999999999,"5min":1.0720000000000001,"15min":1.0720000000000001},"last":0.81699999999999995},{"interface":"front","average":{"1min":0.90100000000000002,"5min":0.85799999999999998,"15min":0.85099999999999998},"min":{"1min":0.64100000000000001,"5min":0.64100000000000001,"15min":0.64100000000000001},"max":{"1min":1.024,"5min":1.0389999999999999,"15min":1.0389999999999999},"last":0.79300000000000004}]},{"osd":5,"last update":"Wed Sep 11 07:39:56 2024","interfaces":[{"interface":"back","average":{"1min":0.82199999999999995,"5min":0.82199999999999995,"15min":0.82199999999999995},"min":{"1min":0.64800000000000002,"5min":0.64800000000000002,"15min":0.64800000000000002},"max":{"1min":0.995,"5min":0.995,"15min":0.995},"last":0.86499999999999999},{"interface":"front","average":{"1min":0.82199999999999995,"5min":0.82199999999999995,"15min":0.82199999999999995},"min":{"1min":0.64300000000000002,"5min":0.64300000000000002,"15min":0.64300000000000002},"max":{"1min":0.97399999999999998,"5min":0.97399999999999998,"15min":0.97399999999999998},"last":0.84599999999999997}]}]},{"osd":3,"up_from":25,"seq":107374182443,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":298280,"kb_used_data":924,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93446872,"statfs":{"total":95995035648,"available":95689596928,"internally_reserved":0,"allocated":946176,"data_stored":724111,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Wed Sep 11 07:40:17 2024","interfaces":[{"interface":"back","average":{"1min":0.748,"5min":0.71799999999999997,"15min":0.70899999999999996},"min":{"1min":0.54700000000000004,"5min":0.54700000000000004,"15min":0.54700000000000004},"max":{"1min":0.98199999999999998,"5min":0.98199999999999998,"15min":0.98199999999999998},"last":0.91400000000000003},{"interface":"front","average":{"1min":0.71199999999999997,"5min":0.73499999999999999,"15min":0.73299999999999998},"min":{"1min":0.52600000000000002,"5min":0.52400000000000002,"15min":0.52400000000000002},"max":{"1min":0.93400000000000005,"5min":1.0489999999999999,"15min":1.0489999999999999},"last":0.64900000000000002}]},{"osd":1,"last update":"Wed Sep 11 07:40:17 2024","interfaces":[{"interface":"back","average":{"1min":0.69499999999999995,"5min":0.73799999999999999,"15min":0.751},"min":{"1min":0.44400000000000001,"5min":0.44400000000000001,"15min":0.44400000000000001},"max":{"1min":0.93799999999999994,"5min":0.97299999999999998,"15min":0.97299999999999998},"last":0.73099999999999998},{"interface":"front","average":{"1min":0.73999999999999999,"5min":0.76000000000000001,"15min":0.75800000000000001},"min":{"1min":0.57499999999999996,"5min":0.54600000000000004,"15min":0.54600000000000004},"max":{"1min":0.98299999999999998,"5min":1.0149999999999999,"15min":1.0149999999999999},"last":0.68700000000000006}]},{"osd":2,"last update":"Wed Sep 11 07:40:17 2024","interfaces":[{"interface":"back","average":{"1min":0.57599999999999996,"5min":0.61799999999999999,"15min":0.622},"min":{"1min":0.47299999999999998,"5min":0.47299999999999998,"15min":0.47299999999999998},"max":{"1min":0.67800000000000005,"5min":0.88800000000000001,"15min":0.88800000000000001},"last":0.55500000000000005},{"interface":"front","average":{"1min":0.65900000000000003,"5min":0.69499999999999995,"15min":0.70099999999999996},"min":{"1min":0.52800000000000002,"5min":0.52800000000000002,"15min":0.52800000000000002},"max":{"1min":0.77700000000000002,"5min":0.90300000000000002,"15min":0.90300000000000002},"last":0.59499999999999997}]},{"osd":4,"last update":"Wed Sep 11 07:40:06 2024","interfaces":[{"interface":"back","average":{"1min":0.81000000000000005,"5min":0.84599999999999997,"15min":0.85199999999999998},"min":{"1min":0.627,"5min":0.627,"15min":0.627},"max":{"1min":0.96399999999999997,"5min":1.159,"15min":1.159},"last":0.78800000000000003},{"interface":"front","average":{"1min":0.85899999999999999,"5min":0.86899999999999999,"15min":0.871},"min":{"1min":0.755,"5min":0.59799999999999998,"15min":0.59799999999999998},"max":{"1min":0.95699999999999996,"5min":1.1100000000000001,"15min":1.1100000000000001},"last":0.82899999999999996}]},{"osd":5,"last update":"Wed Sep 11 07:39:59 2024","interfaces":[{"interface":"back","average":{"1min":0.86499999999999999,"5min":0.86499999999999999,"15min":0.86499999999999999},"min":{"1min":0.67800000000000005,"5min":0.67800000000000005,"15min":0.67800000000000005},"max":{"1min":0.97799999999999998,"5min":0.97799999999999998,"15min":0.97799999999999998},"last":0.85999999999999999},{"interface":"front","average":{"1min":0.88900000000000001,"5min":0.88900000000000001,"15min":0.88900000000000001},"min":{"1min":0.76500000000000001,"5min":0.76500000000000001,"15min":0.76500000000000001},"max":{"1min":1.04,"5min":1.04,"15min":1.04},"last":0.872}]}]},{"osd":2,"up_from":18,"seq":77309411383,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":298280,"kb_used_data":920,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93446872,"statfs":{"total":95995035648,"available":95689596928,"internally_reserved":0,"allocated":942080,"data_stored":723796,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Wed Sep 11 07:40:30 2024","interfaces":[{"interface":"back","average":{"1min":0.73399999999999999,"5min":0.81999999999999995,"15min":0.81799999999999995},"min":{"1min":0.56599999999999995,"5min":0.54500000000000004,"15min":0.54500000000000004},"max":{"1min":0.95899999999999996,"5min":6.2290000000000001,"15min":6.2290000000000001},"last":0.91500000000000004},{"interface":"front","average":{"1min":0.73299999999999998,"5min":0.79100000000000004,"15min":0.75900000000000001},"min":{"1min":0.502,"5min":0.502,"15min":0.502},"max":{"1min":1.1359999999999999,"5min":6.3140000000000001,"15min":6.3140000000000001},"last":0.83799999999999997}]},{"osd":1,"last update":"Wed Sep 11 07:40:30 2024","interfaces":[{"interface":"back","average":{"1min":0.77400000000000002,"5min":0.75,"15min":0.752},"min":{"1min":0.57399999999999995,"5min":0.57399999999999995,"15min":0.57399999999999995},"max":{"1min":1.1850000000000001,"5min":1.1850000000000001,"15min":1.1850000000000001},"last":0.80500000000000005},{"interface":"front","average":{"1min":0.82299999999999995,"5min":0.78000000000000003,"15min":0.77000000000000002},"min":{"1min":0.53800000000000003,"5min":0.53800000000000003,"15min":0.53800000000000003},"max":{"1min":0.98999999999999999,"5min":0.98999999999999999,"15min":0.98999999999999999},"last":0.752}]},{"osd":3,"last update":"Wed Sep 11 07:40:17 2024","interfaces":[{"interface":"back","average":{"1min":0.74299999999999999,"5min":0.65400000000000003,"15min":0.64000000000000001},"min":{"1min":0.56299999999999994,"5min":0.498,"15min":0.498},"max":{"1min":0.92100000000000004,"5min":0.92100000000000004,"15min":0.92100000000000004},"last":0.68500000000000005},{"interface":"front","average":{"1min":0.71599999999999997,"5min":0.66400000000000003,"15min":0.65200000000000002},"min":{"1min":0.50600000000000001,"5min":0.47499999999999998,"15min":0.47499999999999998},"max":{"1min":0.93300000000000005,"5min":0.93300000000000005,"15min":0.93300000000000005},"last":0.58699999999999997}]},{"osd":4,"last update":"Wed Sep 11 07:40:06 2024","interfaces":[{"interface":"back","average":{"1min":0.84599999999999997,"5min":0.82199999999999995,"15min":0.81799999999999995},"min":{"1min":0.67000000000000004,"5min":0.64400000000000002,"15min":0.64400000000000002},"max":{"1min":0.96499999999999997,"5min":0.96499999999999997,"15min":0.96499999999999997},"last":0.621},{"interface":"front","average":{"1min":0.90600000000000003,"5min":0.84099999999999997,"15min":0.82999999999999996},"min":{"1min":0.78500000000000003,"5min":0.60999999999999999,"15min":0.60999999999999999},"max":{"1min":0.97899999999999998,"5min":0.98699999999999999,"15min":0.98699999999999999},"last":0.88800000000000001}]},{"osd":5,"last update":"Wed Sep 11 07:39:57 2024","interfaces":[{"interface":"back","average":{"1min":0.89900000000000002,"5min":0.89900000000000002,"15min":0.89900000000000002},"min":{"1min":0.73899999999999999,"5min":0.73899999999999999,"15min":0.73899999999999999},"max":{"1min":1.0269999999999999,"5min":1.0269999999999999,"15min":1.0269999999999999},"last":0.66100000000000003},{"interface":"front","average":{"1min":0.90200000000000002,"5min":0.90200000000000002,"15min":0.90200000000000002},"min":{"1min":0.749,"5min":0.749,"15min":0.749},"max":{"1min":1.014,"5min":1.014,"15min":1.014},"last":0.77700000000000002}]}]},{"osd":1,"up_from":13,"seq":55834574913,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":297700,"kb_used_data":340,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93447452,"statfs":{"total":95995035648,"available":95690190848,"internally_reserved":0,"allocated":348160,"data_stored":133428,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Wed Sep 11 07:39:38 2024","interfaces":[{"interface":"back","average":{"1min":0.55100000000000005,"5min":0.52300000000000002,"15min":0.51700000000000002},"min":{"1min":0.45800000000000002,"5min":0.41399999999999998,"15min":0.41399999999999998},"max":{"1min":0.77100000000000002,"5min":0.77100000000000002,"15min":0.77100000000000002},"last":0.56999999999999995},{"interface":"front","average":{"1min":0.58399999999999996,"5min":0.54700000000000004,"15min":0.53700000000000003},"min":{"1min":0.47899999999999998,"5min":0.44,"15min":0.44},"max":{"1min":0.70499999999999996,"5min":0.78000000000000003,"15min":0.78000000000000003},"last":0.64400000000000002}]},{"osd":2,"last update":"Wed Sep 11 07:40:27 2024","interfaces":[{"interface":"back","average":{"1min":0.77500000000000002,"5min":0.77300000000000002,"15min":0.76100000000000001},"min":{"1min":0.623,"5min":0.58799999999999997,"15min":0.58799999999999997},"max":{"1min":0.96599999999999997,"5min":1.518,"15min":1.518},"last":0.80700000000000005},{"interface":"front","average":{"1min":0.70799999999999996,"5min":0.745,"15min":0.73099999999999998},"min":{"1min":0.57999999999999996,"5min":0.57999999999999996,"15min":0.57999999999999996},"max":{"1min":0.96499999999999997,"5min":1.498,"15min":1.498},"last":0.75700000000000001}]},{"osd":3,"last update":"Wed Sep 11 07:40:15 2024","interfaces":[{"interface":"back","average":{"1min":0.751,"5min":0.746,"15min":0.74199999999999999},"min":{"1min":0.55200000000000005,"5min":0.55200000000000005,"15min":0.55200000000000005},"max":{"1min":1.1020000000000001,"5min":1.1020000000000001,"15min":1.1020000000000001},"last":0.69599999999999995},{"interface":"front","average":{"1min":0.75700000000000001,"5min":0.81000000000000005,"15min":0.82399999999999995},"min":{"1min":0.60199999999999998,"5min":0.60199999999999998,"15min":0.60199999999999998},"max":{"1min":0.83499999999999996,"5min":1.4490000000000001,"15min":1.4490000000000001},"last":0.876}]},{"osd":4,"last update":"Wed Sep 11 07:40:08 2024","interfaces":[{"interface":"back","average":{"1min":0.87,"5min":0.873,"15min":0.873},"min":{"1min":0.69799999999999995,"5min":0.65300000000000002,"15min":0.65300000000000002},"max":{"1min":0.93600000000000005,"5min":0.98799999999999999,"15min":0.98799999999999999},"last":1.052},{"interface":"front","average":{"1min":0.91100000000000003,"5min":0.91100000000000003,"15min":0.91100000000000003},"min":{"1min":0.78900000000000003,"5min":0.78900000000000003,"15min":0.78900000000000003},"max":{"1min":1.0489999999999999,"5min":1.0629999999999999,"15min":1.0629999999999999},"last":0.999}]},{"osd":5,"last update":"Wed Sep 11 07:39:58 2024","interfaces":[{"interface":"back","average":{"1min":0.83199999999999996,"5min":0.83199999999999996,"15min":0.83199999999999996},"min":{"1min":0.69399999999999995,"5min":0.69399999999999995,"15min":0.69399999999999995},"max":{"1min":1.028,"5min":1.028,"15min":1.028},"last":0.92500000000000004},{"interface":"front","average":{"1min":0.86499999999999999,"5min":0.86499999999999999,"15min":0.86499999999999999},"min":{"1min":0.70599999999999996,"5min":0.70599999999999996,"15min":0.70599999999999996},"max":{"1min":0.997,"5min":0.997,"15min":0.997},"last":0.94999999999999996}]}]},{"osd":0,"up_from":8,"seq":34359738443,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":297704,"kb_used_data":344,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93447448,"statfs":{"total":95995035648,"available":95690186752,"internally_reserved":0,"allocated":352256,"data_stored":133743,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"hb_peers":[1,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":1,"last update":"Wed Sep 11 07:39:33 2024","interfaces":[{"interface":"back","average":{"1min":0.59999999999999998,"5min":0.53100000000000003,"15min":0.52600000000000002},"min":{"1min":0.45100000000000001,"5min":0.42699999999999999,"15min":0.42699999999999999},"max":{"1min":1.1279999999999999,"5min":1.1279999999999999,"15min":1.1279999999999999},"last":0.47499999999999998},{"interface":"front","average":{"1min":0.626,"5min":0.57199999999999995,"15min":0.56799999999999995},"min":{"1min":0.40999999999999998,"5min":0.40999999999999998,"15min":0.40999999999999998},"max":{"1min":1.3300000000000001,"5min":1.3300000000000001,"15min":1.3300000000000001},"last":0.57799999999999996}]},{"osd":2,"last update":"Wed Sep 11 07:40:20 2024","interfaces":[{"interface":"back","average":{"1min":0.70099999999999996,"5min":0.71499999999999997,"15min":0.71299999999999997},"min":{"1min":0.54300000000000004,"5min":0.54300000000000004,"15min":0.54300000000000004},"max":{"1min":0.83499999999999996,"5min":1.218,"15min":1.218},"last":0.64600000000000002},{"interface":"front","average":{"1min":0.76200000000000001,"5min":0.76200000000000001,"15min":0.73999999999999999},"min":{"1min":0.60899999999999999,"5min":0.60899999999999999,"15min":0.60899999999999999},"max":{"1min":0.96399999999999997,"5min":1.2509999999999999,"15min":1.2509999999999999},"last":0.74199999999999999}]},{"osd":3,"last update":"Wed Sep 11 07:40:17 2024","interfaces":[{"interface":"back","average":{"1min":0.70699999999999996,"5min":0.73899999999999999,"15min":0.74099999999999999},"min":{"1min":0.55200000000000005,"5min":0.55200000000000005,"15min":0.55200000000000005},"max":{"1min":0.83799999999999997,"5min":1.3520000000000001,"15min":1.3520000000000001},"last":0.55700000000000005},{"interface":"front","average":{"1min":0.78400000000000003,"5min":0.81000000000000005,"15min":0.80400000000000005},"min":{"1min":0.65600000000000003,"5min":0.63500000000000001,"15min":0.63500000000000001},"max":{"1min":0.95399999999999996,"5min":1.333,"15min":1.333},"last":0.68799999999999994}]},{"osd":4,"last update":"Wed Sep 11 07:40:03 2024","interfaces":[{"interface":"back","average":{"1min":0.90500000000000003,"5min":0.86499999999999999,"15min":0.85899999999999999},"min":{"1min":0.76700000000000002,"5min":0.73599999999999999,"15min":0.73599999999999999},"max":{"1min":1.548,"5min":1.548,"15min":1.548},"last":0.76800000000000002},{"interface":"front","average":{"1min":0.91300000000000003,"5min":0.90900000000000003,"15min":0.90900000000000003},"min":{"1min":0.78300000000000003,"5min":0.72699999999999998,"15min":0.72699999999999998},"max":{"1min":1.119,"5min":1.119,"15min":1.119},"last":0.79500000000000004}]},{"osd":5,"last update":"Wed Sep 11 07:40:03 2024","interfaces":[{"interface":"back","average":{"1min":0.91300000000000003,"5min":0.91300000000000003,"15min":0.91300000000000003},"min":{"1min":0.72299999999999998,"5min":0.72299999999999998,"15min":0.72299999999999998},"max":{"1min":1.6140000000000001,"5min":1.6140000000000001,"15min":1.6140000000000001},"last":0.71299999999999997},{"interface":"front","average":{"1min":0.95999999999999996,"5min":0.95999999999999996,"15min":0.95999999999999996},"min":{"1min":0.74299999999999999,"5min":0.74299999999999999,"15min":0.74299999999999999},"max":{"1min":1.585,"5min":1.585,"15min":1.585},"last":0.84099999999999997}]}]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":4,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":5,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-09-11T07:40:37.771 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph pg dump --format=json 2024-09-11T07:40:38.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:38 smithi150 bash[22110]: audit 2024-09-11T07:40:36.980566+0000 mgr.a (mgr.14150) 339 : audit [DBG] from='client.14484 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T07:40:38.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:38 smithi150 bash[22110]: cluster 2024-09-11T07:40:37.131491+0000 mgr.a (mgr.14150) 340 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:39.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:38 smithi181 bash[22002]: audit 2024-09-11T07:40:36.980566+0000 mgr.a (mgr.14150) 339 : audit [DBG] from='client.14484 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T07:40:39.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:38 smithi181 bash[22002]: cluster 2024-09-11T07:40:37.131491+0000 mgr.a (mgr.14150) 340 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:39.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:38 smithi115 bash[18678]: audit 2024-09-11T07:40:36.980566+0000 mgr.a (mgr.14150) 339 : audit [DBG] from='client.14484 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T07:40:39.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:38 smithi115 bash[18678]: cluster 2024-09-11T07:40:37.131491+0000 mgr.a (mgr.14150) 340 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:40.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:40 smithi150 bash[22110]: cluster 2024-09-11T07:40:39.132063+0000 mgr.a (mgr.14150) 341 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:41.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:40 smithi181 bash[22002]: cluster 2024-09-11T07:40:39.132063+0000 mgr.a (mgr.14150) 341 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:41.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:40 smithi115 bash[18678]: cluster 2024-09-11T07:40:39.132063+0000 mgr.a (mgr.14150) 341 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:42.502 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:40:42.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:42 smithi150 bash[22110]: cluster 2024-09-11T07:40:41.132589+0000 mgr.a (mgr.14150) 342 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:43.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:42 smithi181 bash[22002]: cluster 2024-09-11T07:40:41.132589+0000 mgr.a (mgr.14150) 342 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:43.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:42 smithi115 bash[18678]: cluster 2024-09-11T07:40:41.132589+0000 mgr.a (mgr.14150) 342 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:44.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:44 smithi150 bash[22110]: cluster 2024-09-11T07:40:43.133145+0000 mgr.a (mgr.14150) 343 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:45.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:44 smithi181 bash[22002]: cluster 2024-09-11T07:40:43.133145+0000 mgr.a (mgr.14150) 343 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:45.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:44 smithi115 bash[18678]: cluster 2024-09-11T07:40:43.133145+0000 mgr.a (mgr.14150) 343 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:46.143 INFO:teuthology.orchestra.run.smithi115.stdout: 2024-09-11T07:40:46.144 INFO:teuthology.orchestra.run.smithi115.stderr:dumped all 2024-09-11T07:40:46.908 INFO:teuthology.orchestra.run.smithi115.stdout:{"pg_ready":true,"pg_map":{"version":307,"stamp":"2024-09-11T07:40:45.133441+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":92,"ondisk_log_size":92,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":3,"kb":562470912,"kb_used":1787948,"kb_used_data":3792,"kb_used_omap":9,"kb_used_meta":1784054,"kb_avail":560682964,"statfs":{"total":575970213888,"available":574139355136,"internally_reserved":0,"allocated":3883008,"data_stored":2572617,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":10224,"internal_metadata":1826871312},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"12.003283"},"pg_stats":[{"pgid":"1.0","version":"21'92","reported_seq":68,"reported_epoch":39,"state":"active+clean","last_fresh":"2024-09-11T07:38:58.794156+0000","last_change":"2024-09-11T07:38:58.794156+0000","last_active":"2024-09-11T07:38:58.794156+0000","last_peered":"2024-09-11T07:38:58.794156+0000","last_clean":"2024-09-11T07:38:58.794156+0000","last_became_active":"2024-09-11T07:38:58.784004+0000","last_became_peered":"2024-09-11T07:38:58.784004+0000","last_unstale":"2024-09-11T07:38:58.794156+0000","last_undegraded":"2024-09-11T07:38:58.794156+0000","last_fullsized":"2024-09-11T07:38:58.794156+0000","mapping_epoch":38,"log_start":"0'0","ondisk_log_start":"0'0","created":19,"last_epoch_clean":39,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-11T07:36:19.659354+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-11T07:36:19.659354+0000","last_clean_scrub_stamp":"2024-09-11T07:36:19.659354+0000","objects_scrubbed":0,"log_size":92,"log_dups_size":0,"ondisk_log_size":92,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-09-12T17:46:26.343796+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[3,5,2],"acting":[3,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":3,"acting_primary":3,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":3563520,"data_stored":3542208,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":92,"ondisk_log_size":92,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":37,"seq":158913789977,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":298280,"kb_used_data":920,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93446872,"statfs":{"total":95995035648,"available":95689596928,"internally_reserved":0,"allocated":942080,"data_stored":723796,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Wed Sep 11 07:39:59 2024","interfaces":[{"interface":"back","average":{"1min":0.76000000000000001,"5min":0.76000000000000001,"15min":0.76000000000000001},"min":{"1min":0.54800000000000004,"5min":0.54800000000000004,"15min":0.54800000000000004},"max":{"1min":1.091,"5min":1.091,"15min":1.091},"last":0.60399999999999998},{"interface":"front","average":{"1min":0.74299999999999999,"5min":0.74299999999999999,"15min":0.74299999999999999},"min":{"1min":0.61699999999999999,"5min":0.61699999999999999,"15min":0.61699999999999999},"max":{"1min":1.002,"5min":1.002,"15min":1.002},"last":0.69099999999999995}]},{"osd":1,"last update":"Wed Sep 11 07:39:59 2024","interfaces":[{"interface":"back","average":{"1min":0.79200000000000004,"5min":0.79200000000000004,"15min":0.79200000000000004},"min":{"1min":0.58999999999999997,"5min":0.58999999999999997,"15min":0.58999999999999997},"max":{"1min":1.339,"5min":1.339,"15min":1.339},"last":0.73599999999999999},{"interface":"front","average":{"1min":0.79800000000000004,"5min":0.79800000000000004,"15min":0.79800000000000004},"min":{"1min":0.64200000000000002,"5min":0.64200000000000002,"15min":0.64200000000000002},"max":{"1min":1.3,"5min":1.3,"15min":1.3},"last":0.77300000000000002}]},{"osd":2,"last update":"Wed Sep 11 07:39:59 2024","interfaces":[{"interface":"back","average":{"1min":0.84299999999999997,"5min":0.84299999999999997,"15min":0.84299999999999997},"min":{"1min":0.67000000000000004,"5min":0.67000000000000004,"15min":0.67000000000000004},"max":{"1min":1.0840000000000001,"5min":1.0840000000000001,"15min":1.0840000000000001},"last":0.83799999999999997},{"interface":"front","average":{"1min":0.89200000000000002,"5min":0.89200000000000002,"15min":0.89200000000000002},"min":{"1min":0.64600000000000002,"5min":0.64600000000000002,"15min":0.64600000000000002},"max":{"1min":1.611,"5min":1.611,"15min":1.611},"last":0.93400000000000005}]},{"osd":3,"last update":"Wed Sep 11 07:39:59 2024","interfaces":[{"interface":"back","average":{"1min":0.82999999999999996,"5min":0.82999999999999996,"15min":0.82999999999999996},"min":{"1min":0.629,"5min":0.629,"15min":0.629},"max":{"1min":1.268,"5min":1.268,"15min":1.268},"last":0.81499999999999995},{"interface":"front","average":{"1min":0.89700000000000002,"5min":0.89700000000000002,"15min":0.89700000000000002},"min":{"1min":0.75900000000000001,"5min":0.75900000000000001,"15min":0.75900000000000001},"max":{"1min":1.056,"5min":1.056,"15min":1.056},"last":0.90400000000000003}]},{"osd":4,"last update":"Wed Sep 11 07:39:59 2024","interfaces":[{"interface":"back","average":{"1min":0.83099999999999996,"5min":0.83099999999999996,"15min":0.83099999999999996},"min":{"1min":0.51600000000000001,"5min":0.51600000000000001,"15min":0.51600000000000001},"max":{"1min":1.1919999999999999,"5min":1.1919999999999999,"15min":1.1919999999999999},"last":0.86399999999999999},{"interface":"front","average":{"1min":0.90600000000000003,"5min":0.90600000000000003,"15min":0.90600000000000003},"min":{"1min":0.55700000000000005,"5min":0.55700000000000005,"15min":0.55700000000000005},"max":{"1min":1.4239999999999999,"5min":1.4239999999999999,"15min":1.4239999999999999},"last":0.88100000000000001}]}]},{"osd":4,"up_from":31,"seq":133143986211,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":297704,"kb_used_data":344,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93447448,"statfs":{"total":95995035648,"available":95690186752,"internally_reserved":0,"allocated":352256,"data_stored":133743,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Wed Sep 11 07:40:04 2024","interfaces":[{"interface":"back","average":{"1min":0.877,"5min":0.82099999999999995,"15min":0.81200000000000006},"min":{"1min":0.53800000000000003,"5min":0.53800000000000003,"15min":0.53800000000000003},"max":{"1min":1.0680000000000001,"5min":1.0680000000000001,"15min":1.0680000000000001},"last":0.96399999999999997},{"interface":"front","average":{"1min":0.81799999999999995,"5min":0.83799999999999997,"15min":0.84099999999999997},"min":{"1min":0.66900000000000004,"5min":0.66900000000000004,"15min":0.66900000000000004},"max":{"1min":0.98299999999999998,"5min":1.0620000000000001,"15min":1.0620000000000001},"last":0.98999999999999999}]},{"osd":1,"last update":"Wed Sep 11 07:40:04 2024","interfaces":[{"interface":"back","average":{"1min":0.82499999999999996,"5min":0.80400000000000005,"15min":0.80000000000000004},"min":{"1min":0.70999999999999996,"5min":0.60799999999999998,"15min":0.60799999999999998},"max":{"1min":1.028,"5min":1.028,"15min":1.028},"last":0.64800000000000002},{"interface":"front","average":{"1min":0.77600000000000002,"5min":0.76500000000000001,"15min":0.76300000000000001},"min":{"1min":0.61199999999999999,"5min":0.60799999999999998,"15min":0.60799999999999998},"max":{"1min":0.97299999999999998,"5min":0.97299999999999998,"15min":0.97299999999999998},"last":0.73299999999999998}]},{"osd":2,"last update":"Wed Sep 11 07:40:04 2024","interfaces":[{"interface":"back","average":{"1min":0.82699999999999996,"5min":0.81999999999999995,"15min":0.81899999999999995},"min":{"1min":0.66400000000000003,"5min":0.62,"15min":0.62},"max":{"1min":0.997,"5min":1.0469999999999999,"15min":1.0469999999999999},"last":0.92400000000000004},{"interface":"front","average":{"1min":0.93899999999999995,"5min":0.88800000000000001,"15min":0.88},"min":{"1min":0.79200000000000004,"5min":0.68799999999999994,"15min":0.68799999999999994},"max":{"1min":1.0449999999999999,"5min":1.0449999999999999,"15min":1.0449999999999999},"last":0.89900000000000002}]},{"osd":3,"last update":"Wed Sep 11 07:40:04 2024","interfaces":[{"interface":"back","average":{"1min":0.878,"5min":0.86899999999999999,"15min":0.86699999999999999},"min":{"1min":0.69599999999999995,"5min":0.64400000000000002,"15min":0.64400000000000002},"max":{"1min":0.98399999999999999,"5min":1.0720000000000001,"15min":1.0720000000000001},"last":0.85999999999999999},{"interface":"front","average":{"1min":0.90100000000000002,"5min":0.85799999999999998,"15min":0.85099999999999998},"min":{"1min":0.64100000000000001,"5min":0.64100000000000001,"15min":0.64100000000000001},"max":{"1min":1.024,"5min":1.0389999999999999,"15min":1.0389999999999999},"last":1.012}]},{"osd":5,"last update":"Wed Sep 11 07:39:56 2024","interfaces":[{"interface":"back","average":{"1min":0.82199999999999995,"5min":0.82199999999999995,"15min":0.82199999999999995},"min":{"1min":0.64800000000000002,"5min":0.64800000000000002,"15min":0.64800000000000002},"max":{"1min":0.995,"5min":0.995,"15min":0.995},"last":0.81100000000000005},{"interface":"front","average":{"1min":0.82199999999999995,"5min":0.82199999999999995,"15min":0.82199999999999995},"min":{"1min":0.64300000000000002,"5min":0.64300000000000002,"15min":0.64300000000000002},"max":{"1min":0.97399999999999998,"5min":0.97399999999999998,"15min":0.97399999999999998},"last":0.77400000000000002}]}]},{"osd":3,"up_from":25,"seq":107374182445,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":298280,"kb_used_data":924,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93446872,"statfs":{"total":95995035648,"available":95689596928,"internally_reserved":0,"allocated":946176,"data_stored":724111,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Wed Sep 11 07:40:17 2024","interfaces":[{"interface":"back","average":{"1min":0.748,"5min":0.71799999999999997,"15min":0.70899999999999996},"min":{"1min":0.54700000000000004,"5min":0.54700000000000004,"15min":0.54700000000000004},"max":{"1min":0.98199999999999998,"5min":0.98199999999999998,"15min":0.98199999999999998},"last":0.64300000000000002},{"interface":"front","average":{"1min":0.71199999999999997,"5min":0.73499999999999999,"15min":0.73299999999999998},"min":{"1min":0.52600000000000002,"5min":0.52400000000000002,"15min":0.52400000000000002},"max":{"1min":0.93400000000000005,"5min":1.0489999999999999,"15min":1.0489999999999999},"last":0.74099999999999999}]},{"osd":1,"last update":"Wed Sep 11 07:40:17 2024","interfaces":[{"interface":"back","average":{"1min":0.69499999999999995,"5min":0.73799999999999999,"15min":0.751},"min":{"1min":0.44400000000000001,"5min":0.44400000000000001,"15min":0.44400000000000001},"max":{"1min":0.93799999999999994,"5min":0.97299999999999998,"15min":0.97299999999999998},"last":0.67400000000000004},{"interface":"front","average":{"1min":0.73999999999999999,"5min":0.76000000000000001,"15min":0.75800000000000001},"min":{"1min":0.57499999999999996,"5min":0.54600000000000004,"15min":0.54600000000000004},"max":{"1min":0.98299999999999998,"5min":1.0149999999999999,"15min":1.0149999999999999},"last":0.78200000000000003}]},{"osd":2,"last update":"Wed Sep 11 07:40:17 2024","interfaces":[{"interface":"back","average":{"1min":0.57599999999999996,"5min":0.61799999999999999,"15min":0.622},"min":{"1min":0.47299999999999998,"5min":0.47299999999999998,"15min":0.47299999999999998},"max":{"1min":0.67800000000000005,"5min":0.88800000000000001,"15min":0.88800000000000001},"last":0.57499999999999996},{"interface":"front","average":{"1min":0.65900000000000003,"5min":0.69499999999999995,"15min":0.70099999999999996},"min":{"1min":0.52800000000000002,"5min":0.52800000000000002,"15min":0.52800000000000002},"max":{"1min":0.77700000000000002,"5min":0.90300000000000002,"15min":0.90300000000000002},"last":0.85399999999999998}]},{"osd":4,"last update":"Wed Sep 11 07:40:06 2024","interfaces":[{"interface":"back","average":{"1min":0.81000000000000005,"5min":0.84599999999999997,"15min":0.85199999999999998},"min":{"1min":0.627,"5min":0.627,"15min":0.627},"max":{"1min":0.96399999999999997,"5min":1.159,"15min":1.159},"last":0.83099999999999996},{"interface":"front","average":{"1min":0.85899999999999999,"5min":0.86899999999999999,"15min":0.871},"min":{"1min":0.755,"5min":0.59799999999999998,"15min":0.59799999999999998},"max":{"1min":0.95699999999999996,"5min":1.1100000000000001,"15min":1.1100000000000001},"last":0.90400000000000003}]},{"osd":5,"last update":"Wed Sep 11 07:39:59 2024","interfaces":[{"interface":"back","average":{"1min":0.86499999999999999,"5min":0.86499999999999999,"15min":0.86499999999999999},"min":{"1min":0.67800000000000005,"5min":0.67800000000000005,"15min":0.67800000000000005},"max":{"1min":0.97799999999999998,"5min":0.97799999999999998,"15min":0.97799999999999998},"last":0.93899999999999995},{"interface":"front","average":{"1min":0.88900000000000001,"5min":0.88900000000000001,"15min":0.88900000000000001},"min":{"1min":0.76500000000000001,"5min":0.76500000000000001,"15min":0.76500000000000001},"max":{"1min":1.04,"5min":1.04,"15min":1.04},"last":0.95699999999999996}]}]},{"osd":2,"up_from":18,"seq":77309411385,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":298280,"kb_used_data":920,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93446872,"statfs":{"total":95995035648,"available":95689596928,"internally_reserved":0,"allocated":942080,"data_stored":723796,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Wed Sep 11 07:40:30 2024","interfaces":[{"interface":"back","average":{"1min":0.73399999999999999,"5min":0.81999999999999995,"15min":0.81799999999999995},"min":{"1min":0.56599999999999995,"5min":0.54500000000000004,"15min":0.54500000000000004},"max":{"1min":0.95899999999999996,"5min":6.2290000000000001,"15min":6.2290000000000001},"last":0.85299999999999998},{"interface":"front","average":{"1min":0.73299999999999998,"5min":0.79100000000000004,"15min":0.75900000000000001},"min":{"1min":0.502,"5min":0.502,"15min":0.502},"max":{"1min":1.1359999999999999,"5min":6.3140000000000001,"15min":6.3140000000000001},"last":0.81100000000000005}]},{"osd":1,"last update":"Wed Sep 11 07:40:30 2024","interfaces":[{"interface":"back","average":{"1min":0.77400000000000002,"5min":0.75,"15min":0.752},"min":{"1min":0.57399999999999995,"5min":0.57399999999999995,"15min":0.57399999999999995},"max":{"1min":1.1850000000000001,"5min":1.1850000000000001,"15min":1.1850000000000001},"last":0.82699999999999996},{"interface":"front","average":{"1min":0.82299999999999995,"5min":0.78000000000000003,"15min":0.77000000000000002},"min":{"1min":0.53800000000000003,"5min":0.53800000000000003,"15min":0.53800000000000003},"max":{"1min":0.98999999999999999,"5min":0.98999999999999999,"15min":0.98999999999999999},"last":0.71199999999999997}]},{"osd":3,"last update":"Wed Sep 11 07:40:17 2024","interfaces":[{"interface":"back","average":{"1min":0.74299999999999999,"5min":0.65400000000000003,"15min":0.64000000000000001},"min":{"1min":0.56299999999999994,"5min":0.498,"15min":0.498},"max":{"1min":0.92100000000000004,"5min":0.92100000000000004,"15min":0.92100000000000004},"last":0.60999999999999999},{"interface":"front","average":{"1min":0.71599999999999997,"5min":0.66400000000000003,"15min":0.65200000000000002},"min":{"1min":0.50600000000000001,"5min":0.47499999999999998,"15min":0.47499999999999998},"max":{"1min":0.93300000000000005,"5min":0.93300000000000005,"15min":0.93300000000000005},"last":0.54300000000000004}]},{"osd":4,"last update":"Wed Sep 11 07:40:06 2024","interfaces":[{"interface":"back","average":{"1min":0.84599999999999997,"5min":0.82199999999999995,"15min":0.81799999999999995},"min":{"1min":0.67000000000000004,"5min":0.64400000000000002,"15min":0.64400000000000002},"max":{"1min":0.96499999999999997,"5min":0.96499999999999997,"15min":0.96499999999999997},"last":0.67200000000000004},{"interface":"front","average":{"1min":0.90600000000000003,"5min":0.84099999999999997,"15min":0.82999999999999996},"min":{"1min":0.78500000000000003,"5min":0.60999999999999999,"15min":0.60999999999999999},"max":{"1min":0.97899999999999998,"5min":0.98699999999999999,"15min":0.98699999999999999},"last":0.73099999999999998}]},{"osd":5,"last update":"Wed Sep 11 07:39:57 2024","interfaces":[{"interface":"back","average":{"1min":0.89900000000000002,"5min":0.89900000000000002,"15min":0.89900000000000002},"min":{"1min":0.73899999999999999,"5min":0.73899999999999999,"15min":0.73899999999999999},"max":{"1min":1.0269999999999999,"5min":1.0269999999999999,"15min":1.0269999999999999},"last":0.78500000000000003},{"interface":"front","average":{"1min":0.90200000000000002,"5min":0.90200000000000002,"15min":0.90200000000000002},"min":{"1min":0.749,"5min":0.749,"15min":0.749},"max":{"1min":1.014,"5min":1.014,"15min":1.014},"last":0.76000000000000001}]}]},{"osd":1,"up_from":13,"seq":55834574915,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":297700,"kb_used_data":340,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93447452,"statfs":{"total":95995035648,"available":95690190848,"internally_reserved":0,"allocated":348160,"data_stored":133428,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Wed Sep 11 07:40:40 2024","interfaces":[{"interface":"back","average":{"1min":0.50600000000000001,"5min":0.52100000000000002,"15min":0.51600000000000001},"min":{"1min":0.33600000000000002,"5min":0.33600000000000002,"15min":0.33600000000000002},"max":{"1min":0.625,"5min":0.77100000000000002,"15min":0.77100000000000002},"last":0.57099999999999995},{"interface":"front","average":{"1min":0.58199999999999996,"5min":0.55700000000000005,"15min":0.54000000000000004},"min":{"1min":0.44400000000000001,"5min":0.44,"15min":0.44},"max":{"1min":0.73099999999999998,"5min":0.78000000000000003,"15min":0.78000000000000003},"last":0.52400000000000002}]},{"osd":2,"last update":"Wed Sep 11 07:40:27 2024","interfaces":[{"interface":"back","average":{"1min":0.77500000000000002,"5min":0.77300000000000002,"15min":0.76100000000000001},"min":{"1min":0.623,"5min":0.58799999999999997,"15min":0.58799999999999997},"max":{"1min":0.96599999999999997,"5min":1.518,"15min":1.518},"last":0.90500000000000003},{"interface":"front","average":{"1min":0.70799999999999996,"5min":0.745,"15min":0.73099999999999998},"min":{"1min":0.57999999999999996,"5min":0.57999999999999996,"15min":0.57999999999999996},"max":{"1min":0.96499999999999997,"5min":1.498,"15min":1.498},"last":0.71799999999999997}]},{"osd":3,"last update":"Wed Sep 11 07:40:15 2024","interfaces":[{"interface":"back","average":{"1min":0.751,"5min":0.746,"15min":0.74199999999999999},"min":{"1min":0.55200000000000005,"5min":0.55200000000000005,"15min":0.55200000000000005},"max":{"1min":1.1020000000000001,"5min":1.1020000000000001,"15min":1.1020000000000001},"last":0.77000000000000002},{"interface":"front","average":{"1min":0.75700000000000001,"5min":0.81000000000000005,"15min":0.82399999999999995},"min":{"1min":0.60199999999999998,"5min":0.60199999999999998,"15min":0.60199999999999998},"max":{"1min":0.83499999999999996,"5min":1.4490000000000001,"15min":1.4490000000000001},"last":0.79900000000000004}]},{"osd":4,"last update":"Wed Sep 11 07:40:08 2024","interfaces":[{"interface":"back","average":{"1min":0.87,"5min":0.873,"15min":0.873},"min":{"1min":0.69799999999999995,"5min":0.65300000000000002,"15min":0.65300000000000002},"max":{"1min":0.93600000000000005,"5min":0.98799999999999999,"15min":0.98799999999999999},"last":0.96899999999999997},{"interface":"front","average":{"1min":0.91100000000000003,"5min":0.91100000000000003,"15min":0.91100000000000003},"min":{"1min":0.78900000000000003,"5min":0.78900000000000003,"15min":0.78900000000000003},"max":{"1min":1.0489999999999999,"5min":1.0629999999999999,"15min":1.0629999999999999},"last":0.94099999999999995}]},{"osd":5,"last update":"Wed Sep 11 07:39:58 2024","interfaces":[{"interface":"back","average":{"1min":0.83199999999999996,"5min":0.83199999999999996,"15min":0.83199999999999996},"min":{"1min":0.69399999999999995,"5min":0.69399999999999995,"15min":0.69399999999999995},"max":{"1min":1.028,"5min":1.028,"15min":1.028},"last":0.86799999999999999},{"interface":"front","average":{"1min":0.86499999999999999,"5min":0.86499999999999999,"15min":0.86499999999999999},"min":{"1min":0.70599999999999996,"5min":0.70599999999999996,"15min":0.70599999999999996},"max":{"1min":0.997,"5min":0.997,"15min":0.997},"last":1.012}]}]},{"osd":0,"up_from":8,"seq":34359738445,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":297704,"kb_used_data":344,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93447448,"statfs":{"total":95995035648,"available":95690186752,"internally_reserved":0,"allocated":352256,"data_stored":133743,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"hb_peers":[1,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":1,"last update":"Wed Sep 11 07:40:36 2024","interfaces":[{"interface":"back","average":{"1min":0.53500000000000003,"5min":0.53300000000000003,"15min":0.52700000000000002},"min":{"1min":0.36099999999999999,"5min":0.36099999999999999,"15min":0.36099999999999999},"max":{"1min":0.75600000000000001,"5min":1.1279999999999999,"15min":1.1279999999999999},"last":0.50900000000000001},{"interface":"front","average":{"1min":0.57599999999999996,"5min":0.57399999999999995,"15min":0.56799999999999995},"min":{"1min":0.33800000000000002,"5min":0.33800000000000002,"15min":0.33800000000000002},"max":{"1min":0.71299999999999997,"5min":1.3300000000000001,"15min":1.3300000000000001},"last":0.60199999999999998}]},{"osd":2,"last update":"Wed Sep 11 07:40:20 2024","interfaces":[{"interface":"back","average":{"1min":0.70099999999999996,"5min":0.71499999999999997,"15min":0.71299999999999997},"min":{"1min":0.54300000000000004,"5min":0.54300000000000004,"15min":0.54300000000000004},"max":{"1min":0.83499999999999996,"5min":1.218,"15min":1.218},"last":0.65000000000000002},{"interface":"front","average":{"1min":0.76200000000000001,"5min":0.76200000000000001,"15min":0.73999999999999999},"min":{"1min":0.60899999999999999,"5min":0.60899999999999999,"15min":0.60899999999999999},"max":{"1min":0.96399999999999997,"5min":1.2509999999999999,"15min":1.2509999999999999},"last":0.73999999999999999}]},{"osd":3,"last update":"Wed Sep 11 07:40:17 2024","interfaces":[{"interface":"back","average":{"1min":0.70699999999999996,"5min":0.73899999999999999,"15min":0.74099999999999999},"min":{"1min":0.55200000000000005,"5min":0.55200000000000005,"15min":0.55200000000000005},"max":{"1min":0.83799999999999997,"5min":1.3520000000000001,"15min":1.3520000000000001},"last":0.86499999999999999},{"interface":"front","average":{"1min":0.78400000000000003,"5min":0.81000000000000005,"15min":0.80400000000000005},"min":{"1min":0.65600000000000003,"5min":0.63500000000000001,"15min":0.63500000000000001},"max":{"1min":0.95399999999999996,"5min":1.333,"15min":1.333},"last":0.91100000000000003}]},{"osd":4,"last update":"Wed Sep 11 07:40:03 2024","interfaces":[{"interface":"back","average":{"1min":0.90500000000000003,"5min":0.86499999999999999,"15min":0.85899999999999999},"min":{"1min":0.76700000000000002,"5min":0.73599999999999999,"15min":0.73599999999999999},"max":{"1min":1.548,"5min":1.548,"15min":1.548},"last":0.77800000000000002},{"interface":"front","average":{"1min":0.91300000000000003,"5min":0.90900000000000003,"15min":0.90900000000000003},"min":{"1min":0.78300000000000003,"5min":0.72699999999999998,"15min":0.72699999999999998},"max":{"1min":1.119,"5min":1.119,"15min":1.119},"last":0.83899999999999997}]},{"osd":5,"last update":"Wed Sep 11 07:40:03 2024","interfaces":[{"interface":"back","average":{"1min":0.91300000000000003,"5min":0.91300000000000003,"15min":0.91300000000000003},"min":{"1min":0.72299999999999998,"5min":0.72299999999999998,"15min":0.72299999999999998},"max":{"1min":1.6140000000000001,"5min":1.6140000000000001,"15min":1.6140000000000001},"last":0.93200000000000005},{"interface":"front","average":{"1min":0.95999999999999996,"5min":0.95999999999999996,"15min":0.95999999999999996},"min":{"1min":0.74299999999999999,"5min":0.74299999999999999,"15min":0.74299999999999999},"max":{"1min":1.585,"5min":1.585,"15min":1.585},"last":0.97499999999999998}]}]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":4,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":5,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-09-11T07:40:46.909 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-09-11T07:40:46.909 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-09-11T07:40:46.909 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-09-11T07:40:46.910 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- ceph health --format=json 2024-09-11T07:40:46.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:46 smithi150 bash[22110]: cluster 2024-09-11T07:40:45.133676+0000 mgr.a (mgr.14150) 344 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:47.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:46 smithi181 bash[22002]: cluster 2024-09-11T07:40:45.133676+0000 mgr.a (mgr.14150) 344 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:47.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:46 smithi115 bash[18678]: cluster 2024-09-11T07:40:45.133676+0000 mgr.a (mgr.14150) 344 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:48.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:47 smithi181 bash[22002]: audit 2024-09-11T07:40:46.138476+0000 mgr.a (mgr.14150) 345 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T07:40:48.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:47 smithi115 bash[18678]: audit 2024-09-11T07:40:46.138476+0000 mgr.a (mgr.14150) 345 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T07:40:48.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:47 smithi150 bash[22110]: audit 2024-09-11T07:40:46.138476+0000 mgr.a (mgr.14150) 345 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T07:40:49.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:48 smithi181 bash[22002]: cluster 2024-09-11T07:40:47.134230+0000 mgr.a (mgr.14150) 346 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:49.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:48 smithi115 bash[18678]: cluster 2024-09-11T07:40:47.134230+0000 mgr.a (mgr.14150) 346 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:49.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:48 smithi150 bash[22110]: cluster 2024-09-11T07:40:47.134230+0000 mgr.a (mgr.14150) 346 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:51.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:50 smithi181 bash[22002]: cluster 2024-09-11T07:40:49.134730+0000 mgr.a (mgr.14150) 347 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:51.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:50 smithi115 bash[18678]: cluster 2024-09-11T07:40:49.134730+0000 mgr.a (mgr.14150) 347 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:51.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:50 smithi150 bash[22110]: cluster 2024-09-11T07:40:49.134730+0000 mgr.a (mgr.14150) 347 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:51.648 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:40:52.969 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:52 smithi115 bash[18678]: cluster 2024-09-11T07:40:51.135176+0000 mgr.a (mgr.14150) 348 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:53.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:52 smithi181 bash[22002]: cluster 2024-09-11T07:40:51.135176+0000 mgr.a (mgr.14150) 348 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:53.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:52 smithi150 bash[22110]: cluster 2024-09-11T07:40:51.135176+0000 mgr.a (mgr.14150) 348 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:55.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:54 smithi181 bash[22002]: cluster 2024-09-11T07:40:53.135702+0000 mgr.a (mgr.14150) 349 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:55.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:54 smithi115 bash[18678]: cluster 2024-09-11T07:40:53.135702+0000 mgr.a (mgr.14150) 349 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:55.183 INFO:teuthology.orchestra.run.smithi115.stdout: 2024-09-11T07:40:55.184 INFO:teuthology.orchestra.run.smithi115.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-09-11T07:40:55.195 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:54 smithi150 bash[22110]: cluster 2024-09-11T07:40:53.135702+0000 mgr.a (mgr.14150) 349 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:55.949 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-09-11T07:40:55.950 INFO:tasks.cephadm:Setup complete, yielding 2024-09-11T07:40:55.950 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-11T07:40:55.967 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi115.front.sepia.ceph.com 2024-09-11T07:40:55.968 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1973416c-700f-11ef-bcea-c7b262605968 -- bash -c 'set -ex 2024-09-11T07:40:55.968 DEBUG:teuthology.orchestra.run.smithi115:> HOSTNAMES=$(ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"') 2024-09-11T07:40:55.968 DEBUG:teuthology.orchestra.run.smithi115:> for host in $HOSTNAMES; do 2024-09-11T07:40:55.969 DEBUG:teuthology.orchestra.run.smithi115:> # find the hostname for "host.c" which will have no mgr 2024-09-11T07:40:55.969 DEBUG:teuthology.orchestra.run.smithi115:> HAS_MGRS=$(ceph orch ps --hostname ${host} --format json | jq '"'"'any(.daemon_type == "mgr")'"'"') 2024-09-11T07:40:55.969 DEBUG:teuthology.orchestra.run.smithi115:> if [ "$HAS_MGRS" == "false" ]; then 2024-09-11T07:40:55.969 DEBUG:teuthology.orchestra.run.smithi115:> HOST_C="${host}" 2024-09-11T07:40:55.969 DEBUG:teuthology.orchestra.run.smithi115:> fi 2024-09-11T07:40:55.969 DEBUG:teuthology.orchestra.run.smithi115:> done 2024-09-11T07:40:55.969 DEBUG:teuthology.orchestra.run.smithi115:> # now drain that host 2024-09-11T07:40:55.969 DEBUG:teuthology.orchestra.run.smithi115:> ceph orch host drain $HOST_C --zap-osd-devices 2024-09-11T07:40:55.970 DEBUG:teuthology.orchestra.run.smithi115:> # wait for drain to complete 2024-09-11T07:40:55.970 DEBUG:teuthology.orchestra.run.smithi115:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-11T07:40:55.970 DEBUG:teuthology.orchestra.run.smithi115:> while [ "$HOST_C_DAEMONS" != "No daemons reported" ]; do 2024-09-11T07:40:55.970 DEBUG:teuthology.orchestra.run.smithi115:> sleep 15 2024-09-11T07:40:55.970 DEBUG:teuthology.orchestra.run.smithi115:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-11T07:40:55.970 DEBUG:teuthology.orchestra.run.smithi115:> done 2024-09-11T07:40:55.970 DEBUG:teuthology.orchestra.run.smithi115:> # we want to check the ability to remove the host from 2024-09-11T07:40:55.970 DEBUG:teuthology.orchestra.run.smithi115:> # the CRUSH map, so we should first verify the host is in 2024-09-11T07:40:55.971 DEBUG:teuthology.orchestra.run.smithi115:> # the CRUSH map. 2024-09-11T07:40:55.971 DEBUG:teuthology.orchestra.run.smithi115:> ceph osd getcrushmap -o compiled-crushmap 2024-09-11T07:40:55.971 DEBUG:teuthology.orchestra.run.smithi115:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-11T07:40:55.971 DEBUG:teuthology.orchestra.run.smithi115:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-11T07:40:55.971 DEBUG:teuthology.orchestra.run.smithi115:> if ! grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-11T07:40:55.971 DEBUG:teuthology.orchestra.run.smithi115:> printf "Expected to see $HOST_C in CRUSH map. Saw:\n\n$CRUSH_MAP" 2024-09-11T07:40:55.971 DEBUG:teuthology.orchestra.run.smithi115:> exit 1 2024-09-11T07:40:55.971 DEBUG:teuthology.orchestra.run.smithi115:> fi 2024-09-11T07:40:55.972 DEBUG:teuthology.orchestra.run.smithi115:> # If the drain was successful, we should be able to remove the 2024-09-11T07:40:55.972 DEBUG:teuthology.orchestra.run.smithi115:> # host without force with no issues. If there are still daemons 2024-09-11T07:40:55.972 DEBUG:teuthology.orchestra.run.smithi115:> # we will get a response telling us to drain the host and a 2024-09-11T07:40:55.972 DEBUG:teuthology.orchestra.run.smithi115:> # non-zero return code 2024-09-11T07:40:55.972 DEBUG:teuthology.orchestra.run.smithi115:> ceph orch host rm $HOST_C --rm-crush-entry 2024-09-11T07:40:55.972 DEBUG:teuthology.orchestra.run.smithi115:> # verify we'"'"'ve successfully removed the host from the CRUSH map 2024-09-11T07:40:55.972 DEBUG:teuthology.orchestra.run.smithi115:> sleep 30 2024-09-11T07:40:55.972 DEBUG:teuthology.orchestra.run.smithi115:> ceph osd getcrushmap -o compiled-crushmap 2024-09-11T07:40:55.972 DEBUG:teuthology.orchestra.run.smithi115:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-11T07:40:55.972 DEBUG:teuthology.orchestra.run.smithi115:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-11T07:40:55.972 DEBUG:teuthology.orchestra.run.smithi115:> if grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-11T07:40:55.973 DEBUG:teuthology.orchestra.run.smithi115:> printf "Saw $HOST_C in CRUSH map after it should have been removed.\n\n$CRUSH_MAP" 2024-09-11T07:40:55.973 DEBUG:teuthology.orchestra.run.smithi115:> exit 1 2024-09-11T07:40:55.973 DEBUG:teuthology.orchestra.run.smithi115:> fi 2024-09-11T07:40:55.973 DEBUG:teuthology.orchestra.run.smithi115:> ' 2024-09-11T07:40:55.986 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:55 smithi115 bash[18678]: audit 2024-09-11T07:40:55.181072+0000 mon.a (mon.0) 548 : audit [DBG] from='client.? 172.21.15.115:0/442111630' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-11T07:40:56.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:55 smithi181 bash[22002]: audit 2024-09-11T07:40:55.181072+0000 mon.a (mon.0) 548 : audit [DBG] from='client.? 172.21.15.115:0/442111630' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-11T07:40:56.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:55 smithi150 bash[22110]: audit 2024-09-11T07:40:55.181072+0000 mon.a (mon.0) 548 : audit [DBG] from='client.? 172.21.15.115:0/442111630' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-11T07:40:57.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:56 smithi181 bash[22002]: cluster 2024-09-11T07:40:55.136190+0000 mgr.a (mgr.14150) 350 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:57.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:56 smithi115 bash[18678]: cluster 2024-09-11T07:40:55.136190+0000 mgr.a (mgr.14150) 350 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:57.195 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:56 smithi150 bash[22110]: cluster 2024-09-11T07:40:55.136190+0000 mgr.a (mgr.14150) 350 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:59.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:40:58 smithi181 bash[22002]: cluster 2024-09-11T07:40:57.136753+0000 mgr.a (mgr.14150) 351 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:59.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:40:58 smithi115 bash[18678]: cluster 2024-09-11T07:40:57.136753+0000 mgr.a (mgr.14150) 351 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:40:59.195 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:40:58 smithi150 bash[22110]: cluster 2024-09-11T07:40:57.136753+0000 mgr.a (mgr.14150) 351 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:41:00.720 INFO:teuthology.orchestra.run.smithi115.stderr:Inferring config /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/mon.a/config 2024-09-11T07:41:01.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:00 smithi181 bash[22002]: cluster 2024-09-11T07:40:59.137355+0000 mgr.a (mgr.14150) 352 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:41:01.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:00 smithi115 bash[18678]: cluster 2024-09-11T07:40:59.137355+0000 mgr.a (mgr.14150) 352 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:41:01.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:00 smithi150 bash[22110]: cluster 2024-09-11T07:40:59.137355+0000 mgr.a (mgr.14150) 352 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:41:03.033 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:02 smithi115 bash[18678]: cluster 2024-09-11T07:41:01.138041+0000 mgr.a (mgr.14150) 353 : cluster [DBG] pgmap v315: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:41:03.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:02 smithi181 bash[22002]: cluster 2024-09-11T07:41:01.138041+0000 mgr.a (mgr.14150) 353 : cluster [DBG] pgmap v315: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:41:03.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:02 smithi150 bash[22110]: cluster 2024-09-11T07:41:01.138041+0000 mgr.a (mgr.14150) 353 : cluster [DBG] pgmap v315: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:41:04.106 INFO:teuthology.orchestra.run.smithi115.stderr:++ ceph orch host ls --format json 2024-09-11T07:41:04.106 INFO:teuthology.orchestra.run.smithi115.stderr:++ jq -r '.[] | .hostname' 2024-09-11T07:41:04.423 INFO:teuthology.orchestra.run.smithi115.stderr:+ HOSTNAMES='smithi115 2024-09-11T07:41:04.423 INFO:teuthology.orchestra.run.smithi115.stderr:smithi150 2024-09-11T07:41:04.423 INFO:teuthology.orchestra.run.smithi115.stderr:smithi181' 2024-09-11T07:41:04.423 INFO:teuthology.orchestra.run.smithi115.stderr:+ for host in $HOSTNAMES 2024-09-11T07:41:04.423 INFO:teuthology.orchestra.run.smithi115.stderr:++ ceph orch ps --hostname smithi115 --format json 2024-09-11T07:41:04.424 INFO:teuthology.orchestra.run.smithi115.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-11T07:41:04.741 INFO:teuthology.orchestra.run.smithi115.stderr:+ HAS_MGRS=true 2024-09-11T07:41:04.742 INFO:teuthology.orchestra.run.smithi115.stderr:+ '[' true == false ']' 2024-09-11T07:41:04.742 INFO:teuthology.orchestra.run.smithi115.stderr:+ for host in $HOSTNAMES 2024-09-11T07:41:04.742 INFO:teuthology.orchestra.run.smithi115.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-11T07:41:04.742 INFO:teuthology.orchestra.run.smithi115.stderr:++ ceph orch ps --hostname smithi150 --format json 2024-09-11T07:41:05.058 INFO:teuthology.orchestra.run.smithi115.stderr:+ HAS_MGRS=true 2024-09-11T07:41:05.058 INFO:teuthology.orchestra.run.smithi115.stderr:+ '[' true == false ']' 2024-09-11T07:41:05.058 INFO:teuthology.orchestra.run.smithi115.stderr:+ for host in $HOSTNAMES 2024-09-11T07:41:05.059 INFO:teuthology.orchestra.run.smithi115.stderr:++ ceph orch ps --hostname smithi181 --format json 2024-09-11T07:41:05.059 INFO:teuthology.orchestra.run.smithi115.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-11T07:41:05.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:04 smithi181 bash[22002]: cluster 2024-09-11T07:41:03.138743+0000 mgr.a (mgr.14150) 354 : cluster [DBG] pgmap v316: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:41:05.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:04 smithi115 bash[18678]: cluster 2024-09-11T07:41:03.138743+0000 mgr.a (mgr.14150) 354 : cluster [DBG] pgmap v316: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:41:05.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:04 smithi150 bash[22110]: cluster 2024-09-11T07:41:03.138743+0000 mgr.a (mgr.14150) 354 : cluster [DBG] pgmap v316: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:41:05.371 INFO:teuthology.orchestra.run.smithi115.stderr:+ HAS_MGRS=false 2024-09-11T07:41:05.371 INFO:teuthology.orchestra.run.smithi115.stderr:+ '[' false == false ']' 2024-09-11T07:41:05.371 INFO:teuthology.orchestra.run.smithi115.stderr:+ HOST_C=smithi181 2024-09-11T07:41:05.371 INFO:teuthology.orchestra.run.smithi115.stderr:+ ceph orch host drain smithi181 --zap-osd-devices 2024-09-11T07:41:05.691 INFO:teuthology.orchestra.run.smithi115.stdout:Scheduled to remove the following daemons from host 'smithi181' 2024-09-11T07:41:05.692 INFO:teuthology.orchestra.run.smithi115.stdout:type id 2024-09-11T07:41:05.692 INFO:teuthology.orchestra.run.smithi115.stdout:-------------------- --------------- 2024-09-11T07:41:05.692 INFO:teuthology.orchestra.run.smithi115.stdout:mon c 2024-09-11T07:41:05.692 INFO:teuthology.orchestra.run.smithi115.stdout:osd 4 2024-09-11T07:41:05.692 INFO:teuthology.orchestra.run.smithi115.stdout:osd 5 2024-09-11T07:41:05.707 INFO:teuthology.orchestra.run.smithi115.stderr:++ ceph orch ps --hostname smithi181 2024-09-11T07:41:06.024 INFO:teuthology.orchestra.run.smithi115.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-11T07:41:06.024 INFO:teuthology.orchestra.run.smithi115.stderr:mon.c smithi181 running (8m) 2m ago 8m 40.0M 2048M 17.2.7-1623-gd0e6828a 4a918172a497 62462f80be7c 2024-09-11T07:41:06.024 INFO:teuthology.orchestra.run.smithi115.stderr:osd.4 smithi181 running (3m) 2m ago 3m 34.5M 10.4G 17.2.7-1623-gd0e6828a 4a918172a497 aa831f2f835e 2024-09-11T07:41:06.024 INFO:teuthology.orchestra.run.smithi115.stderr:osd.5 smithi181 running (2m) 2m ago 2m - 10.4G 17.2.7-1623-gd0e6828a 4a918172a497 5ab28d05fa08 ' 2024-09-11T07:41:06.024 INFO:teuthology.orchestra.run.smithi115.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-11T07:41:06.024 INFO:teuthology.orchestra.run.smithi115.stderr:mon.c smithi181 running (8m) 2m ago 8m 40.0M 2048M 17.2.7-1623-gd0e6828a 4a918172a497 62462f80be7c 2024-09-11T07:41:06.025 INFO:teuthology.orchestra.run.smithi115.stderr:osd.4 smithi181 running (3m) 2m ago 3m 34.5M 10.4G 17.2.7-1623-gd0e6828a 4a918172a497 aa831f2f835e 2024-09-11T07:41:06.025 INFO:teuthology.orchestra.run.smithi115.stderr:osd.5 smithi181 running (2m) 2m ago 2m - 10.4G 17.2.7-1623-gd0e6828a 4a918172a497 5ab28d05fa08 ' '!=' 'No daemons reported' ']' 2024-09-11T07:41:06.025 INFO:teuthology.orchestra.run.smithi115.stderr:+ sleep 15 2024-09-11T07:41:06.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:05 smithi181 bash[22002]: audit 2024-09-11T07:41:04.405832+0000 mgr.a (mgr.14150) 355 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T07:41:06.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:05 smithi181 bash[22002]: audit 2024-09-11T07:41:04.717435+0000 mgr.a (mgr.14150) 356 : audit [DBG] from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi115", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T07:41:06.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:05 smithi181 bash[22002]: audit 2024-09-11T07:41:05.672822+0000 mon.a (mon.0) 549 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:06.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:05 smithi181 bash[22002]: audit 2024-09-11T07:41:05.674936+0000 mon.a (mon.0) 550 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:41:06.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:05 smithi181 bash[22002]: audit 2024-09-11T07:41:05.681306+0000 mon.a (mon.0) 551 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:06.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:05 smithi181 bash[22002]: audit 2024-09-11T07:41:05.681685+0000 mon.a (mon.0) 552 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:41:06.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:05 smithi181 bash[22002]: audit 2024-09-11T07:41:05.683721+0000 mon.a (mon.0) 553 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-11T07:41:06.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:05 smithi181 bash[22002]: audit 2024-09-11T07:41:05.684370+0000 mon.a (mon.0) 554 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:41:06.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:05 smithi181 bash[22002]: audit 2024-09-11T07:41:05.687412+0000 mon.a (mon.0) 555 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-11T07:41:06.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:05 smithi115 bash[18678]: audit 2024-09-11T07:41:04.405832+0000 mgr.a (mgr.14150) 355 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T07:41:06.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:05 smithi115 bash[18678]: audit 2024-09-11T07:41:04.717435+0000 mgr.a (mgr.14150) 356 : audit [DBG] from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi115", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T07:41:06.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:05 smithi115 bash[18678]: audit 2024-09-11T07:41:05.672822+0000 mon.a (mon.0) 549 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:06.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:05 smithi115 bash[18678]: audit 2024-09-11T07:41:05.674936+0000 mon.a (mon.0) 550 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:41:06.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:05 smithi115 bash[18678]: audit 2024-09-11T07:41:05.681306+0000 mon.a (mon.0) 551 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:06.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:05 smithi115 bash[18678]: audit 2024-09-11T07:41:05.681685+0000 mon.a (mon.0) 552 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:41:06.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:05 smithi115 bash[18678]: audit 2024-09-11T07:41:05.683721+0000 mon.a (mon.0) 553 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-11T07:41:06.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:05 smithi115 bash[18678]: audit 2024-09-11T07:41:05.684370+0000 mon.a (mon.0) 554 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:41:06.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:05 smithi115 bash[18678]: audit 2024-09-11T07:41:05.687412+0000 mon.a (mon.0) 555 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-11T07:41:06.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:05 smithi150 bash[22110]: audit 2024-09-11T07:41:04.405832+0000 mgr.a (mgr.14150) 355 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T07:41:06.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:05 smithi150 bash[22110]: audit 2024-09-11T07:41:04.717435+0000 mgr.a (mgr.14150) 356 : audit [DBG] from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi115", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T07:41:06.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:05 smithi150 bash[22110]: audit 2024-09-11T07:41:05.672822+0000 mon.a (mon.0) 549 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:06.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:05 smithi150 bash[22110]: audit 2024-09-11T07:41:05.674936+0000 mon.a (mon.0) 550 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:41:06.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:05 smithi150 bash[22110]: audit 2024-09-11T07:41:05.681306+0000 mon.a (mon.0) 551 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:06.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:05 smithi150 bash[22110]: audit 2024-09-11T07:41:05.681685+0000 mon.a (mon.0) 552 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:41:06.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:05 smithi150 bash[22110]: audit 2024-09-11T07:41:05.683721+0000 mon.a (mon.0) 553 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-11T07:41:06.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:05 smithi150 bash[22110]: audit 2024-09-11T07:41:05.684370+0000 mon.a (mon.0) 554 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:41:06.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:05 smithi150 bash[22110]: audit 2024-09-11T07:41:05.687412+0000 mon.a (mon.0) 555 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-11T07:41:07.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:06 smithi181 bash[22002]: audit 2024-09-11T07:41:05.034110+0000 mgr.a (mgr.14150) 357 : audit [DBG] from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi150", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T07:41:07.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:06 smithi181 bash[22002]: cluster 2024-09-11T07:41:05.139389+0000 mgr.a (mgr.14150) 358 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:41:07.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:06 smithi181 bash[22002]: audit 2024-09-11T07:41:05.349143+0000 mgr.a (mgr.14150) 359 : audit [DBG] from='client.14520 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi181", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T07:41:07.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:06 smithi181 bash[22002]: audit 2024-09-11T07:41:05.667379+0000 mgr.a (mgr.14150) 360 : audit [DBG] from='client.14526 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi181", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:41:07.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:06 smithi181 bash[22002]: cephadm 2024-09-11T07:41:05.673358+0000 mgr.a (mgr.14150) 361 : cephadm [INF] Added label _no_schedule to host smithi181 2024-09-11T07:41:07.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:06 smithi181 bash[22002]: cephadm 2024-09-11T07:41:05.681805+0000 mgr.a (mgr.14150) 362 : cephadm [INF] Added label SpecialHostLabels.DRAIN_CONF_KEYRING to host smithi181 2024-09-11T07:41:07.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:06 smithi181 bash[22002]: cephadm 2024-09-11T07:41:05.685423+0000 mgr.a (mgr.14150) 363 : cephadm [INF] osd.4 crush weight is 0.0872955322265625 2024-09-11T07:41:07.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:06 smithi181 bash[22002]: cephadm 2024-09-11T07:41:05.687320+0000 mgr.a (mgr.14150) 364 : cephadm [INF] Removing smithi181:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T07:41:07.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:06 smithi181 bash[22002]: cephadm 2024-09-11T07:41:05.688828+0000 mgr.a (mgr.14150) 365 : cephadm [INF] osd.5 crush weight is 0.0872955322265625 2024-09-11T07:41:07.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:06 smithi181 bash[22002]: cephadm 2024-09-11T07:41:05.710512+0000 mgr.a (mgr.14150) 366 : cephadm [INF] Removing smithi181:/etc/ceph/ceph.client.admin.keyring 2024-09-11T07:41:07.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:06 smithi181 bash[22002]: cephadm 2024-09-11T07:41:05.726497+0000 mgr.a (mgr.14150) 367 : cephadm [INF] Removing smithi181:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-11T07:41:07.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:06 smithi181 bash[22002]: audit 2024-09-11T07:41:05.760906+0000 mon.a (mon.0) 556 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:07.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:06 smithi181 bash[22002]: audit 2024-09-11T07:41:05.768612+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:07.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:06 smithi181 bash[22002]: audit 2024-09-11T07:41:05.770999+0000 mon.a (mon.0) 558 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T07:41:07.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:06 smithi181 bash[22002]: audit 2024-09-11T07:41:05.771258+0000 mgr.a (mgr.14150) 368 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T07:41:07.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:06 smithi181 bash[22002]: audit 2024-09-11T07:41:05.772846+0000 mon.a (mon.0) 559 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T07:41:07.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:06 smithi181 bash[22002]: audit 2024-09-11T07:41:05.773073+0000 mgr.a (mgr.14150) 369 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T07:41:07.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:06 smithi181 bash[22002]: audit 2024-09-11T07:41:05.774479+0000 mon.a (mon.0) 560 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-11T07:41:07.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:06 smithi181 bash[22002]: audit 2024-09-11T07:41:05.774683+0000 mgr.a (mgr.14150) 370 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-11T07:41:07.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:06 smithi181 bash[22002]: audit 2024-09-11T07:41:05.775874+0000 mon.a (mon.0) 561 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-11T07:41:07.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:06 smithi115 bash[18678]: audit 2024-09-11T07:41:05.034110+0000 mgr.a (mgr.14150) 357 : audit [DBG] from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi150", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T07:41:07.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:06 smithi115 bash[18678]: cluster 2024-09-11T07:41:05.139389+0000 mgr.a (mgr.14150) 358 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:41:07.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:06 smithi115 bash[18678]: audit 2024-09-11T07:41:05.349143+0000 mgr.a (mgr.14150) 359 : audit [DBG] from='client.14520 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi181", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T07:41:07.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:06 smithi115 bash[18678]: audit 2024-09-11T07:41:05.667379+0000 mgr.a (mgr.14150) 360 : audit [DBG] from='client.14526 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi181", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:41:07.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:06 smithi115 bash[18678]: cephadm 2024-09-11T07:41:05.673358+0000 mgr.a (mgr.14150) 361 : cephadm [INF] Added label _no_schedule to host smithi181 2024-09-11T07:41:07.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:06 smithi115 bash[18678]: cephadm 2024-09-11T07:41:05.681805+0000 mgr.a (mgr.14150) 362 : cephadm [INF] Added label SpecialHostLabels.DRAIN_CONF_KEYRING to host smithi181 2024-09-11T07:41:07.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:06 smithi115 bash[18678]: cephadm 2024-09-11T07:41:05.685423+0000 mgr.a (mgr.14150) 363 : cephadm [INF] osd.4 crush weight is 0.0872955322265625 2024-09-11T07:41:07.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:06 smithi115 bash[18678]: cephadm 2024-09-11T07:41:05.687320+0000 mgr.a (mgr.14150) 364 : cephadm [INF] Removing smithi181:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T07:41:07.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:06 smithi115 bash[18678]: cephadm 2024-09-11T07:41:05.688828+0000 mgr.a (mgr.14150) 365 : cephadm [INF] osd.5 crush weight is 0.0872955322265625 2024-09-11T07:41:07.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:06 smithi115 bash[18678]: cephadm 2024-09-11T07:41:05.710512+0000 mgr.a (mgr.14150) 366 : cephadm [INF] Removing smithi181:/etc/ceph/ceph.client.admin.keyring 2024-09-11T07:41:07.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:06 smithi115 bash[18678]: cephadm 2024-09-11T07:41:05.726497+0000 mgr.a (mgr.14150) 367 : cephadm [INF] Removing smithi181:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-11T07:41:07.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:06 smithi115 bash[18678]: audit 2024-09-11T07:41:05.760906+0000 mon.a (mon.0) 556 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:07.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:06 smithi115 bash[18678]: audit 2024-09-11T07:41:05.768612+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:07.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:06 smithi115 bash[18678]: audit 2024-09-11T07:41:05.770999+0000 mon.a (mon.0) 558 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T07:41:07.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:06 smithi115 bash[18678]: audit 2024-09-11T07:41:05.771258+0000 mgr.a (mgr.14150) 368 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T07:41:07.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:06 smithi115 bash[18678]: audit 2024-09-11T07:41:05.772846+0000 mon.a (mon.0) 559 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T07:41:07.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:06 smithi115 bash[18678]: audit 2024-09-11T07:41:05.773073+0000 mgr.a (mgr.14150) 369 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T07:41:07.099 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:06 smithi115 bash[18678]: audit 2024-09-11T07:41:05.774479+0000 mon.a (mon.0) 560 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-11T07:41:07.099 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:06 smithi115 bash[18678]: audit 2024-09-11T07:41:05.774683+0000 mgr.a (mgr.14150) 370 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-11T07:41:07.099 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:06 smithi115 bash[18678]: audit 2024-09-11T07:41:05.775874+0000 mon.a (mon.0) 561 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-11T07:41:07.099 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:06 smithi115 bash[18678]: debug 2024-09-11T07:41:06.779+0000 7f1b99833640 -1 mon.a@0(leader).osd e40 definitely_dead 0 2024-09-11T07:41:07.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:06 smithi150 bash[22110]: audit 2024-09-11T07:41:05.034110+0000 mgr.a (mgr.14150) 357 : audit [DBG] from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi150", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T07:41:07.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:06 smithi150 bash[22110]: cluster 2024-09-11T07:41:05.139389+0000 mgr.a (mgr.14150) 358 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:41:07.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:06 smithi150 bash[22110]: audit 2024-09-11T07:41:05.349143+0000 mgr.a (mgr.14150) 359 : audit [DBG] from='client.14520 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi181", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T07:41:07.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:06 smithi150 bash[22110]: audit 2024-09-11T07:41:05.667379+0000 mgr.a (mgr.14150) 360 : audit [DBG] from='client.14526 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi181", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:41:07.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:06 smithi150 bash[22110]: cephadm 2024-09-11T07:41:05.673358+0000 mgr.a (mgr.14150) 361 : cephadm [INF] Added label _no_schedule to host smithi181 2024-09-11T07:41:07.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:06 smithi150 bash[22110]: cephadm 2024-09-11T07:41:05.681805+0000 mgr.a (mgr.14150) 362 : cephadm [INF] Added label SpecialHostLabels.DRAIN_CONF_KEYRING to host smithi181 2024-09-11T07:41:07.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:06 smithi150 bash[22110]: cephadm 2024-09-11T07:41:05.685423+0000 mgr.a (mgr.14150) 363 : cephadm [INF] osd.4 crush weight is 0.0872955322265625 2024-09-11T07:41:07.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:06 smithi150 bash[22110]: cephadm 2024-09-11T07:41:05.687320+0000 mgr.a (mgr.14150) 364 : cephadm [INF] Removing smithi181:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T07:41:07.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:06 smithi150 bash[22110]: cephadm 2024-09-11T07:41:05.688828+0000 mgr.a (mgr.14150) 365 : cephadm [INF] osd.5 crush weight is 0.0872955322265625 2024-09-11T07:41:07.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:06 smithi150 bash[22110]: cephadm 2024-09-11T07:41:05.710512+0000 mgr.a (mgr.14150) 366 : cephadm [INF] Removing smithi181:/etc/ceph/ceph.client.admin.keyring 2024-09-11T07:41:07.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:06 smithi150 bash[22110]: cephadm 2024-09-11T07:41:05.726497+0000 mgr.a (mgr.14150) 367 : cephadm [INF] Removing smithi181:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-11T07:41:07.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:06 smithi150 bash[22110]: audit 2024-09-11T07:41:05.760906+0000 mon.a (mon.0) 556 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:07.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:06 smithi150 bash[22110]: audit 2024-09-11T07:41:05.768612+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:07.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:06 smithi150 bash[22110]: audit 2024-09-11T07:41:05.770999+0000 mon.a (mon.0) 558 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T07:41:07.198 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:06 smithi150 bash[22110]: audit 2024-09-11T07:41:05.771258+0000 mgr.a (mgr.14150) 368 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T07:41:07.198 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:06 smithi150 bash[22110]: audit 2024-09-11T07:41:05.772846+0000 mon.a (mon.0) 559 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T07:41:07.198 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:06 smithi150 bash[22110]: audit 2024-09-11T07:41:05.773073+0000 mgr.a (mgr.14150) 369 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T07:41:07.198 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:06 smithi150 bash[22110]: audit 2024-09-11T07:41:05.774479+0000 mon.a (mon.0) 560 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-11T07:41:07.198 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:06 smithi150 bash[22110]: audit 2024-09-11T07:41:05.774683+0000 mgr.a (mgr.14150) 370 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-11T07:41:07.198 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:06 smithi150 bash[22110]: audit 2024-09-11T07:41:05.775874+0000 mon.a (mon.0) 561 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-11T07:41:08.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:07 smithi181 bash[22002]: audit 2024-09-11T07:41:05.999468+0000 mgr.a (mgr.14150) 371 : audit [DBG] from='client.14532 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi181", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:41:08.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:07 smithi181 bash[22002]: audit 2024-09-11T07:41:06.776525+0000 mon.a (mon.0) 562 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-11T07:41:08.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:07 smithi181 bash[22002]: cluster 2024-09-11T07:41:06.776613+0000 mon.a (mon.0) 563 : cluster [DBG] osdmap e40: 6 total, 6 up, 6 in 2024-09-11T07:41:08.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:07 smithi181 bash[22002]: cephadm 2024-09-11T07:41:06.777624+0000 mgr.a (mgr.14150) 372 : cephadm [INF] osd.5 weight is now 0.0 2024-09-11T07:41:08.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:07 smithi181 bash[22002]: audit 2024-09-11T07:41:06.778376+0000 mon.a (mon.0) 564 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T07:41:08.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:07 smithi181 bash[22002]: audit 2024-09-11T07:41:06.778737+0000 mgr.a (mgr.14150) 373 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T07:41:08.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:07 smithi181 bash[22002]: audit 2024-09-11T07:41:06.780817+0000 mon.a (mon.0) 565 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-11T07:41:08.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:07 smithi181 bash[22002]: audit 2024-09-11T07:41:06.781115+0000 mgr.a (mgr.14150) 374 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-11T07:41:08.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:07 smithi181 bash[22002]: audit 2024-09-11T07:41:06.782728+0000 mon.a (mon.0) 566 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-11T07:41:08.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:07 smithi115 bash[18678]: audit 2024-09-11T07:41:05.999468+0000 mgr.a (mgr.14150) 371 : audit [DBG] from='client.14532 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi181", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:41:08.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:07 smithi115 bash[18678]: audit 2024-09-11T07:41:06.776525+0000 mon.a (mon.0) 562 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-11T07:41:08.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:07 smithi115 bash[18678]: cluster 2024-09-11T07:41:06.776613+0000 mon.a (mon.0) 563 : cluster [DBG] osdmap e40: 6 total, 6 up, 6 in 2024-09-11T07:41:08.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:07 smithi115 bash[18678]: cephadm 2024-09-11T07:41:06.777624+0000 mgr.a (mgr.14150) 372 : cephadm [INF] osd.5 weight is now 0.0 2024-09-11T07:41:08.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:07 smithi115 bash[18678]: audit 2024-09-11T07:41:06.778376+0000 mon.a (mon.0) 564 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T07:41:08.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:07 smithi115 bash[18678]: audit 2024-09-11T07:41:06.778737+0000 mgr.a (mgr.14150) 373 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T07:41:08.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:07 smithi115 bash[18678]: audit 2024-09-11T07:41:06.780817+0000 mon.a (mon.0) 565 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-11T07:41:08.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:07 smithi115 bash[18678]: audit 2024-09-11T07:41:06.781115+0000 mgr.a (mgr.14150) 374 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-11T07:41:08.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:07 smithi115 bash[18678]: audit 2024-09-11T07:41:06.782728+0000 mon.a (mon.0) 566 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-11T07:41:08.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:07 smithi150 bash[22110]: audit 2024-09-11T07:41:05.999468+0000 mgr.a (mgr.14150) 371 : audit [DBG] from='client.14532 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi181", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:41:08.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:07 smithi150 bash[22110]: audit 2024-09-11T07:41:06.776525+0000 mon.a (mon.0) 562 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-11T07:41:08.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:07 smithi150 bash[22110]: cluster 2024-09-11T07:41:06.776613+0000 mon.a (mon.0) 563 : cluster [DBG] osdmap e40: 6 total, 6 up, 6 in 2024-09-11T07:41:08.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:07 smithi150 bash[22110]: cephadm 2024-09-11T07:41:06.777624+0000 mgr.a (mgr.14150) 372 : cephadm [INF] osd.5 weight is now 0.0 2024-09-11T07:41:08.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:07 smithi150 bash[22110]: audit 2024-09-11T07:41:06.778376+0000 mon.a (mon.0) 564 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T07:41:08.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:07 smithi150 bash[22110]: audit 2024-09-11T07:41:06.778737+0000 mgr.a (mgr.14150) 373 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T07:41:08.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:07 smithi150 bash[22110]: audit 2024-09-11T07:41:06.780817+0000 mon.a (mon.0) 565 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-11T07:41:08.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:07 smithi150 bash[22110]: audit 2024-09-11T07:41:06.781115+0000 mgr.a (mgr.14150) 374 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-11T07:41:08.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:07 smithi150 bash[22110]: audit 2024-09-11T07:41:06.782728+0000 mon.a (mon.0) 566 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-11T07:41:09.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:08 smithi181 bash[22002]: cluster 2024-09-11T07:41:07.140012+0000 mgr.a (mgr.14150) 375 : cluster [DBG] pgmap v319: 1 pgs: 1 peering; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:41:09.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:08 smithi181 bash[22002]: cluster 2024-09-11T07:41:07.771603+0000 mon.a (mon.0) 567 : cluster [WRN] Health check failed: Reduced data availability: 1 pg peering (PG_AVAILABILITY) 2024-09-11T07:41:09.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:08 smithi181 bash[22002]: cluster 2024-09-11T07:41:07.772784+0000 mon.a (mon.0) 568 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-11T07:41:09.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:08 smithi181 bash[22002]: audit 2024-09-11T07:41:07.789388+0000 mon.a (mon.0) 569 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-11T07:41:09.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:08 smithi181 bash[22002]: cluster 2024-09-11T07:41:07.789482+0000 mon.a (mon.0) 570 : cluster [DBG] osdmap e41: 6 total, 5 up, 6 in 2024-09-11T07:41:09.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:08 smithi181 bash[22002]: cephadm 2024-09-11T07:41:07.790837+0000 mgr.a (mgr.14150) 376 : cephadm [INF] osd.4 now down 2024-09-11T07:41:09.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:08 smithi181 bash[22002]: cephadm 2024-09-11T07:41:07.791318+0000 mgr.a (mgr.14150) 377 : cephadm [INF] Removing daemon osd.4 from smithi181 -- ports [] 2024-09-11T07:41:09.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:08 smithi115 bash[18678]: cluster 2024-09-11T07:41:07.140012+0000 mgr.a (mgr.14150) 375 : cluster [DBG] pgmap v319: 1 pgs: 1 peering; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:41:09.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:08 smithi115 bash[18678]: cluster 2024-09-11T07:41:07.771603+0000 mon.a (mon.0) 567 : cluster [WRN] Health check failed: Reduced data availability: 1 pg peering (PG_AVAILABILITY) 2024-09-11T07:41:09.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:08 smithi115 bash[18678]: cluster 2024-09-11T07:41:07.772784+0000 mon.a (mon.0) 568 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-11T07:41:09.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:08 smithi115 bash[18678]: audit 2024-09-11T07:41:07.789388+0000 mon.a (mon.0) 569 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-11T07:41:09.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:08 smithi115 bash[18678]: cluster 2024-09-11T07:41:07.789482+0000 mon.a (mon.0) 570 : cluster [DBG] osdmap e41: 6 total, 5 up, 6 in 2024-09-11T07:41:09.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:08 smithi115 bash[18678]: cephadm 2024-09-11T07:41:07.790837+0000 mgr.a (mgr.14150) 376 : cephadm [INF] osd.4 now down 2024-09-11T07:41:09.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:08 smithi115 bash[18678]: cephadm 2024-09-11T07:41:07.791318+0000 mgr.a (mgr.14150) 377 : cephadm [INF] Removing daemon osd.4 from smithi181 -- ports [] 2024-09-11T07:41:09.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:08 smithi150 bash[22110]: cluster 2024-09-11T07:41:07.140012+0000 mgr.a (mgr.14150) 375 : cluster [DBG] pgmap v319: 1 pgs: 1 peering; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:41:09.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:08 smithi150 bash[22110]: cluster 2024-09-11T07:41:07.771603+0000 mon.a (mon.0) 567 : cluster [WRN] Health check failed: Reduced data availability: 1 pg peering (PG_AVAILABILITY) 2024-09-11T07:41:09.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:08 smithi150 bash[22110]: cluster 2024-09-11T07:41:07.772784+0000 mon.a (mon.0) 568 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-11T07:41:09.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:08 smithi150 bash[22110]: audit 2024-09-11T07:41:07.789388+0000 mon.a (mon.0) 569 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-11T07:41:09.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:08 smithi150 bash[22110]: cluster 2024-09-11T07:41:07.789482+0000 mon.a (mon.0) 570 : cluster [DBG] osdmap e41: 6 total, 5 up, 6 in 2024-09-11T07:41:09.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:08 smithi150 bash[22110]: cephadm 2024-09-11T07:41:07.790837+0000 mgr.a (mgr.14150) 376 : cephadm [INF] osd.4 now down 2024-09-11T07:41:09.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:08 smithi150 bash[22110]: cephadm 2024-09-11T07:41:07.791318+0000 mgr.a (mgr.14150) 377 : cephadm [INF] Removing daemon osd.4 from smithi181 -- ports [] 2024-09-11T07:41:10.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:09 smithi181 bash[22002]: cluster 2024-09-11T07:41:08.798129+0000 mon.a (mon.0) 571 : cluster [DBG] osdmap e42: 6 total, 5 up, 6 in 2024-09-11T07:41:10.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:09 smithi115 bash[18678]: cluster 2024-09-11T07:41:08.798129+0000 mon.a (mon.0) 571 : cluster [DBG] osdmap e42: 6 total, 5 up, 6 in 2024-09-11T07:41:10.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:09 smithi150 bash[22110]: cluster 2024-09-11T07:41:08.798129+0000 mon.a (mon.0) 571 : cluster [DBG] osdmap e42: 6 total, 5 up, 6 in 2024-09-11T07:41:11.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:10 smithi181 bash[22002]: cluster 2024-09-11T07:41:09.140576+0000 mgr.a (mgr.14150) 378 : cluster [DBG] pgmap v322: 1 pgs: 1 peering; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:41:11.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:10 smithi181 bash[22002]: cluster 2024-09-11T07:41:09.807069+0000 mon.a (mon.0) 572 : cluster [DBG] osdmap e43: 6 total, 5 up, 6 in 2024-09-11T07:41:11.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:10 smithi115 bash[18678]: cluster 2024-09-11T07:41:09.140576+0000 mgr.a (mgr.14150) 378 : cluster [DBG] pgmap v322: 1 pgs: 1 peering; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:41:11.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:10 smithi115 bash[18678]: cluster 2024-09-11T07:41:09.807069+0000 mon.a (mon.0) 572 : cluster [DBG] osdmap e43: 6 total, 5 up, 6 in 2024-09-11T07:41:11.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:10 smithi150 bash[22110]: cluster 2024-09-11T07:41:09.140576+0000 mgr.a (mgr.14150) 378 : cluster [DBG] pgmap v322: 1 pgs: 1 peering; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:41:11.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:10 smithi150 bash[22110]: cluster 2024-09-11T07:41:09.807069+0000 mon.a (mon.0) 572 : cluster [DBG] osdmap e43: 6 total, 5 up, 6 in 2024-09-11T07:41:12.809 INFO:journalctl@ceph.osd.4.smithi181.stdout:Sep 11 07:41:12 smithi181 bash[25461]: debug 2024-09-11T07:41:12.520+0000 7fe573803640 -1 osd.4 43 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-11T07:41:12.810 INFO:journalctl@ceph.osd.4.smithi181.stdout:Sep 11 07:41:12 smithi181 systemd[1]: Stopping Ceph osd.4 for 1973416c-700f-11ef-bcea-c7b262605968... 2024-09-11T07:41:12.810 INFO:journalctl@ceph.osd.4.smithi181.stdout:Sep 11 07:41:12 smithi181 bash[25461]: debug 2024-09-11T07:41:12.700+0000 7fe5779ec640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.4 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-11T07:41:12.810 INFO:journalctl@ceph.osd.4.smithi181.stdout:Sep 11 07:41:12 smithi181 bash[25461]: debug 2024-09-11T07:41:12.700+0000 7fe5779ec640 -1 osd.4 43 *** Got signal Terminated *** 2024-09-11T07:41:12.810 INFO:journalctl@ceph.osd.4.smithi181.stdout:Sep 11 07:41:12 smithi181 bash[25461]: debug 2024-09-11T07:41:12.700+0000 7fe5779ec640 -1 osd.4 43 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-11T07:41:13.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:12 smithi115 bash[18678]: cluster 2024-09-11T07:41:11.141196+0000 mgr.a (mgr.14150) 379 : cluster [DBG] pgmap v324: 1 pgs: 1 peering; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:41:13.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:12 smithi115 bash[18678]: cluster 2024-09-11T07:41:12.307852+0000 mon.a (mon.0) 573 : cluster [INF] osd.4 marked itself dead as of e43 2024-09-11T07:41:13.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:12 smithi150 bash[22110]: cluster 2024-09-11T07:41:11.141196+0000 mgr.a (mgr.14150) 379 : cluster [DBG] pgmap v324: 1 pgs: 1 peering; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:41:13.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:12 smithi150 bash[22110]: cluster 2024-09-11T07:41:12.307852+0000 mon.a (mon.0) 573 : cluster [INF] osd.4 marked itself dead as of e43 2024-09-11T07:41:13.299 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:12 smithi181 bash[22002]: cluster 2024-09-11T07:41:11.141196+0000 mgr.a (mgr.14150) 379 : cluster [DBG] pgmap v324: 1 pgs: 1 peering; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T07:41:13.299 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:12 smithi181 bash[22002]: cluster 2024-09-11T07:41:12.307852+0000 mon.a (mon.0) 573 : cluster [INF] osd.4 marked itself dead as of e43 2024-09-11T07:41:14.059 INFO:journalctl@ceph.osd.4.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[37498]: ceph-1973416c-700f-11ef-bcea-c7b262605968-osd-4 2024-09-11T07:41:14.060 INFO:journalctl@ceph.osd.4.smithi181.stdout:Sep 11 07:41:14 smithi181 bash[37573]: Error response from daemon: No such container: ceph-1973416c-700f-11ef-bcea-c7b262605968-osd-4 2024-09-11T07:41:14.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:12.307233+0000 osd.4 (osd.4) 3 : cluster [WRN] Monitor daemon marked osd.4 down, but it is still running 2024-09-11T07:41:14.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:12.307242+0000 osd.4 (osd.4) 4 : cluster [DBG] map e43 wrongly marked me down at e41 2024-09-11T07:41:14.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:12.805954+0000 mon.a (mon.0) 574 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-11T07:41:14.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:12.814136+0000 mon.a (mon.0) 575 : cluster [INF] osd.4 [v2:172.21.15.181:6800/1736827996,v1:172.21.15.181:6801/1736827996] boot 2024-09-11T07:41:14.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:12.814284+0000 mon.a (mon.0) 576 : cluster [DBG] osdmap e44: 6 total, 6 up, 6 in 2024-09-11T07:41:14.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: audit 2024-09-11T07:41:12.814946+0000 mon.a (mon.0) 577 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T07:41:14.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:13.283527+0000 mon.a (mon.0) 578 : cluster [DBG] osd.4 reported immediately failed by osd.0 2024-09-11T07:41:14.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:13.283590+0000 mon.a (mon.0) 579 : cluster [INF] osd.4 failed (root=default,host=smithi181) (connection refused reported by osd.0) 2024-09-11T07:41:14.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:13.284204+0000 mon.a (mon.0) 580 : cluster [DBG] osd.4 reported immediately failed by osd.0 2024-09-11T07:41:14.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:13.284332+0000 mon.a (mon.0) 581 : cluster [DBG] osd.4 reported immediately failed by osd.1 2024-09-11T07:41:14.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:13.284693+0000 mon.a (mon.0) 582 : cluster [DBG] osd.4 reported immediately failed by osd.5 2024-09-11T07:41:14.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:13.284958+0000 mon.a (mon.0) 583 : cluster [DBG] osd.4 reported immediately failed by osd.2 2024-09-11T07:41:14.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:13.285299+0000 mon.a (mon.0) 584 : cluster [DBG] osd.4 reported immediately failed by osd.1 2024-09-11T07:41:14.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:13.285575+0000 mon.a (mon.0) 585 : cluster [DBG] osd.4 reported immediately failed by osd.5 2024-09-11T07:41:14.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:13.285901+0000 mon.a (mon.0) 586 : cluster [DBG] osd.4 reported immediately failed by osd.3 2024-09-11T07:41:14.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:13.286268+0000 mon.a (mon.0) 587 : cluster [DBG] osd.4 reported immediately failed by osd.2 2024-09-11T07:41:14.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:13.286577+0000 mon.a (mon.0) 588 : cluster [DBG] osd.4 reported immediately failed by osd.3 2024-09-11T07:41:14.061 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:13.484672+0000 mon.a (mon.0) 589 : cluster [DBG] osd.4 reported immediately failed by osd.5 2024-09-11T07:41:14.062 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:13.485117+0000 mon.a (mon.0) 590 : cluster [DBG] osd.4 reported immediately failed by osd.5 2024-09-11T07:41:14.062 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:13.486566+0000 mon.a (mon.0) 591 : cluster [DBG] osd.4 reported immediately failed by osd.1 2024-09-11T07:41:14.062 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:13.486770+0000 mon.a (mon.0) 592 : cluster [DBG] osd.4 reported immediately failed by osd.0 2024-09-11T07:41:14.062 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:13.486947+0000 mon.a (mon.0) 593 : cluster [DBG] osd.4 reported immediately failed by osd.1 2024-09-11T07:41:14.062 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:13.487119+0000 mon.a (mon.0) 594 : cluster [DBG] osd.4 reported immediately failed by osd.0 2024-09-11T07:41:14.062 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:13.488547+0000 mon.a (mon.0) 595 : cluster [DBG] osd.4 reported immediately failed by osd.3 2024-09-11T07:41:14.062 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:13.488899+0000 mon.a (mon.0) 596 : cluster [DBG] osd.4 reported immediately failed by osd.2 2024-09-11T07:41:14.062 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:13.489222+0000 mon.a (mon.0) 597 : cluster [DBG] osd.4 reported immediately failed by osd.3 2024-09-11T07:41:14.062 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:13.489531+0000 mon.a (mon.0) 598 : cluster [DBG] osd.4 reported immediately failed by osd.2 2024-09-11T07:41:14.062 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:13 smithi181 bash[22002]: cluster 2024-09-11T07:41:13.808517+0000 mon.a (mon.0) 599 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-11T07:41:14.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:12.307233+0000 osd.4 (osd.4) 3 : cluster [WRN] Monitor daemon marked osd.4 down, but it is still running 2024-09-11T07:41:14.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:12.307242+0000 osd.4 (osd.4) 4 : cluster [DBG] map e43 wrongly marked me down at e41 2024-09-11T07:41:14.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:12.805954+0000 mon.a (mon.0) 574 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-11T07:41:14.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:12.814136+0000 mon.a (mon.0) 575 : cluster [INF] osd.4 [v2:172.21.15.181:6800/1736827996,v1:172.21.15.181:6801/1736827996] boot 2024-09-11T07:41:14.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:12.814284+0000 mon.a (mon.0) 576 : cluster [DBG] osdmap e44: 6 total, 6 up, 6 in 2024-09-11T07:41:14.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: audit 2024-09-11T07:41:12.814946+0000 mon.a (mon.0) 577 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T07:41:14.098 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:13.283527+0000 mon.a (mon.0) 578 : cluster [DBG] osd.4 reported immediately failed by osd.0 2024-09-11T07:41:14.099 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:13.283590+0000 mon.a (mon.0) 579 : cluster [INF] osd.4 failed (root=default,host=smithi181) (connection refused reported by osd.0) 2024-09-11T07:41:14.099 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:13.284204+0000 mon.a (mon.0) 580 : cluster [DBG] osd.4 reported immediately failed by osd.0 2024-09-11T07:41:14.099 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:13.284332+0000 mon.a (mon.0) 581 : cluster [DBG] osd.4 reported immediately failed by osd.1 2024-09-11T07:41:14.099 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:13.284693+0000 mon.a (mon.0) 582 : cluster [DBG] osd.4 reported immediately failed by osd.5 2024-09-11T07:41:14.099 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:13.284958+0000 mon.a (mon.0) 583 : cluster [DBG] osd.4 reported immediately failed by osd.2 2024-09-11T07:41:14.100 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:13.285299+0000 mon.a (mon.0) 584 : cluster [DBG] osd.4 reported immediately failed by osd.1 2024-09-11T07:41:14.100 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:13.285575+0000 mon.a (mon.0) 585 : cluster [DBG] osd.4 reported immediately failed by osd.5 2024-09-11T07:41:14.100 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:13.285901+0000 mon.a (mon.0) 586 : cluster [DBG] osd.4 reported immediately failed by osd.3 2024-09-11T07:41:14.100 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:13.286268+0000 mon.a (mon.0) 587 : cluster [DBG] osd.4 reported immediately failed by osd.2 2024-09-11T07:41:14.100 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:13.286577+0000 mon.a (mon.0) 588 : cluster [DBG] osd.4 reported immediately failed by osd.3 2024-09-11T07:41:14.101 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:13.484672+0000 mon.a (mon.0) 589 : cluster [DBG] osd.4 reported immediately failed by osd.5 2024-09-11T07:41:14.101 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:13.485117+0000 mon.a (mon.0) 590 : cluster [DBG] osd.4 reported immediately failed by osd.5 2024-09-11T07:41:14.101 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:13.486566+0000 mon.a (mon.0) 591 : cluster [DBG] osd.4 reported immediately failed by osd.1 2024-09-11T07:41:14.101 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:13.486770+0000 mon.a (mon.0) 592 : cluster [DBG] osd.4 reported immediately failed by osd.0 2024-09-11T07:41:14.101 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:13.486947+0000 mon.a (mon.0) 593 : cluster [DBG] osd.4 reported immediately failed by osd.1 2024-09-11T07:41:14.101 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:13.487119+0000 mon.a (mon.0) 594 : cluster [DBG] osd.4 reported immediately failed by osd.0 2024-09-11T07:41:14.102 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:13.488547+0000 mon.a (mon.0) 595 : cluster [DBG] osd.4 reported immediately failed by osd.3 2024-09-11T07:41:14.102 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:13.488899+0000 mon.a (mon.0) 596 : cluster [DBG] osd.4 reported immediately failed by osd.2 2024-09-11T07:41:14.102 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:13.489222+0000 mon.a (mon.0) 597 : cluster [DBG] osd.4 reported immediately failed by osd.3 2024-09-11T07:41:14.102 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:13.489531+0000 mon.a (mon.0) 598 : cluster [DBG] osd.4 reported immediately failed by osd.2 2024-09-11T07:41:14.102 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:13 smithi115 bash[18678]: cluster 2024-09-11T07:41:13.808517+0000 mon.a (mon.0) 599 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-11T07:41:14.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:12.307233+0000 osd.4 (osd.4) 3 : cluster [WRN] Monitor daemon marked osd.4 down, but it is still running 2024-09-11T07:41:14.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:12.307242+0000 osd.4 (osd.4) 4 : cluster [DBG] map e43 wrongly marked me down at e41 2024-09-11T07:41:14.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:12.805954+0000 mon.a (mon.0) 574 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-11T07:41:14.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:12.814136+0000 mon.a (mon.0) 575 : cluster [INF] osd.4 [v2:172.21.15.181:6800/1736827996,v1:172.21.15.181:6801/1736827996] boot 2024-09-11T07:41:14.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:12.814284+0000 mon.a (mon.0) 576 : cluster [DBG] osdmap e44: 6 total, 6 up, 6 in 2024-09-11T07:41:14.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: audit 2024-09-11T07:41:12.814946+0000 mon.a (mon.0) 577 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T07:41:14.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:13.283527+0000 mon.a (mon.0) 578 : cluster [DBG] osd.4 reported immediately failed by osd.0 2024-09-11T07:41:14.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:13.283590+0000 mon.a (mon.0) 579 : cluster [INF] osd.4 failed (root=default,host=smithi181) (connection refused reported by osd.0) 2024-09-11T07:41:14.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:13.284204+0000 mon.a (mon.0) 580 : cluster [DBG] osd.4 reported immediately failed by osd.0 2024-09-11T07:41:14.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:13.284332+0000 mon.a (mon.0) 581 : cluster [DBG] osd.4 reported immediately failed by osd.1 2024-09-11T07:41:14.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:13.284693+0000 mon.a (mon.0) 582 : cluster [DBG] osd.4 reported immediately failed by osd.5 2024-09-11T07:41:14.201 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:13.284958+0000 mon.a (mon.0) 583 : cluster [DBG] osd.4 reported immediately failed by osd.2 2024-09-11T07:41:14.201 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:13.285299+0000 mon.a (mon.0) 584 : cluster [DBG] osd.4 reported immediately failed by osd.1 2024-09-11T07:41:14.201 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:13.285575+0000 mon.a (mon.0) 585 : cluster [DBG] osd.4 reported immediately failed by osd.5 2024-09-11T07:41:14.201 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:13.285901+0000 mon.a (mon.0) 586 : cluster [DBG] osd.4 reported immediately failed by osd.3 2024-09-11T07:41:14.202 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:13.286268+0000 mon.a (mon.0) 587 : cluster [DBG] osd.4 reported immediately failed by osd.2 2024-09-11T07:41:14.202 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:13.286577+0000 mon.a (mon.0) 588 : cluster [DBG] osd.4 reported immediately failed by osd.3 2024-09-11T07:41:14.202 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:13.484672+0000 mon.a (mon.0) 589 : cluster [DBG] osd.4 reported immediately failed by osd.5 2024-09-11T07:41:14.202 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:13.485117+0000 mon.a (mon.0) 590 : cluster [DBG] osd.4 reported immediately failed by osd.5 2024-09-11T07:41:14.202 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:13.486566+0000 mon.a (mon.0) 591 : cluster [DBG] osd.4 reported immediately failed by osd.1 2024-09-11T07:41:14.202 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:13.486770+0000 mon.a (mon.0) 592 : cluster [DBG] osd.4 reported immediately failed by osd.0 2024-09-11T07:41:14.202 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:13.486947+0000 mon.a (mon.0) 593 : cluster [DBG] osd.4 reported immediately failed by osd.1 2024-09-11T07:41:14.202 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:13.487119+0000 mon.a (mon.0) 594 : cluster [DBG] osd.4 reported immediately failed by osd.0 2024-09-11T07:41:14.202 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:13.488547+0000 mon.a (mon.0) 595 : cluster [DBG] osd.4 reported immediately failed by osd.3 2024-09-11T07:41:14.202 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:13.488899+0000 mon.a (mon.0) 596 : cluster [DBG] osd.4 reported immediately failed by osd.2 2024-09-11T07:41:14.202 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:13.489222+0000 mon.a (mon.0) 597 : cluster [DBG] osd.4 reported immediately failed by osd.3 2024-09-11T07:41:14.202 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:13.489531+0000 mon.a (mon.0) 598 : cluster [DBG] osd.4 reported immediately failed by osd.2 2024-09-11T07:41:14.202 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:13 smithi150 bash[22110]: cluster 2024-09-11T07:41:13.808517+0000 mon.a (mon.0) 599 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-11T07:41:15.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:14 smithi115 bash[18678]: cluster 2024-09-11T07:41:13.141756+0000 mgr.a (mgr.14150) 380 : cluster [DBG] pgmap v326: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-11T07:41:15.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:14 smithi115 bash[18678]: cluster 2024-09-11T07:41:13.816406+0000 mon.a (mon.0) 600 : cluster [DBG] osdmap e45: 6 total, 5 up, 6 in 2024-09-11T07:41:15.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:14 smithi115 bash[18678]: cluster 2024-09-11T07:41:13.816754+0000 mon.a (mon.0) 601 : cluster [INF] Health check cleared: PG_AVAILABILITY (was: Reduced data availability: 1 pg peering) 2024-09-11T07:41:15.141 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:14 smithi181 bash[22002]: cluster 2024-09-11T07:41:13.141756+0000 mgr.a (mgr.14150) 380 : cluster [DBG] pgmap v326: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-11T07:41:15.141 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:14 smithi181 bash[22002]: cluster 2024-09-11T07:41:13.816406+0000 mon.a (mon.0) 600 : cluster [DBG] osdmap e45: 6 total, 5 up, 6 in 2024-09-11T07:41:15.141 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:14 smithi181 bash[22002]: cluster 2024-09-11T07:41:13.816754+0000 mon.a (mon.0) 601 : cluster [INF] Health check cleared: PG_AVAILABILITY (was: Reduced data availability: 1 pg peering) 2024-09-11T07:41:15.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:14 smithi150 bash[22110]: cluster 2024-09-11T07:41:13.141756+0000 mgr.a (mgr.14150) 380 : cluster [DBG] pgmap v326: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-11T07:41:15.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:14 smithi150 bash[22110]: cluster 2024-09-11T07:41:13.816406+0000 mon.a (mon.0) 600 : cluster [DBG] osdmap e45: 6 total, 5 up, 6 in 2024-09-11T07:41:15.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:14 smithi150 bash[22110]: cluster 2024-09-11T07:41:13.816754+0000 mon.a (mon.0) 601 : cluster [INF] Health check cleared: PG_AVAILABILITY (was: Reduced data availability: 1 pg peering) 2024-09-11T07:41:16.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:15 smithi181 bash[22002]: cluster 2024-09-11T07:41:14.828879+0000 mon.a (mon.0) 602 : cluster [DBG] osdmap e46: 6 total, 5 up, 6 in 2024-09-11T07:41:16.060 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:15 smithi181 bash[22002]: cluster 2024-09-11T07:41:15.142375+0000 mgr.a (mgr.14150) 381 : cluster [DBG] pgmap v329: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-11T07:41:16.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:15 smithi115 bash[18678]: cluster 2024-09-11T07:41:14.828879+0000 mon.a (mon.0) 602 : cluster [DBG] osdmap e46: 6 total, 5 up, 6 in 2024-09-11T07:41:16.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:15 smithi115 bash[18678]: cluster 2024-09-11T07:41:15.142375+0000 mgr.a (mgr.14150) 381 : cluster [DBG] pgmap v329: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-11T07:41:16.195 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:15 smithi150 bash[22110]: cluster 2024-09-11T07:41:14.828879+0000 mon.a (mon.0) 602 : cluster [DBG] osdmap e46: 6 total, 5 up, 6 in 2024-09-11T07:41:16.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:15 smithi150 bash[22110]: cluster 2024-09-11T07:41:15.142375+0000 mgr.a (mgr.14150) 381 : cluster [DBG] pgmap v329: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-11T07:41:16.559 INFO:journalctl@ceph.osd.4.smithi181.stdout:Sep 11 07:41:16 smithi181 systemd[1]: ceph-1973416c-700f-11ef-bcea-c7b262605968@osd.4.service: Succeeded. 2024-09-11T07:41:16.559 INFO:journalctl@ceph.osd.4.smithi181.stdout:Sep 11 07:41:16 smithi181 systemd[1]: Stopped Ceph osd.4 for 1973416c-700f-11ef-bcea-c7b262605968. 2024-09-11T07:41:17.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:16 smithi150 bash[22110]: cephadm 2024-09-11T07:41:16.385217+0000 mgr.a (mgr.14150) 382 : cephadm [INF] Removing key for osd.4 2024-09-11T07:41:17.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:16 smithi150 bash[22110]: audit 2024-09-11T07:41:16.385820+0000 mon.a (mon.0) 603 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-11T07:41:17.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:16 smithi150 bash[22110]: audit 2024-09-11T07:41:16.392758+0000 mon.a (mon.0) 604 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-11T07:41:17.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:16 smithi150 bash[22110]: cephadm 2024-09-11T07:41:16.394175+0000 mgr.a (mgr.14150) 383 : cephadm [INF] Successfully removed osd.4 on smithi181 2024-09-11T07:41:17.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:16 smithi150 bash[22110]: audit 2024-09-11T07:41:16.394775+0000 mon.a (mon.0) 605 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-11T07:41:17.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:16 smithi150 bash[22110]: cluster 2024-09-11T07:41:16.395891+0000 mon.a (mon.0) 606 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-11T07:41:17.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:16 smithi150 bash[22110]: cluster 2024-09-11T07:41:16.395946+0000 mon.a (mon.0) 607 : cluster [INF] Cluster is now healthy 2024-09-11T07:41:17.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:16 smithi150 bash[22110]: audit 2024-09-11T07:41:16.401572+0000 mon.a (mon.0) 608 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-11T07:41:17.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:16 smithi150 bash[22110]: cluster 2024-09-11T07:41:16.401624+0000 mon.a (mon.0) 609 : cluster [DBG] osdmap e47: 5 total, 5 up, 5 in 2024-09-11T07:41:17.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:16 smithi150 bash[22110]: cephadm 2024-09-11T07:41:16.402804+0000 mgr.a (mgr.14150) 384 : cephadm [INF] Successfully purged osd.4 on smithi181 2024-09-11T07:41:17.197 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:16 smithi150 bash[22110]: cephadm 2024-09-11T07:41:16.403042+0000 mgr.a (mgr.14150) 385 : cephadm [INF] Zapping devices for osd.4 on smithi181 2024-09-11T07:41:17.309 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:16 smithi181 bash[22002]: cephadm 2024-09-11T07:41:16.385217+0000 mgr.a (mgr.14150) 382 : cephadm [INF] Removing key for osd.4 2024-09-11T07:41:17.310 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:16 smithi181 bash[22002]: audit 2024-09-11T07:41:16.385820+0000 mon.a (mon.0) 603 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-11T07:41:17.310 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:16 smithi181 bash[22002]: audit 2024-09-11T07:41:16.392758+0000 mon.a (mon.0) 604 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-11T07:41:17.310 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:16 smithi181 bash[22002]: cephadm 2024-09-11T07:41:16.394175+0000 mgr.a (mgr.14150) 383 : cephadm [INF] Successfully removed osd.4 on smithi181 2024-09-11T07:41:17.310 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:16 smithi181 bash[22002]: audit 2024-09-11T07:41:16.394775+0000 mon.a (mon.0) 605 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-11T07:41:17.310 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:16 smithi181 bash[22002]: cluster 2024-09-11T07:41:16.395891+0000 mon.a (mon.0) 606 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-11T07:41:17.310 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:16 smithi181 bash[22002]: cluster 2024-09-11T07:41:16.395946+0000 mon.a (mon.0) 607 : cluster [INF] Cluster is now healthy 2024-09-11T07:41:17.310 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:16 smithi181 bash[22002]: audit 2024-09-11T07:41:16.401572+0000 mon.a (mon.0) 608 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-11T07:41:17.310 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:16 smithi181 bash[22002]: cluster 2024-09-11T07:41:16.401624+0000 mon.a (mon.0) 609 : cluster [DBG] osdmap e47: 5 total, 5 up, 5 in 2024-09-11T07:41:17.310 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:16 smithi181 bash[22002]: cephadm 2024-09-11T07:41:16.402804+0000 mgr.a (mgr.14150) 384 : cephadm [INF] Successfully purged osd.4 on smithi181 2024-09-11T07:41:17.310 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:16 smithi181 bash[22002]: cephadm 2024-09-11T07:41:16.403042+0000 mgr.a (mgr.14150) 385 : cephadm [INF] Zapping devices for osd.4 on smithi181 2024-09-11T07:41:17.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:16 smithi115 bash[18678]: cephadm 2024-09-11T07:41:16.385217+0000 mgr.a (mgr.14150) 382 : cephadm [INF] Removing key for osd.4 2024-09-11T07:41:17.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:16 smithi115 bash[18678]: audit 2024-09-11T07:41:16.385820+0000 mon.a (mon.0) 603 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-11T07:41:17.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:16 smithi115 bash[18678]: audit 2024-09-11T07:41:16.392758+0000 mon.a (mon.0) 604 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-11T07:41:17.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:16 smithi115 bash[18678]: cephadm 2024-09-11T07:41:16.394175+0000 mgr.a (mgr.14150) 383 : cephadm [INF] Successfully removed osd.4 on smithi181 2024-09-11T07:41:17.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:16 smithi115 bash[18678]: audit 2024-09-11T07:41:16.394775+0000 mon.a (mon.0) 605 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-11T07:41:17.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:16 smithi115 bash[18678]: cluster 2024-09-11T07:41:16.395891+0000 mon.a (mon.0) 606 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-11T07:41:17.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:16 smithi115 bash[18678]: cluster 2024-09-11T07:41:16.395946+0000 mon.a (mon.0) 607 : cluster [INF] Cluster is now healthy 2024-09-11T07:41:17.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:16 smithi115 bash[18678]: audit 2024-09-11T07:41:16.401572+0000 mon.a (mon.0) 608 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-11T07:41:17.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:16 smithi115 bash[18678]: cluster 2024-09-11T07:41:16.401624+0000 mon.a (mon.0) 609 : cluster [DBG] osdmap e47: 5 total, 5 up, 5 in 2024-09-11T07:41:17.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:16 smithi115 bash[18678]: cephadm 2024-09-11T07:41:16.402804+0000 mgr.a (mgr.14150) 384 : cephadm [INF] Successfully purged osd.4 on smithi181 2024-09-11T07:41:17.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:16 smithi115 bash[18678]: cephadm 2024-09-11T07:41:16.403042+0000 mgr.a (mgr.14150) 385 : cephadm [INF] Zapping devices for osd.4 on smithi181 2024-09-11T07:41:18.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:18 smithi150 bash[22110]: cluster 2024-09-11T07:41:17.142940+0000 mgr.a (mgr.14150) 386 : cluster [DBG] pgmap v331: 1 pgs: 1 remapped+peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:41:18.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:18 smithi150 bash[22110]: cluster 2024-09-11T07:41:17.405846+0000 mon.a (mon.0) 610 : cluster [DBG] osdmap e48: 5 total, 5 up, 5 in 2024-09-11T07:41:18.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:18 smithi181 bash[22002]: cluster 2024-09-11T07:41:17.142940+0000 mgr.a (mgr.14150) 386 : cluster [DBG] pgmap v331: 1 pgs: 1 remapped+peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:41:18.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:18 smithi181 bash[22002]: cluster 2024-09-11T07:41:17.405846+0000 mon.a (mon.0) 610 : cluster [DBG] osdmap e48: 5 total, 5 up, 5 in 2024-09-11T07:41:18.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:18 smithi115 bash[18678]: cluster 2024-09-11T07:41:17.142940+0000 mgr.a (mgr.14150) 386 : cluster [DBG] pgmap v331: 1 pgs: 1 remapped+peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:41:18.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:18 smithi115 bash[18678]: cluster 2024-09-11T07:41:17.405846+0000 mon.a (mon.0) 610 : cluster [DBG] osdmap e48: 5 total, 5 up, 5 in 2024-09-11T07:41:19.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:19 smithi150 bash[22110]: cluster 2024-09-11T07:41:18.408012+0000 mon.a (mon.0) 611 : cluster [DBG] osdmap e49: 5 total, 5 up, 5 in 2024-09-11T07:41:19.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:19 smithi181 bash[22002]: cluster 2024-09-11T07:41:18.408012+0000 mon.a (mon.0) 611 : cluster [DBG] osdmap e49: 5 total, 5 up, 5 in 2024-09-11T07:41:19.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:19 smithi115 bash[18678]: cluster 2024-09-11T07:41:18.408012+0000 mon.a (mon.0) 611 : cluster [DBG] osdmap e49: 5 total, 5 up, 5 in 2024-09-11T07:41:20.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:20 smithi150 bash[22110]: cluster 2024-09-11T07:41:19.143501+0000 mgr.a (mgr.14150) 387 : cluster [DBG] pgmap v334: 1 pgs: 1 remapped+peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:41:20.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:20 smithi181 bash[22002]: cluster 2024-09-11T07:41:19.143501+0000 mgr.a (mgr.14150) 387 : cluster [DBG] pgmap v334: 1 pgs: 1 remapped+peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:41:20.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:20 smithi115 bash[18678]: cluster 2024-09-11T07:41:19.143501+0000 mgr.a (mgr.14150) 387 : cluster [DBG] pgmap v334: 1 pgs: 1 remapped+peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:41:21.027 INFO:teuthology.orchestra.run.smithi115.stderr:++ ceph orch ps --hostname smithi181 2024-09-11T07:41:21.356 INFO:teuthology.orchestra.run.smithi115.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-11T07:41:21.357 INFO:teuthology.orchestra.run.smithi115.stderr:mon.c smithi181 running (8m) 2m ago 8m 40.0M 2048M 17.2.7-1623-gd0e6828a 4a918172a497 62462f80be7c 2024-09-11T07:41:21.357 INFO:teuthology.orchestra.run.smithi115.stderr:osd.5 smithi181 running (2m) 2m ago 2m - 10.4G 17.2.7-1623-gd0e6828a 4a918172a497 5ab28d05fa08 ' 2024-09-11T07:41:21.357 INFO:teuthology.orchestra.run.smithi115.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-11T07:41:21.357 INFO:teuthology.orchestra.run.smithi115.stderr:mon.c smithi181 running (8m) 2m ago 8m 40.0M 2048M 17.2.7-1623-gd0e6828a 4a918172a497 62462f80be7c 2024-09-11T07:41:21.357 INFO:teuthology.orchestra.run.smithi115.stderr:osd.5 smithi181 running (2m) 2m ago 2m - 10.4G 17.2.7-1623-gd0e6828a 4a918172a497 5ab28d05fa08 ' '!=' 'No daemons reported' ']' 2024-09-11T07:41:21.357 INFO:teuthology.orchestra.run.smithi115.stderr:+ sleep 15 2024-09-11T07:41:22.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:22 smithi150 bash[22110]: cluster 2024-09-11T07:41:21.144053+0000 mgr.a (mgr.14150) 388 : cluster [DBG] pgmap v335: 1 pgs: 1 remapped+peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:41:22.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:22 smithi150 bash[22110]: audit 2024-09-11T07:41:21.328299+0000 mgr.a (mgr.14150) 389 : audit [DBG] from='client.14538 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi181", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:41:22.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:22 smithi181 bash[22002]: cluster 2024-09-11T07:41:21.144053+0000 mgr.a (mgr.14150) 388 : cluster [DBG] pgmap v335: 1 pgs: 1 remapped+peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:41:22.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:22 smithi181 bash[22002]: audit 2024-09-11T07:41:21.328299+0000 mgr.a (mgr.14150) 389 : audit [DBG] from='client.14538 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi181", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:41:22.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:22 smithi115 bash[18678]: cluster 2024-09-11T07:41:21.144053+0000 mgr.a (mgr.14150) 388 : cluster [DBG] pgmap v335: 1 pgs: 1 remapped+peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:41:22.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:22 smithi115 bash[18678]: audit 2024-09-11T07:41:21.328299+0000 mgr.a (mgr.14150) 389 : audit [DBG] from='client.14538 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi181", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:41:24.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:24 smithi150 bash[22110]: cluster 2024-09-11T07:41:23.144661+0000 mgr.a (mgr.14150) 390 : cluster [DBG] pgmap v336: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 85 KiB/s, 0 objects/s recovering 2024-09-11T07:41:24.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:24 smithi181 bash[22002]: cluster 2024-09-11T07:41:23.144661+0000 mgr.a (mgr.14150) 390 : cluster [DBG] pgmap v336: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 85 KiB/s, 0 objects/s recovering 2024-09-11T07:41:24.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:24 smithi115 bash[18678]: cluster 2024-09-11T07:41:23.144661+0000 mgr.a (mgr.14150) 390 : cluster [DBG] pgmap v336: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 85 KiB/s, 0 objects/s recovering 2024-09-11T07:41:26.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:26 smithi115 bash[18678]: debug 2024-09-11T07:41:26.239+0000 7f1b99833640 -1 mon.a@0(leader).osd e49 definitely_dead 0 2024-09-11T07:41:26.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:26 smithi115 bash[18678]: cluster 2024-09-11T07:41:25.145201+0000 mgr.a (mgr.14150) 391 : cluster [DBG] pgmap v337: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-11T07:41:26.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:26 smithi115 bash[18678]: audit 2024-09-11T07:41:26.236304+0000 mon.a (mon.0) 612 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T07:41:26.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:26 smithi115 bash[18678]: audit 2024-09-11T07:41:26.239562+0000 mon.a (mon.0) 613 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-11T07:41:26.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:26 smithi115 bash[18678]: audit 2024-09-11T07:41:26.242143+0000 mon.a (mon.0) 614 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-09-11T07:41:26.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:26 smithi181 bash[22002]: cluster 2024-09-11T07:41:25.145201+0000 mgr.a (mgr.14150) 391 : cluster [DBG] pgmap v337: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-11T07:41:26.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:26 smithi181 bash[22002]: audit 2024-09-11T07:41:26.236304+0000 mon.a (mon.0) 612 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T07:41:26.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:26 smithi181 bash[22002]: audit 2024-09-11T07:41:26.239562+0000 mon.a (mon.0) 613 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-11T07:41:26.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:26 smithi181 bash[22002]: audit 2024-09-11T07:41:26.242143+0000 mon.a (mon.0) 614 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-09-11T07:41:26.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:26 smithi150 bash[22110]: cluster 2024-09-11T07:41:25.145201+0000 mgr.a (mgr.14150) 391 : cluster [DBG] pgmap v337: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-11T07:41:26.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:26 smithi150 bash[22110]: audit 2024-09-11T07:41:26.236304+0000 mon.a (mon.0) 612 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T07:41:26.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:26 smithi150 bash[22110]: audit 2024-09-11T07:41:26.239562+0000 mon.a (mon.0) 613 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-11T07:41:26.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:26 smithi150 bash[22110]: audit 2024-09-11T07:41:26.242143+0000 mon.a (mon.0) 614 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-09-11T07:41:27.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:27 smithi181 bash[22002]: cephadm 2024-09-11T07:41:26.235521+0000 mgr.a (mgr.14150) 392 : cephadm [INF] Successfully zapped devices for osd.4 on smithi181 2024-09-11T07:41:27.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:27 smithi181 bash[22002]: audit 2024-09-11T07:41:26.236747+0000 mgr.a (mgr.14150) 393 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T07:41:27.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:27 smithi181 bash[22002]: audit 2024-09-11T07:41:26.239953+0000 mgr.a (mgr.14150) 394 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-11T07:41:27.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:27 smithi181 bash[22002]: cluster 2024-09-11T07:41:26.434494+0000 mon.a (mon.0) 615 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-11T07:41:27.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:27 smithi181 bash[22002]: cluster 2024-09-11T07:41:26.434556+0000 mon.a (mon.0) 616 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-11T07:41:27.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:27 smithi181 bash[22002]: audit 2024-09-11T07:41:26.444774+0000 mon.a (mon.0) 617 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-11T07:41:27.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:27 smithi181 bash[22002]: cluster 2024-09-11T07:41:26.444947+0000 mon.a (mon.0) 618 : cluster [DBG] osdmap e50: 5 total, 4 up, 5 in 2024-09-11T07:41:27.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:27 smithi181 bash[22002]: cephadm 2024-09-11T07:41:26.446847+0000 mgr.a (mgr.14150) 395 : cephadm [INF] osd.5 now down 2024-09-11T07:41:27.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:27 smithi181 bash[22002]: cephadm 2024-09-11T07:41:26.447314+0000 mgr.a (mgr.14150) 396 : cephadm [INF] Removing daemon osd.5 from smithi181 -- ports [] 2024-09-11T07:41:27.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:27 smithi115 bash[18678]: cephadm 2024-09-11T07:41:26.235521+0000 mgr.a (mgr.14150) 392 : cephadm [INF] Successfully zapped devices for osd.4 on smithi181 2024-09-11T07:41:27.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:27 smithi115 bash[18678]: audit 2024-09-11T07:41:26.236747+0000 mgr.a (mgr.14150) 393 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T07:41:27.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:27 smithi115 bash[18678]: audit 2024-09-11T07:41:26.239953+0000 mgr.a (mgr.14150) 394 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-11T07:41:27.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:27 smithi115 bash[18678]: cluster 2024-09-11T07:41:26.434494+0000 mon.a (mon.0) 615 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-11T07:41:27.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:27 smithi115 bash[18678]: cluster 2024-09-11T07:41:26.434556+0000 mon.a (mon.0) 616 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-11T07:41:27.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:27 smithi115 bash[18678]: audit 2024-09-11T07:41:26.444774+0000 mon.a (mon.0) 617 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-11T07:41:27.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:27 smithi115 bash[18678]: cluster 2024-09-11T07:41:26.444947+0000 mon.a (mon.0) 618 : cluster [DBG] osdmap e50: 5 total, 4 up, 5 in 2024-09-11T07:41:27.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:27 smithi115 bash[18678]: cephadm 2024-09-11T07:41:26.446847+0000 mgr.a (mgr.14150) 395 : cephadm [INF] osd.5 now down 2024-09-11T07:41:27.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:27 smithi115 bash[18678]: cephadm 2024-09-11T07:41:26.447314+0000 mgr.a (mgr.14150) 396 : cephadm [INF] Removing daemon osd.5 from smithi181 -- ports [] 2024-09-11T07:41:27.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:27 smithi150 bash[22110]: cephadm 2024-09-11T07:41:26.235521+0000 mgr.a (mgr.14150) 392 : cephadm [INF] Successfully zapped devices for osd.4 on smithi181 2024-09-11T07:41:27.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:27 smithi150 bash[22110]: audit 2024-09-11T07:41:26.236747+0000 mgr.a (mgr.14150) 393 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-11T07:41:27.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:27 smithi150 bash[22110]: audit 2024-09-11T07:41:26.239953+0000 mgr.a (mgr.14150) 394 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-11T07:41:27.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:27 smithi150 bash[22110]: cluster 2024-09-11T07:41:26.434494+0000 mon.a (mon.0) 615 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-11T07:41:27.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:27 smithi150 bash[22110]: cluster 2024-09-11T07:41:26.434556+0000 mon.a (mon.0) 616 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-11T07:41:27.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:27 smithi150 bash[22110]: audit 2024-09-11T07:41:26.444774+0000 mon.a (mon.0) 617 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-11T07:41:27.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:27 smithi150 bash[22110]: cluster 2024-09-11T07:41:26.444947+0000 mon.a (mon.0) 618 : cluster [DBG] osdmap e50: 5 total, 4 up, 5 in 2024-09-11T07:41:27.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:27 smithi150 bash[22110]: cephadm 2024-09-11T07:41:26.446847+0000 mgr.a (mgr.14150) 395 : cephadm [INF] osd.5 now down 2024-09-11T07:41:27.947 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:27 smithi150 bash[22110]: cephadm 2024-09-11T07:41:26.447314+0000 mgr.a (mgr.14150) 396 : cephadm [INF] Removing daemon osd.5 from smithi181 -- ports [] 2024-09-11T07:41:28.464 INFO:journalctl@ceph.osd.5.smithi181.stdout:Sep 11 07:41:28 smithi181 bash[32392]: debug 2024-09-11T07:41:28.064+0000 7f17a169d640 -1 osd.5 50 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-11T07:41:28.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:28 smithi181 bash[22002]: cluster 2024-09-11T07:41:27.145758+0000 mgr.a (mgr.14150) 397 : cluster [DBG] pgmap v339: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 66 KiB/s, 0 objects/s recovering 2024-09-11T07:41:28.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:28 smithi181 bash[22002]: cluster 2024-09-11T07:41:27.810407+0000 mon.a (mon.0) 619 : cluster [INF] osd.5 marked itself dead as of e50 2024-09-11T07:41:28.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:28 smithi115 bash[18678]: cluster 2024-09-11T07:41:27.145758+0000 mgr.a (mgr.14150) 397 : cluster [DBG] pgmap v339: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 66 KiB/s, 0 objects/s recovering 2024-09-11T07:41:28.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:28 smithi115 bash[18678]: cluster 2024-09-11T07:41:27.810407+0000 mon.a (mon.0) 619 : cluster [INF] osd.5 marked itself dead as of e50 2024-09-11T07:41:28.949 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:28 smithi150 bash[22110]: cluster 2024-09-11T07:41:27.145758+0000 mgr.a (mgr.14150) 397 : cluster [DBG] pgmap v339: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 66 KiB/s, 0 objects/s recovering 2024-09-11T07:41:28.949 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:28 smithi150 bash[22110]: cluster 2024-09-11T07:41:27.810407+0000 mon.a (mon.0) 619 : cluster [INF] osd.5 marked itself dead as of e50 2024-09-11T07:41:29.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:29 smithi181 bash[22002]: cluster 2024-09-11T07:41:27.809646+0000 osd.5 (osd.5) 3 : cluster [WRN] Monitor daemon marked osd.5 down, but it is still running 2024-09-11T07:41:29.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:29 smithi181 bash[22002]: cluster 2024-09-11T07:41:27.809656+0000 osd.5 (osd.5) 4 : cluster [DBG] map e50 wrongly marked me down at e50 2024-09-11T07:41:29.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:29 smithi181 bash[22002]: cluster 2024-09-11T07:41:28.459497+0000 mon.a (mon.0) 620 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-11T07:41:29.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:29 smithi181 bash[22002]: cluster 2024-09-11T07:41:28.459549+0000 mon.a (mon.0) 621 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-11T07:41:29.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:29 smithi181 bash[22002]: cluster 2024-09-11T07:41:28.459589+0000 mon.a (mon.0) 622 : cluster [INF] Cluster is now healthy 2024-09-11T07:41:29.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:29 smithi181 bash[22002]: cluster 2024-09-11T07:41:28.479127+0000 mon.a (mon.0) 623 : cluster [INF] osd.5 [v2:172.21.15.181:6808/906119179,v1:172.21.15.181:6809/906119179] boot 2024-09-11T07:41:29.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:29 smithi181 bash[22002]: cluster 2024-09-11T07:41:28.479242+0000 mon.a (mon.0) 624 : cluster [DBG] osdmap e51: 5 total, 5 up, 5 in 2024-09-11T07:41:29.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:29 smithi181 bash[22002]: audit 2024-09-11T07:41:28.479502+0000 mon.a (mon.0) 625 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T07:41:29.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:29 smithi115 bash[18678]: cluster 2024-09-11T07:41:27.809646+0000 osd.5 (osd.5) 3 : cluster [WRN] Monitor daemon marked osd.5 down, but it is still running 2024-09-11T07:41:29.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:29 smithi115 bash[18678]: cluster 2024-09-11T07:41:27.809656+0000 osd.5 (osd.5) 4 : cluster [DBG] map e50 wrongly marked me down at e50 2024-09-11T07:41:29.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:29 smithi115 bash[18678]: cluster 2024-09-11T07:41:28.459497+0000 mon.a (mon.0) 620 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-11T07:41:29.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:29 smithi115 bash[18678]: cluster 2024-09-11T07:41:28.459549+0000 mon.a (mon.0) 621 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-11T07:41:29.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:29 smithi115 bash[18678]: cluster 2024-09-11T07:41:28.459589+0000 mon.a (mon.0) 622 : cluster [INF] Cluster is now healthy 2024-09-11T07:41:29.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:29 smithi115 bash[18678]: cluster 2024-09-11T07:41:28.479127+0000 mon.a (mon.0) 623 : cluster [INF] osd.5 [v2:172.21.15.181:6808/906119179,v1:172.21.15.181:6809/906119179] boot 2024-09-11T07:41:29.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:29 smithi115 bash[18678]: cluster 2024-09-11T07:41:28.479242+0000 mon.a (mon.0) 624 : cluster [DBG] osdmap e51: 5 total, 5 up, 5 in 2024-09-11T07:41:29.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:29 smithi115 bash[18678]: audit 2024-09-11T07:41:28.479502+0000 mon.a (mon.0) 625 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T07:41:29.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:29 smithi150 bash[22110]: cluster 2024-09-11T07:41:27.809646+0000 osd.5 (osd.5) 3 : cluster [WRN] Monitor daemon marked osd.5 down, but it is still running 2024-09-11T07:41:29.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:29 smithi150 bash[22110]: cluster 2024-09-11T07:41:27.809656+0000 osd.5 (osd.5) 4 : cluster [DBG] map e50 wrongly marked me down at e50 2024-09-11T07:41:29.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:29 smithi150 bash[22110]: cluster 2024-09-11T07:41:28.459497+0000 mon.a (mon.0) 620 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-11T07:41:29.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:29 smithi150 bash[22110]: cluster 2024-09-11T07:41:28.459549+0000 mon.a (mon.0) 621 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-11T07:41:29.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:29 smithi150 bash[22110]: cluster 2024-09-11T07:41:28.459589+0000 mon.a (mon.0) 622 : cluster [INF] Cluster is now healthy 2024-09-11T07:41:29.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:29 smithi150 bash[22110]: cluster 2024-09-11T07:41:28.479127+0000 mon.a (mon.0) 623 : cluster [INF] osd.5 [v2:172.21.15.181:6808/906119179,v1:172.21.15.181:6809/906119179] boot 2024-09-11T07:41:29.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:29 smithi150 bash[22110]: cluster 2024-09-11T07:41:28.479242+0000 mon.a (mon.0) 624 : cluster [DBG] osdmap e51: 5 total, 5 up, 5 in 2024-09-11T07:41:29.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:29 smithi150 bash[22110]: audit 2024-09-11T07:41:28.479502+0000 mon.a (mon.0) 625 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T07:41:30.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:30 smithi181 bash[22002]: cluster 2024-09-11T07:41:29.146262+0000 mgr.a (mgr.14150) 398 : cluster [DBG] pgmap v341: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-11T07:41:30.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:30 smithi115 bash[18678]: cluster 2024-09-11T07:41:29.146262+0000 mgr.a (mgr.14150) 398 : cluster [DBG] pgmap v341: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-11T07:41:30.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:30 smithi150 bash[22110]: cluster 2024-09-11T07:41:29.146262+0000 mgr.a (mgr.14150) 398 : cluster [DBG] pgmap v341: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-11T07:41:31.481 INFO:journalctl@ceph.osd.5.smithi181.stdout:Sep 11 07:41:31 smithi181 systemd[1]: Stopping Ceph osd.5 for 1973416c-700f-11ef-bcea-c7b262605968... 2024-09-11T07:41:31.481 INFO:journalctl@ceph.osd.5.smithi181.stdout:Sep 11 07:41:31 smithi181 bash[32392]: debug 2024-09-11T07:41:31.352+0000 7f17a988e640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.5 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-11T07:41:31.481 INFO:journalctl@ceph.osd.5.smithi181.stdout:Sep 11 07:41:31 smithi181 bash[32392]: debug 2024-09-11T07:41:31.352+0000 7f17a988e640 -1 osd.5 51 *** Got signal Terminated *** 2024-09-11T07:41:31.481 INFO:journalctl@ceph.osd.5.smithi181.stdout:Sep 11 07:41:31 smithi181 bash[32392]: debug 2024-09-11T07:41:31.352+0000 7f17a988e640 -1 osd.5 51 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-11T07:41:31.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:31 smithi181 bash[22002]: cluster 2024-09-11T07:41:31.356637+0000 mon.a (mon.0) 626 : cluster [INF] osd.5 marked itself down and dead 2024-09-11T07:41:31.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:31 smithi115 bash[18678]: cluster 2024-09-11T07:41:31.356637+0000 mon.a (mon.0) 626 : cluster [INF] osd.5 marked itself down and dead 2024-09-11T07:41:31.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:31 smithi150 bash[22110]: cluster 2024-09-11T07:41:31.356637+0000 mon.a (mon.0) 626 : cluster [INF] osd.5 marked itself down and dead 2024-09-11T07:41:32.794 INFO:journalctl@ceph.osd.5.smithi181.stdout:Sep 11 07:41:32 smithi181 bash[38136]: ceph-1973416c-700f-11ef-bcea-c7b262605968-osd-5 2024-09-11T07:41:32.794 INFO:journalctl@ceph.osd.5.smithi181.stdout:Sep 11 07:41:32 smithi181 bash[38210]: Error response from daemon: No such container: ceph-1973416c-700f-11ef-bcea-c7b262605968-osd-5 2024-09-11T07:41:32.794 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:32 smithi181 bash[22002]: cluster 2024-09-11T07:41:31.146789+0000 mgr.a (mgr.14150) 399 : cluster [DBG] pgmap v342: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:41:32.794 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:32 smithi181 bash[22002]: cluster 2024-09-11T07:41:31.476497+0000 mon.a (mon.0) 627 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-11T07:41:32.795 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:32 smithi181 bash[22002]: cluster 2024-09-11T07:41:31.476569+0000 mon.a (mon.0) 628 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-11T07:41:32.795 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:32 smithi181 bash[22002]: cluster 2024-09-11T07:41:31.491584+0000 mon.a (mon.0) 629 : cluster [DBG] osdmap e52: 5 total, 4 up, 5 in 2024-09-11T07:41:32.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:32 smithi115 bash[18678]: cluster 2024-09-11T07:41:31.146789+0000 mgr.a (mgr.14150) 399 : cluster [DBG] pgmap v342: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:41:32.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:32 smithi115 bash[18678]: cluster 2024-09-11T07:41:31.476497+0000 mon.a (mon.0) 627 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-11T07:41:32.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:32 smithi115 bash[18678]: cluster 2024-09-11T07:41:31.476569+0000 mon.a (mon.0) 628 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-11T07:41:32.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:32 smithi115 bash[18678]: cluster 2024-09-11T07:41:31.491584+0000 mon.a (mon.0) 629 : cluster [DBG] osdmap e52: 5 total, 4 up, 5 in 2024-09-11T07:41:32.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:32 smithi150 bash[22110]: cluster 2024-09-11T07:41:31.146789+0000 mgr.a (mgr.14150) 399 : cluster [DBG] pgmap v342: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:41:32.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:32 smithi150 bash[22110]: cluster 2024-09-11T07:41:31.476497+0000 mon.a (mon.0) 627 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-11T07:41:32.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:32 smithi150 bash[22110]: cluster 2024-09-11T07:41:31.476569+0000 mon.a (mon.0) 628 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-11T07:41:32.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:32 smithi150 bash[22110]: cluster 2024-09-11T07:41:31.491584+0000 mon.a (mon.0) 629 : cluster [DBG] osdmap e52: 5 total, 4 up, 5 in 2024-09-11T07:41:34.559 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:34 smithi181 bash[22002]: cluster 2024-09-11T07:41:33.147362+0000 mgr.a (mgr.14150) 400 : cluster [DBG] pgmap v344: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:41:34.809 INFO:journalctl@ceph.osd.5.smithi181.stdout:Sep 11 07:41:34 smithi181 systemd[1]: ceph-1973416c-700f-11ef-bcea-c7b262605968@osd.5.service: Succeeded. 2024-09-11T07:41:34.809 INFO:journalctl@ceph.osd.5.smithi181.stdout:Sep 11 07:41:34 smithi181 systemd[1]: Stopped Ceph osd.5 for 1973416c-700f-11ef-bcea-c7b262605968. 2024-09-11T07:41:34.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:34 smithi115 bash[18678]: cluster 2024-09-11T07:41:33.147362+0000 mgr.a (mgr.14150) 400 : cluster [DBG] pgmap v344: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:41:34.945 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:34 smithi150 bash[22110]: cluster 2024-09-11T07:41:33.147362+0000 mgr.a (mgr.14150) 400 : cluster [DBG] pgmap v344: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-11T07:41:35.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:35 smithi181 bash[22002]: audit 2024-09-11T07:41:34.926054+0000 mon.a (mon.0) 630 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-09-11T07:41:35.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:35 smithi181 bash[22002]: audit 2024-09-11T07:41:34.933418+0000 mon.a (mon.0) 631 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-11T07:41:35.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:35 smithi181 bash[22002]: audit 2024-09-11T07:41:34.935437+0000 mon.a (mon.0) 632 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-09-11T07:41:35.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:35 smithi181 bash[22002]: cluster 2024-09-11T07:41:34.936519+0000 mon.a (mon.0) 633 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-11T07:41:35.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:35 smithi181 bash[22002]: cluster 2024-09-11T07:41:34.936570+0000 mon.a (mon.0) 634 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-11T07:41:35.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:35 smithi181 bash[22002]: cluster 2024-09-11T07:41:34.936598+0000 mon.a (mon.0) 635 : cluster [INF] Cluster is now healthy 2024-09-11T07:41:35.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:35 smithi181 bash[22002]: audit 2024-09-11T07:41:34.941344+0000 mon.a (mon.0) 636 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-11T07:41:35.811 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:35 smithi181 bash[22002]: cluster 2024-09-11T07:41:34.941421+0000 mon.a (mon.0) 637 : cluster [DBG] osdmap e53: 4 total, 4 up, 4 in 2024-09-11T07:41:35.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:35 smithi115 bash[18678]: audit 2024-09-11T07:41:34.926054+0000 mon.a (mon.0) 630 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-09-11T07:41:35.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:35 smithi115 bash[18678]: audit 2024-09-11T07:41:34.933418+0000 mon.a (mon.0) 631 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-11T07:41:35.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:35 smithi115 bash[18678]: audit 2024-09-11T07:41:34.935437+0000 mon.a (mon.0) 632 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-09-11T07:41:35.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:35 smithi115 bash[18678]: cluster 2024-09-11T07:41:34.936519+0000 mon.a (mon.0) 633 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-11T07:41:35.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:35 smithi115 bash[18678]: cluster 2024-09-11T07:41:34.936570+0000 mon.a (mon.0) 634 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-11T07:41:35.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:35 smithi115 bash[18678]: cluster 2024-09-11T07:41:34.936598+0000 mon.a (mon.0) 635 : cluster [INF] Cluster is now healthy 2024-09-11T07:41:35.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:35 smithi115 bash[18678]: audit 2024-09-11T07:41:34.941344+0000 mon.a (mon.0) 636 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-11T07:41:35.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:35 smithi115 bash[18678]: cluster 2024-09-11T07:41:34.941421+0000 mon.a (mon.0) 637 : cluster [DBG] osdmap e53: 4 total, 4 up, 4 in 2024-09-11T07:41:35.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:35 smithi150 bash[22110]: audit 2024-09-11T07:41:34.926054+0000 mon.a (mon.0) 630 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-09-11T07:41:35.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:35 smithi150 bash[22110]: audit 2024-09-11T07:41:34.933418+0000 mon.a (mon.0) 631 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-11T07:41:35.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:35 smithi150 bash[22110]: audit 2024-09-11T07:41:34.935437+0000 mon.a (mon.0) 632 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-09-11T07:41:35.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:35 smithi150 bash[22110]: cluster 2024-09-11T07:41:34.936519+0000 mon.a (mon.0) 633 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-11T07:41:35.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:35 smithi150 bash[22110]: cluster 2024-09-11T07:41:34.936570+0000 mon.a (mon.0) 634 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-11T07:41:35.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:35 smithi150 bash[22110]: cluster 2024-09-11T07:41:34.936598+0000 mon.a (mon.0) 635 : cluster [INF] Cluster is now healthy 2024-09-11T07:41:35.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:35 smithi150 bash[22110]: audit 2024-09-11T07:41:34.941344+0000 mon.a (mon.0) 636 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-11T07:41:35.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:35 smithi150 bash[22110]: cluster 2024-09-11T07:41:34.941421+0000 mon.a (mon.0) 637 : cluster [DBG] osdmap e53: 4 total, 4 up, 4 in 2024-09-11T07:41:36.359 INFO:teuthology.orchestra.run.smithi115.stderr:++ ceph orch ps --hostname smithi181 2024-09-11T07:41:36.685 INFO:teuthology.orchestra.run.smithi115.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-11T07:41:36.685 INFO:teuthology.orchestra.run.smithi115.stderr:mon.c smithi181 running (8m) 2m ago 8m 40.0M 2048M 17.2.7-1623-gd0e6828a 4a918172a497 62462f80be7c ' 2024-09-11T07:41:36.685 INFO:teuthology.orchestra.run.smithi115.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-11T07:41:36.685 INFO:teuthology.orchestra.run.smithi115.stderr:mon.c smithi181 running (8m) 2m ago 8m 40.0M 2048M 17.2.7-1623-gd0e6828a 4a918172a497 62462f80be7c ' '!=' 'No daemons reported' ']' 2024-09-11T07:41:36.685 INFO:teuthology.orchestra.run.smithi115.stderr:+ sleep 15 2024-09-11T07:41:36.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:36 smithi181 bash[22002]: cephadm 2024-09-11T07:41:34.925387+0000 mgr.a (mgr.14150) 401 : cephadm [INF] Removing key for osd.5 2024-09-11T07:41:36.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:36 smithi181 bash[22002]: cephadm 2024-09-11T07:41:34.934828+0000 mgr.a (mgr.14150) 402 : cephadm [INF] Successfully removed osd.5 on smithi181 2024-09-11T07:41:36.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:36 smithi181 bash[22002]: cephadm 2024-09-11T07:41:34.942735+0000 mgr.a (mgr.14150) 403 : cephadm [INF] Successfully purged osd.5 on smithi181 2024-09-11T07:41:36.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:36 smithi181 bash[22002]: cephadm 2024-09-11T07:41:34.942958+0000 mgr.a (mgr.14150) 404 : cephadm [INF] Zapping devices for osd.5 on smithi181 2024-09-11T07:41:36.810 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:36 smithi181 bash[22002]: cluster 2024-09-11T07:41:35.147871+0000 mgr.a (mgr.14150) 405 : cluster [DBG] pgmap v346: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:36.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:36 smithi115 bash[18678]: cephadm 2024-09-11T07:41:34.925387+0000 mgr.a (mgr.14150) 401 : cephadm [INF] Removing key for osd.5 2024-09-11T07:41:36.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:36 smithi115 bash[18678]: cephadm 2024-09-11T07:41:34.934828+0000 mgr.a (mgr.14150) 402 : cephadm [INF] Successfully removed osd.5 on smithi181 2024-09-11T07:41:36.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:36 smithi115 bash[18678]: cephadm 2024-09-11T07:41:34.942735+0000 mgr.a (mgr.14150) 403 : cephadm [INF] Successfully purged osd.5 on smithi181 2024-09-11T07:41:36.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:36 smithi115 bash[18678]: cephadm 2024-09-11T07:41:34.942958+0000 mgr.a (mgr.14150) 404 : cephadm [INF] Zapping devices for osd.5 on smithi181 2024-09-11T07:41:36.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:36 smithi115 bash[18678]: cluster 2024-09-11T07:41:35.147871+0000 mgr.a (mgr.14150) 405 : cluster [DBG] pgmap v346: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:36.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:36 smithi150 bash[22110]: cephadm 2024-09-11T07:41:34.925387+0000 mgr.a (mgr.14150) 401 : cephadm [INF] Removing key for osd.5 2024-09-11T07:41:36.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:36 smithi150 bash[22110]: cephadm 2024-09-11T07:41:34.934828+0000 mgr.a (mgr.14150) 402 : cephadm [INF] Successfully removed osd.5 on smithi181 2024-09-11T07:41:36.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:36 smithi150 bash[22110]: cephadm 2024-09-11T07:41:34.942735+0000 mgr.a (mgr.14150) 403 : cephadm [INF] Successfully purged osd.5 on smithi181 2024-09-11T07:41:36.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:36 smithi150 bash[22110]: cephadm 2024-09-11T07:41:34.942958+0000 mgr.a (mgr.14150) 404 : cephadm [INF] Zapping devices for osd.5 on smithi181 2024-09-11T07:41:36.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:36 smithi150 bash[22110]: cluster 2024-09-11T07:41:35.147871+0000 mgr.a (mgr.14150) 405 : cluster [DBG] pgmap v346: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:37.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:37 smithi181 bash[22002]: audit 2024-09-11T07:41:36.662626+0000 mgr.a (mgr.14150) 406 : audit [DBG] from='client.14544 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi181", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:41:37.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:37 smithi115 bash[18678]: audit 2024-09-11T07:41:36.662626+0000 mgr.a (mgr.14150) 406 : audit [DBG] from='client.14544 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi181", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:41:37.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:37 smithi150 bash[22110]: audit 2024-09-11T07:41:36.662626+0000 mgr.a (mgr.14150) 406 : audit [DBG] from='client.14544 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi181", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:41:38.801 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:38 smithi181 bash[22002]: cluster 2024-09-11T07:41:37.148499+0000 mgr.a (mgr.14150) 407 : cluster [DBG] pgmap v347: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:38.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:38 smithi115 bash[18678]: cluster 2024-09-11T07:41:37.148499+0000 mgr.a (mgr.14150) 407 : cluster [DBG] pgmap v347: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:38.945 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:38 smithi150 bash[22110]: cluster 2024-09-11T07:41:37.148499+0000 mgr.a (mgr.14150) 407 : cluster [DBG] pgmap v347: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:40.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:40 smithi181 bash[22002]: cluster 2024-09-11T07:41:39.149163+0000 mgr.a (mgr.14150) 408 : cluster [DBG] pgmap v348: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:40.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:40 smithi115 bash[18678]: cluster 2024-09-11T07:41:39.149163+0000 mgr.a (mgr.14150) 408 : cluster [DBG] pgmap v348: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:40.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:40 smithi150 bash[22110]: cluster 2024-09-11T07:41:39.149163+0000 mgr.a (mgr.14150) 408 : cluster [DBG] pgmap v348: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:42.809 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:42 smithi181 bash[22002]: cluster 2024-09-11T07:41:41.149757+0000 mgr.a (mgr.14150) 409 : cluster [DBG] pgmap v349: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:42.849 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:42 smithi115 bash[18678]: cluster 2024-09-11T07:41:41.149757+0000 mgr.a (mgr.14150) 409 : cluster [DBG] pgmap v349: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:42.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:42 smithi150 bash[22110]: cluster 2024-09-11T07:41:41.149757+0000 mgr.a (mgr.14150) 409 : cluster [DBG] pgmap v349: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:45.059 INFO:journalctl@ceph.mon.c.smithi181.stdout:Sep 11 07:41:44 smithi181 systemd[1]: ceph-1973416c-700f-11ef-bcea-c7b262605968@mon.c.service: Succeeded. 2024-09-11T07:41:46.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:45 smithi115 bash[18678]: cephadm 2024-09-11T07:41:43.869357+0000 mgr.a (mgr.14150) 411 : cephadm [INF] Successfully zapped devices for osd.5 on smithi181 2024-09-11T07:41:46.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:45 smithi115 bash[18678]: cephadm 2024-09-11T07:41:43.886356+0000 mgr.a (mgr.14150) 412 : cephadm [INF] Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-11T07:41:46.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:45 smithi115 bash[18678]: cephadm 2024-09-11T07:41:43.886591+0000 mgr.a (mgr.14150) 413 : cephadm [INF] Removing monitor c from monmap... 2024-09-11T07:41:46.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:45 smithi115 bash[18678]: cephadm 2024-09-11T07:41:43.888879+0000 mgr.a (mgr.14150) 414 : cephadm [INF] Removing daemon mon.c from smithi181 -- ports [] 2024-09-11T07:41:46.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:45 smithi115 bash[18678]: audit 2024-09-11T07:41:43.895803+0000 mon.a (mon.0) 642 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-11T07:41:46.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:45 smithi115 bash[18678]: audit 2024-09-11T07:41:43.896336+0000 mon.a (mon.0) 643 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:41:46.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:45 smithi115 bash[18678]: cluster 2024-09-11T07:41:43.901944+0000 mon.b (mon.1) 16 : cluster [INF] mon.b calling monitor election 2024-09-11T07:41:46.348 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:45 smithi115 bash[18678]: cluster 2024-09-11T07:41:45.150825+0000 mgr.a (mgr.14150) 415 : cluster [DBG] pgmap v351: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:46.348 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:45 smithi115 bash[18678]: cluster 2024-09-11T07:41:45.896565+0000 mon.a (mon.0) 644 : cluster [INF] mon.a calling monitor election 2024-09-11T07:41:46.348 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:45 smithi115 bash[18678]: cluster 2024-09-11T07:41:45.916970+0000 mon.a (mon.0) 645 : cluster [INF] mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-11T07:41:46.348 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:45 smithi115 bash[18678]: cluster 2024-09-11T07:41:45.923961+0000 mon.a (mon.0) 646 : cluster [DBG] monmap e4: 2 mons at {a=[v2:172.21.15.115:3300/0,v1:172.21.15.115:6789/0],b=[v2:172.21.15.150:3300/0,v1:172.21.15.150:6789/0]} removed_ranks: {1} disallowed_leaders: {} 2024-09-11T07:41:46.348 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:45 smithi115 bash[18678]: cluster 2024-09-11T07:41:45.925085+0000 mon.a (mon.0) 647 : cluster [DBG] fsmap 2024-09-11T07:41:46.348 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:45 smithi115 bash[18678]: cluster 2024-09-11T07:41:45.925160+0000 mon.a (mon.0) 648 : cluster [DBG] osdmap e53: 4 total, 4 up, 4 in 2024-09-11T07:41:46.348 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:45 smithi115 bash[18678]: cluster 2024-09-11T07:41:45.925932+0000 mon.a (mon.0) 649 : cluster [DBG] mgrmap e15: a(active, since 10m), standbys: b 2024-09-11T07:41:46.348 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:45 smithi115 bash[18678]: cluster 2024-09-11T07:41:45.926200+0000 mon.a (mon.0) 650 : cluster [INF] overall HEALTH_OK 2024-09-11T07:41:46.348 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:45 smithi115 bash[18678]: audit 2024-09-11T07:41:45.934670+0000 mon.a (mon.0) 651 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:46.348 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:45 smithi115 bash[18678]: audit 2024-09-11T07:41:45.943603+0000 mon.a (mon.0) 652 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:46.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:45 smithi150 bash[22110]: cephadm 2024-09-11T07:41:43.869357+0000 mgr.a (mgr.14150) 411 : cephadm [INF] Successfully zapped devices for osd.5 on smithi181 2024-09-11T07:41:46.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:45 smithi150 bash[22110]: cephadm 2024-09-11T07:41:43.886356+0000 mgr.a (mgr.14150) 412 : cephadm [INF] Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-11T07:41:46.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:45 smithi150 bash[22110]: cephadm 2024-09-11T07:41:43.886591+0000 mgr.a (mgr.14150) 413 : cephadm [INF] Removing monitor c from monmap... 2024-09-11T07:41:46.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:45 smithi150 bash[22110]: cephadm 2024-09-11T07:41:43.888879+0000 mgr.a (mgr.14150) 414 : cephadm [INF] Removing daemon mon.c from smithi181 -- ports [] 2024-09-11T07:41:46.447 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:45 smithi150 bash[22110]: audit 2024-09-11T07:41:43.895803+0000 mon.a (mon.0) 642 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-11T07:41:46.447 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:45 smithi150 bash[22110]: audit 2024-09-11T07:41:43.896336+0000 mon.a (mon.0) 643 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-11T07:41:46.447 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:45 smithi150 bash[22110]: cluster 2024-09-11T07:41:43.901944+0000 mon.b (mon.1) 16 : cluster [INF] mon.b calling monitor election 2024-09-11T07:41:46.447 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:45 smithi150 bash[22110]: cluster 2024-09-11T07:41:45.150825+0000 mgr.a (mgr.14150) 415 : cluster [DBG] pgmap v351: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:46.447 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:45 smithi150 bash[22110]: cluster 2024-09-11T07:41:45.896565+0000 mon.a (mon.0) 644 : cluster [INF] mon.a calling monitor election 2024-09-11T07:41:46.447 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:45 smithi150 bash[22110]: cluster 2024-09-11T07:41:45.916970+0000 mon.a (mon.0) 645 : cluster [INF] mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-11T07:41:46.447 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:45 smithi150 bash[22110]: cluster 2024-09-11T07:41:45.923961+0000 mon.a (mon.0) 646 : cluster [DBG] monmap e4: 2 mons at {a=[v2:172.21.15.115:3300/0,v1:172.21.15.115:6789/0],b=[v2:172.21.15.150:3300/0,v1:172.21.15.150:6789/0]} removed_ranks: {1} disallowed_leaders: {} 2024-09-11T07:41:46.447 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:45 smithi150 bash[22110]: cluster 2024-09-11T07:41:45.925085+0000 mon.a (mon.0) 647 : cluster [DBG] fsmap 2024-09-11T07:41:46.447 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:45 smithi150 bash[22110]: cluster 2024-09-11T07:41:45.925160+0000 mon.a (mon.0) 648 : cluster [DBG] osdmap e53: 4 total, 4 up, 4 in 2024-09-11T07:41:46.447 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:45 smithi150 bash[22110]: cluster 2024-09-11T07:41:45.925932+0000 mon.a (mon.0) 649 : cluster [DBG] mgrmap e15: a(active, since 10m), standbys: b 2024-09-11T07:41:46.447 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:45 smithi150 bash[22110]: cluster 2024-09-11T07:41:45.926200+0000 mon.a (mon.0) 650 : cluster [INF] overall HEALTH_OK 2024-09-11T07:41:46.447 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:45 smithi150 bash[22110]: audit 2024-09-11T07:41:45.934670+0000 mon.a (mon.0) 651 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:46.447 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:45 smithi150 bash[22110]: audit 2024-09-11T07:41:45.943603+0000 mon.a (mon.0) 652 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:47.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:46 smithi115 bash[18678]: audit 2024-09-11T07:41:46.011127+0000 mon.a (mon.0) 653 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:41:47.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:46 smithi115 bash[18678]: audit 2024-09-11T07:41:46.317428+0000 mon.a (mon.0) 654 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:47.347 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:46 smithi115 bash[18678]: audit 2024-09-11T07:41:46.323002+0000 mon.a (mon.0) 655 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:47.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:46 smithi150 bash[22110]: audit 2024-09-11T07:41:46.011127+0000 mon.a (mon.0) 653 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:41:47.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:46 smithi150 bash[22110]: audit 2024-09-11T07:41:46.317428+0000 mon.a (mon.0) 654 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:47.446 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:46 smithi150 bash[22110]: audit 2024-09-11T07:41:46.323002+0000 mon.a (mon.0) 655 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:48.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:48 smithi115 bash[18678]: cluster 2024-09-11T07:41:47.151313+0000 mgr.a (mgr.14150) 416 : cluster [DBG] pgmap v352: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:48.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:48 smithi115 bash[18678]: audit 2024-09-11T07:41:47.325129+0000 mon.a (mon.0) 656 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:48.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:48 smithi115 bash[18678]: audit 2024-09-11T07:41:47.332210+0000 mon.a (mon.0) 657 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:48.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:48 smithi115 bash[18678]: audit 2024-09-11T07:41:47.734338+0000 mon.a (mon.0) 658 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:48.695 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:48 smithi150 bash[22110]: cluster 2024-09-11T07:41:47.151313+0000 mgr.a (mgr.14150) 416 : cluster [DBG] pgmap v352: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:48.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:48 smithi150 bash[22110]: audit 2024-09-11T07:41:47.325129+0000 mon.a (mon.0) 656 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:48.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:48 smithi150 bash[22110]: audit 2024-09-11T07:41:47.332210+0000 mon.a (mon.0) 657 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:48.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:48 smithi150 bash[22110]: audit 2024-09-11T07:41:47.734338+0000 mon.a (mon.0) 658 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:50.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:50 smithi115 bash[18678]: cluster 2024-09-11T07:41:49.151822+0000 mgr.a (mgr.14150) 417 : cluster [DBG] pgmap v353: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:50.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:50 smithi150 bash[22110]: cluster 2024-09-11T07:41:49.151822+0000 mgr.a (mgr.14150) 417 : cluster [DBG] pgmap v353: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:51.688 INFO:teuthology.orchestra.run.smithi115.stderr:++ ceph orch ps --hostname smithi181 2024-09-11T07:41:52.004 INFO:teuthology.orchestra.run.smithi115.stderr:+ HOST_C_DAEMONS='No daemons reported' 2024-09-11T07:41:52.004 INFO:teuthology.orchestra.run.smithi115.stderr:+ '[' 'No daemons reported' '!=' 'No daemons reported' ']' 2024-09-11T07:41:52.004 INFO:teuthology.orchestra.run.smithi115.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-11T07:41:52.288 INFO:teuthology.orchestra.run.smithi115.stderr:17 2024-09-11T07:41:52.305 INFO:teuthology.orchestra.run.smithi115.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-11T07:41:52.319 INFO:teuthology.orchestra.run.smithi115.stderr:++ cat crushmap.txt 2024-09-11T07:41:52.320 INFO:teuthology.orchestra.run.smithi115.stderr:+ CRUSH_MAP='# begin crush map 2024-09-11T07:41:52.320 INFO:teuthology.orchestra.run.smithi115.stderr:tunable choose_local_tries 0 2024-09-11T07:41:52.320 INFO:teuthology.orchestra.run.smithi115.stderr:tunable choose_local_fallback_tries 0 2024-09-11T07:41:52.320 INFO:teuthology.orchestra.run.smithi115.stderr:tunable choose_total_tries 50 2024-09-11T07:41:52.321 INFO:teuthology.orchestra.run.smithi115.stderr:tunable chooseleaf_descend_once 1 2024-09-11T07:41:52.321 INFO:teuthology.orchestra.run.smithi115.stderr:tunable chooseleaf_vary_r 1 2024-09-11T07:41:52.321 INFO:teuthology.orchestra.run.smithi115.stderr:tunable chooseleaf_stable 1 2024-09-11T07:41:52.321 INFO:teuthology.orchestra.run.smithi115.stderr:tunable straw_calc_version 1 2024-09-11T07:41:52.321 INFO:teuthology.orchestra.run.smithi115.stderr:tunable allowed_bucket_algs 54 2024-09-11T07:41:52.321 INFO:teuthology.orchestra.run.smithi115.stderr: 2024-09-11T07:41:52.321 INFO:teuthology.orchestra.run.smithi115.stderr:# devices 2024-09-11T07:41:52.321 INFO:teuthology.orchestra.run.smithi115.stderr:device 0 osd.0 class ssd 2024-09-11T07:41:52.321 INFO:teuthology.orchestra.run.smithi115.stderr:device 1 osd.1 class ssd 2024-09-11T07:41:52.321 INFO:teuthology.orchestra.run.smithi115.stderr:device 2 osd.2 class ssd 2024-09-11T07:41:52.321 INFO:teuthology.orchestra.run.smithi115.stderr:device 3 osd.3 class ssd 2024-09-11T07:41:52.321 INFO:teuthology.orchestra.run.smithi115.stderr: 2024-09-11T07:41:52.321 INFO:teuthology.orchestra.run.smithi115.stderr:# types 2024-09-11T07:41:52.321 INFO:teuthology.orchestra.run.smithi115.stderr:type 0 osd 2024-09-11T07:41:52.322 INFO:teuthology.orchestra.run.smithi115.stderr:type 1 host 2024-09-11T07:41:52.322 INFO:teuthology.orchestra.run.smithi115.stderr:type 2 chassis 2024-09-11T07:41:52.322 INFO:teuthology.orchestra.run.smithi115.stderr:type 3 rack 2024-09-11T07:41:52.322 INFO:teuthology.orchestra.run.smithi115.stderr:type 4 row 2024-09-11T07:41:52.322 INFO:teuthology.orchestra.run.smithi115.stderr:type 5 pdu 2024-09-11T07:41:52.322 INFO:teuthology.orchestra.run.smithi115.stderr:type 6 pod 2024-09-11T07:41:52.322 INFO:teuthology.orchestra.run.smithi115.stderr:type 7 room 2024-09-11T07:41:52.322 INFO:teuthology.orchestra.run.smithi115.stderr:type 8 datacenter 2024-09-11T07:41:52.322 INFO:teuthology.orchestra.run.smithi115.stderr:type 9 zone 2024-09-11T07:41:52.322 INFO:teuthology.orchestra.run.smithi115.stderr:type 10 region 2024-09-11T07:41:52.322 INFO:teuthology.orchestra.run.smithi115.stderr:type 11 root 2024-09-11T07:41:52.322 INFO:teuthology.orchestra.run.smithi115.stderr: 2024-09-11T07:41:52.322 INFO:teuthology.orchestra.run.smithi115.stderr:# buckets 2024-09-11T07:41:52.323 INFO:teuthology.orchestra.run.smithi115.stderr:host smithi115 { 2024-09-11T07:41:52.323 INFO:teuthology.orchestra.run.smithi115.stderr: id -3 # do not change unnecessarily 2024-09-11T07:41:52.323 INFO:teuthology.orchestra.run.smithi115.stderr: id -4 class ssd # do not change unnecessarily 2024-09-11T07:41:52.323 INFO:teuthology.orchestra.run.smithi115.stderr: # weight 0.17459 2024-09-11T07:41:52.323 INFO:teuthology.orchestra.run.smithi115.stderr: alg straw2 2024-09-11T07:41:52.323 INFO:teuthology.orchestra.run.smithi115.stderr: hash 0 # rjenkins1 2024-09-11T07:41:52.323 INFO:teuthology.orchestra.run.smithi115.stderr: item osd.0 weight 0.08730 2024-09-11T07:41:52.323 INFO:teuthology.orchestra.run.smithi115.stderr: item osd.1 weight 0.08730 2024-09-11T07:41:52.323 INFO:teuthology.orchestra.run.smithi115.stderr:} 2024-09-11T07:41:52.323 INFO:teuthology.orchestra.run.smithi115.stderr:host smithi150 { 2024-09-11T07:41:52.323 INFO:teuthology.orchestra.run.smithi115.stderr: id -5 # do not change unnecessarily 2024-09-11T07:41:52.323 INFO:teuthology.orchestra.run.smithi115.stderr: id -6 class ssd # do not change unnecessarily 2024-09-11T07:41:52.323 INFO:teuthology.orchestra.run.smithi115.stderr: # weight 0.17459 2024-09-11T07:41:52.323 INFO:teuthology.orchestra.run.smithi115.stderr: alg straw2 2024-09-11T07:41:52.324 INFO:teuthology.orchestra.run.smithi115.stderr: hash 0 # rjenkins1 2024-09-11T07:41:52.324 INFO:teuthology.orchestra.run.smithi115.stderr: item osd.2 weight 0.08730 2024-09-11T07:41:52.324 INFO:teuthology.orchestra.run.smithi115.stderr: item osd.3 weight 0.08730 2024-09-11T07:41:52.324 INFO:teuthology.orchestra.run.smithi115.stderr:} 2024-09-11T07:41:52.324 INFO:teuthology.orchestra.run.smithi115.stderr:host smithi181 { 2024-09-11T07:41:52.324 INFO:teuthology.orchestra.run.smithi115.stderr: id -7 # do not change unnecessarily 2024-09-11T07:41:52.324 INFO:teuthology.orchestra.run.smithi115.stderr: id -8 class ssd # do not change unnecessarily 2024-09-11T07:41:52.324 INFO:teuthology.orchestra.run.smithi115.stderr: # weight 0.00000 2024-09-11T07:41:52.324 INFO:teuthology.orchestra.run.smithi115.stderr: alg straw2 2024-09-11T07:41:52.324 INFO:teuthology.orchestra.run.smithi115.stderr: hash 0 # rjenkins1 2024-09-11T07:41:52.324 INFO:teuthology.orchestra.run.smithi115.stderr:} 2024-09-11T07:41:52.324 INFO:teuthology.orchestra.run.smithi115.stderr:root default { 2024-09-11T07:41:52.324 INFO:teuthology.orchestra.run.smithi115.stderr: id -1 # do not change unnecessarily 2024-09-11T07:41:52.324 INFO:teuthology.orchestra.run.smithi115.stderr: id -2 class ssd # do not change unnecessarily 2024-09-11T07:41:52.325 INFO:teuthology.orchestra.run.smithi115.stderr: # weight 0.34918 2024-09-11T07:41:52.325 INFO:teuthology.orchestra.run.smithi115.stderr: alg straw2 2024-09-11T07:41:52.325 INFO:teuthology.orchestra.run.smithi115.stderr: hash 0 # rjenkins1 2024-09-11T07:41:52.325 INFO:teuthology.orchestra.run.smithi115.stderr: item smithi115 weight 0.17459 2024-09-11T07:41:52.325 INFO:teuthology.orchestra.run.smithi115.stderr: item smithi150 weight 0.17459 2024-09-11T07:41:52.325 INFO:teuthology.orchestra.run.smithi115.stderr: item smithi181 weight 0.00000 2024-09-11T07:41:52.325 INFO:teuthology.orchestra.run.smithi115.stderr:} 2024-09-11T07:41:52.325 INFO:teuthology.orchestra.run.smithi115.stderr: 2024-09-11T07:41:52.325 INFO:teuthology.orchestra.run.smithi115.stderr:# rules 2024-09-11T07:41:52.325 INFO:teuthology.orchestra.run.smithi115.stderr:rule replicated_rule { 2024-09-11T07:41:52.325 INFO:teuthology.orchestra.run.smithi115.stderr: id 0 2024-09-11T07:41:52.325 INFO:teuthology.orchestra.run.smithi115.stderr: type replicated 2024-09-11T07:41:52.325 INFO:teuthology.orchestra.run.smithi115.stderr: step take default 2024-09-11T07:41:52.325 INFO:teuthology.orchestra.run.smithi115.stderr: step choose firstn 0 type osd 2024-09-11T07:41:52.326 INFO:teuthology.orchestra.run.smithi115.stderr: step emit 2024-09-11T07:41:52.326 INFO:teuthology.orchestra.run.smithi115.stderr:} 2024-09-11T07:41:52.326 INFO:teuthology.orchestra.run.smithi115.stderr: 2024-09-11T07:41:52.326 INFO:teuthology.orchestra.run.smithi115.stderr:# end crush map' 2024-09-11T07:41:52.326 INFO:teuthology.orchestra.run.smithi115.stderr:+ grep -q smithi181 2024-09-11T07:41:52.326 INFO:teuthology.orchestra.run.smithi115.stderr:+ ceph orch host rm smithi181 --rm-crush-entry 2024-09-11T07:41:52.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:52 smithi115 bash[18678]: cluster 2024-09-11T07:41:51.152339+0000 mgr.a (mgr.14150) 418 : cluster [DBG] pgmap v354: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:52.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:52 smithi115 bash[18678]: audit 2024-09-11T07:41:52.285480+0000 mon.a (mon.0) 659 : audit [DBG] from='client.? 172.21.15.115:0/155114342' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-11T07:41:52.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:52 smithi150 bash[22110]: cluster 2024-09-11T07:41:51.152339+0000 mgr.a (mgr.14150) 418 : cluster [DBG] pgmap v354: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:52.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:52 smithi150 bash[22110]: audit 2024-09-11T07:41:52.285480+0000 mon.a (mon.0) 659 : audit [DBG] from='client.? 172.21.15.115:0/155114342' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-11T07:41:53.367 INFO:teuthology.orchestra.run.smithi115.stdout:Removed host 'smithi181' 2024-09-11T07:41:53.389 INFO:teuthology.orchestra.run.smithi115.stderr:+ sleep 30 2024-09-11T07:41:53.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18678]: audit 2024-09-11T07:41:51.984623+0000 mgr.a (mgr.14150) 419 : audit [DBG] from='client.14548 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi181", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:41:53.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18678]: audit 2024-09-11T07:41:52.615291+0000 mgr.a (mgr.14150) 420 : audit [DBG] from='client.14556 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi181", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:41:53.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18678]: audit 2024-09-11T07:41:52.616113+0000 mon.a (mon.0) 660 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi181"}]: dispatch 2024-09-11T07:41:53.597 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: debug 2024-09-11T07:41:53.358+0000 7fabca85a640 -1 log_channel(cephadm) log [ERR] : host smithi181 `cephadm ceph-volume` failed: Cannot decode JSON: 2024-09-11T07:41:53.597 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: Traceback (most recent call last): 2024-09-11T07:41:53.597 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1434, in _run_cephadm_json 2024-09-11T07:41:53.597 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: return json.loads(''.join(out)) 2024-09-11T07:41:53.597 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: File "/lib64/python3.9/json/__init__.py", line 346, in loads 2024-09-11T07:41:53.597 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: return _default_decoder.decode(s) 2024-09-11T07:41:53.597 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: File "/lib64/python3.9/json/decoder.py", line 337, in decode 2024-09-11T07:41:53.598 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: obj, end = self.raw_decode(s, idx=_w(s, 0).end()) 2024-09-11T07:41:53.598 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: File "/lib64/python3.9/json/decoder.py", line 355, in raw_decode 2024-09-11T07:41:53.598 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: raise JSONDecodeError("Expecting value", s, err.value) from None 2024-09-11T07:41:53.598 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0) 2024-09-11T07:41:53.598 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: debug 2024-09-11T07:41:53.358+0000 7fabd58b0640 -1 log_channel(cephadm) log [ERR] : executing refresh((['smithi115', 'smithi150', 'smithi181'],)) failed. 2024-09-11T07:41:53.598 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: Traceback (most recent call last): 2024-09-11T07:41:53.598 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 88, in do_work 2024-09-11T07:41:53.598 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: return f(*arg) 2024-09-11T07:41:53.598 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 268, in refresh 2024-09-11T07:41:53.598 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: and not self.mgr.inventory.has_label(host, SpecialHostLabels.NO_MEMORY_AUTOTUNE) 2024-09-11T07:41:53.598 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 167, in has_label 2024-09-11T07:41:53.598 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: host = self._get_stored_name(host) 2024-09-11T07:41:53.598 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 104, in _get_stored_name 2024-09-11T07:41:53.599 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: self.assert_host(host) 2024-09-11T07:41:53.599 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 123, in assert_host 2024-09-11T07:41:53.599 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: raise OrchestratorError('host %s does not exist' % host) 2024-09-11T07:41:53.599 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: orchestrator._interface.OrchestratorError: host smithi181 does not exist 2024-09-11T07:41:53.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:53 smithi150 bash[22110]: audit 2024-09-11T07:41:51.984623+0000 mgr.a (mgr.14150) 419 : audit [DBG] from='client.14548 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi181", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:41:53.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:53 smithi150 bash[22110]: audit 2024-09-11T07:41:52.615291+0000 mgr.a (mgr.14150) 420 : audit [DBG] from='client.14556 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi181", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T07:41:53.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:53 smithi150 bash[22110]: audit 2024-09-11T07:41:52.616113+0000 mon.a (mon.0) 660 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi181"}]: dispatch 2024-09-11T07:41:54.045 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: debug 2024-09-11T07:41:53.682+0000 7fabce8a2640 -1 log_channel(cephadm) log [ERR] : Failed to apply mon spec MONSpec.from_json(yaml.safe_load('''service_type: mon 2024-09-11T07:41:54.045 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: service_name: mon 2024-09-11T07:41:54.045 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: placement: 2024-09-11T07:41:54.045 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: count: 3 2024-09-11T07:41:54.045 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: hosts: 2024-09-11T07:41:54.045 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: - smithi115:172.21.15.115=a 2024-09-11T07:41:54.045 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: - smithi150:172.21.15.150=b 2024-09-11T07:41:54.045 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: - smithi181:172.21.15.181=c 2024-09-11T07:41:54.045 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:41:53 smithi115 bash[18949]: ''')): Cannot place on smithi181: Unknown hosts 2024-09-11T07:41:54.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: cluster 2024-09-11T07:41:53.152902+0000 mgr.a (mgr.14150) 421 : cluster [DBG] pgmap v355: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:54.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: audit 2024-09-11T07:41:53.345898+0000 mon.a (mon.0) 661 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi181"}]': finished 2024-09-11T07:41:54.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: cluster 2024-09-11T07:41:53.346039+0000 mon.a (mon.0) 662 : cluster [DBG] osdmap e54: 4 total, 4 up, 4 in 2024-09-11T07:41:54.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: audit 2024-09-11T07:41:53.353060+0000 mon.a (mon.0) 663 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:54.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: audit 2024-09-11T07:41:53.354044+0000 mon.a (mon.0) 664 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi181"}]: dispatch 2024-09-11T07:41:54.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: audit 2024-09-11T07:41:53.359058+0000 mon.a (mon.0) 665 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi181"}]': finished 2024-09-11T07:41:54.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: cephadm 2024-09-11T07:41:53.363661+0000 mgr.a (mgr.14150) 422 : cephadm [ERR] host smithi181 `cephadm ceph-volume` failed: Cannot decode JSON: 2024-09-11T07:41:54.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: Traceback (most recent call last): 2024-09-11T07:41:54.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1434, in _run_cephadm_json 2024-09-11T07:41:54.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: return json.loads(''.join(out)) 2024-09-11T07:41:54.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: File "/lib64/python3.9/json/__init__.py", line 346, in loads 2024-09-11T07:41:54.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: return _default_decoder.decode(s) 2024-09-11T07:41:54.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: File "/lib64/python3.9/json/decoder.py", line 337, in decode 2024-09-11T07:41:54.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: obj, end = self.raw_decode(s, idx=_w(s, 0).end()) 2024-09-11T07:41:54.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: File "/lib64/python3.9/json/decoder.py", line 355, in raw_decode 2024-09-11T07:41:54.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: raise JSONDecodeError("Expecting value", s, err.value) from None 2024-09-11T07:41:54.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0) 2024-09-11T07:41:54.599 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: cephadm 2024-09-11T07:41:53.363881+0000 mgr.a (mgr.14150) 423 : cephadm [INF] Removed host smithi181 2024-09-11T07:41:54.599 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: cephadm 2024-09-11T07:41:53.365383+0000 mgr.a (mgr.14150) 424 : cephadm [ERR] executing refresh((['smithi115', 'smithi150', 'smithi181'],)) failed. 2024-09-11T07:41:54.599 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: Traceback (most recent call last): 2024-09-11T07:41:54.599 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 88, in do_work 2024-09-11T07:41:54.599 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: return f(*arg) 2024-09-11T07:41:54.599 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 268, in refresh 2024-09-11T07:41:54.599 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: and not self.mgr.inventory.has_label(host, SpecialHostLabels.NO_MEMORY_AUTOTUNE) 2024-09-11T07:41:54.599 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 167, in has_label 2024-09-11T07:41:54.599 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: host = self._get_stored_name(host) 2024-09-11T07:41:54.599 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 104, in _get_stored_name 2024-09-11T07:41:54.599 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: self.assert_host(host) 2024-09-11T07:41:54.599 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 123, in assert_host 2024-09-11T07:41:54.599 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: raise OrchestratorError('host %s does not exist' % host) 2024-09-11T07:41:54.599 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: orchestrator._interface.OrchestratorError: host smithi181 does not exist 2024-09-11T07:41:54.600 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: audit 2024-09-11T07:41:53.366724+0000 mon.a (mon.0) 666 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:41:54.600 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: audit 2024-09-11T07:41:53.369520+0000 mon.a (mon.0) 667 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:41:54.600 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: audit 2024-09-11T07:41:53.371091+0000 mon.a (mon.0) 668 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:41:54.600 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: cephadm 2024-09-11T07:41:53.372827+0000 mgr.a (mgr.14150) 425 : cephadm [INF] Updating smithi115:/etc/ceph/ceph.conf 2024-09-11T07:41:54.600 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: cephadm 2024-09-11T07:41:53.373152+0000 mgr.a (mgr.14150) 426 : cephadm [INF] Updating smithi150:/etc/ceph/ceph.conf 2024-09-11T07:41:54.600 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: cephadm 2024-09-11T07:41:53.506474+0000 mgr.a (mgr.14150) 427 : cephadm [INF] Updating smithi115:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T07:41:54.600 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: cephadm 2024-09-11T07:41:53.512701+0000 mgr.a (mgr.14150) 428 : cephadm [INF] Updating smithi150:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T07:41:54.600 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: audit 2024-09-11T07:41:53.639771+0000 mon.a (mon.0) 669 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:54.601 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: audit 2024-09-11T07:41:53.648849+0000 mon.a (mon.0) 670 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:54.601 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: audit 2024-09-11T07:41:53.667818+0000 mon.a (mon.0) 671 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:54.601 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: audit 2024-09-11T07:41:53.673699+0000 mon.a (mon.0) 672 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:54.601 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: cluster 2024-09-11T07:41:53.675953+0000 mgr.a (mgr.14150) 429 : cluster [DBG] pgmap v357: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:54.601 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: audit 2024-09-11T07:41:53.682376+0000 mon.a (mon.0) 673 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:54.601 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: cephadm 2024-09-11T07:41:53.686471+0000 mgr.a (mgr.14150) 430 : cephadm [ERR] Failed to apply mon spec MONSpec.from_json(yaml.safe_load('''service_type: mon 2024-09-11T07:41:54.601 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: service_name: mon 2024-09-11T07:41:54.601 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: placement: 2024-09-11T07:41:54.601 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: count: 3 2024-09-11T07:41:54.601 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: hosts: 2024-09-11T07:41:54.601 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: - smithi115:172.21.15.115=a 2024-09-11T07:41:54.601 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: - smithi150:172.21.15.150=b 2024-09-11T07:41:54.601 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: - smithi181:172.21.15.181=c 2024-09-11T07:41:54.602 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: ''')): Cannot place on smithi181: Unknown hosts 2024-09-11T07:41:54.602 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: cluster 2024-09-11T07:41:53.686932+0000 mgr.a (mgr.14150) 431 : cluster [DBG] pgmap v358: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:54.602 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: cephadm 2024-09-11T07:41:53.727265+0000 mgr.a (mgr.14150) 432 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-11T07:41:54.602 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: audit 2024-09-11T07:41:53.727798+0000 mon.a (mon.0) 674 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-11T07:41:54.602 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: audit 2024-09-11T07:41:53.729496+0000 mon.a (mon.0) 675 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-11T07:41:54.602 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: audit 2024-09-11T07:41:53.730819+0000 mon.a (mon.0) 676 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:41:54.602 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:54 smithi115 bash[18678]: cephadm 2024-09-11T07:41:53.732161+0000 mgr.a (mgr.14150) 433 : cephadm [INF] Reconfiguring daemon mon.a on smithi115 2024-09-11T07:41:54.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: cluster 2024-09-11T07:41:53.152902+0000 mgr.a (mgr.14150) 421 : cluster [DBG] pgmap v355: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:54.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: audit 2024-09-11T07:41:53.345898+0000 mon.a (mon.0) 661 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi181"}]': finished 2024-09-11T07:41:54.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: cluster 2024-09-11T07:41:53.346039+0000 mon.a (mon.0) 662 : cluster [DBG] osdmap e54: 4 total, 4 up, 4 in 2024-09-11T07:41:54.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: audit 2024-09-11T07:41:53.353060+0000 mon.a (mon.0) 663 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:54.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: audit 2024-09-11T07:41:53.354044+0000 mon.a (mon.0) 664 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi181"}]: dispatch 2024-09-11T07:41:54.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: audit 2024-09-11T07:41:53.359058+0000 mon.a (mon.0) 665 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi181"}]': finished 2024-09-11T07:41:54.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: cephadm 2024-09-11T07:41:53.363661+0000 mgr.a (mgr.14150) 422 : cephadm [ERR] host smithi181 `cephadm ceph-volume` failed: Cannot decode JSON: 2024-09-11T07:41:54.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: Traceback (most recent call last): 2024-09-11T07:41:54.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1434, in _run_cephadm_json 2024-09-11T07:41:54.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: return json.loads(''.join(out)) 2024-09-11T07:41:54.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: File "/lib64/python3.9/json/__init__.py", line 346, in loads 2024-09-11T07:41:54.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: return _default_decoder.decode(s) 2024-09-11T07:41:54.697 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: File "/lib64/python3.9/json/decoder.py", line 337, in decode 2024-09-11T07:41:54.698 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: obj, end = self.raw_decode(s, idx=_w(s, 0).end()) 2024-09-11T07:41:54.698 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: File "/lib64/python3.9/json/decoder.py", line 355, in raw_decode 2024-09-11T07:41:54.698 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: raise JSONDecodeError("Expecting value", s, err.value) from None 2024-09-11T07:41:54.698 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0) 2024-09-11T07:41:54.698 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: cephadm 2024-09-11T07:41:53.363881+0000 mgr.a (mgr.14150) 423 : cephadm [INF] Removed host smithi181 2024-09-11T07:41:54.698 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: cephadm 2024-09-11T07:41:53.365383+0000 mgr.a (mgr.14150) 424 : cephadm [ERR] executing refresh((['smithi115', 'smithi150', 'smithi181'],)) failed. 2024-09-11T07:41:54.698 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: Traceback (most recent call last): 2024-09-11T07:41:54.698 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 88, in do_work 2024-09-11T07:41:54.698 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: return f(*arg) 2024-09-11T07:41:54.698 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 268, in refresh 2024-09-11T07:41:54.698 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: and not self.mgr.inventory.has_label(host, SpecialHostLabels.NO_MEMORY_AUTOTUNE) 2024-09-11T07:41:54.698 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 167, in has_label 2024-09-11T07:41:54.698 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: host = self._get_stored_name(host) 2024-09-11T07:41:54.699 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 104, in _get_stored_name 2024-09-11T07:41:54.699 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: self.assert_host(host) 2024-09-11T07:41:54.699 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 123, in assert_host 2024-09-11T07:41:54.699 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: raise OrchestratorError('host %s does not exist' % host) 2024-09-11T07:41:54.699 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: orchestrator._interface.OrchestratorError: host smithi181 does not exist 2024-09-11T07:41:54.699 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: audit 2024-09-11T07:41:53.366724+0000 mon.a (mon.0) 666 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T07:41:54.699 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: audit 2024-09-11T07:41:53.369520+0000 mon.a (mon.0) 667 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:41:54.699 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: audit 2024-09-11T07:41:53.371091+0000 mon.a (mon.0) 668 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T07:41:54.699 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: cephadm 2024-09-11T07:41:53.372827+0000 mgr.a (mgr.14150) 425 : cephadm [INF] Updating smithi115:/etc/ceph/ceph.conf 2024-09-11T07:41:54.699 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: cephadm 2024-09-11T07:41:53.373152+0000 mgr.a (mgr.14150) 426 : cephadm [INF] Updating smithi150:/etc/ceph/ceph.conf 2024-09-11T07:41:54.700 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: cephadm 2024-09-11T07:41:53.506474+0000 mgr.a (mgr.14150) 427 : cephadm [INF] Updating smithi115:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T07:41:54.700 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: cephadm 2024-09-11T07:41:53.512701+0000 mgr.a (mgr.14150) 428 : cephadm [INF] Updating smithi150:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T07:41:54.700 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: audit 2024-09-11T07:41:53.639771+0000 mon.a (mon.0) 669 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:54.700 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: audit 2024-09-11T07:41:53.648849+0000 mon.a (mon.0) 670 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:54.700 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: audit 2024-09-11T07:41:53.667818+0000 mon.a (mon.0) 671 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:54.700 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: audit 2024-09-11T07:41:53.673699+0000 mon.a (mon.0) 672 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:54.700 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: cluster 2024-09-11T07:41:53.675953+0000 mgr.a (mgr.14150) 429 : cluster [DBG] pgmap v357: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:54.700 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: audit 2024-09-11T07:41:53.682376+0000 mon.a (mon.0) 673 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:54.700 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: cephadm 2024-09-11T07:41:53.686471+0000 mgr.a (mgr.14150) 430 : cephadm [ERR] Failed to apply mon spec MONSpec.from_json(yaml.safe_load('''service_type: mon 2024-09-11T07:41:54.700 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: service_name: mon 2024-09-11T07:41:54.700 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: placement: 2024-09-11T07:41:54.700 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: count: 3 2024-09-11T07:41:54.700 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: hosts: 2024-09-11T07:41:54.701 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: - smithi115:172.21.15.115=a 2024-09-11T07:41:54.701 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: - smithi150:172.21.15.150=b 2024-09-11T07:41:54.701 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: - smithi181:172.21.15.181=c 2024-09-11T07:41:54.701 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: ''')): Cannot place on smithi181: Unknown hosts 2024-09-11T07:41:54.701 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: cluster 2024-09-11T07:41:53.686932+0000 mgr.a (mgr.14150) 431 : cluster [DBG] pgmap v358: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:54.701 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: cephadm 2024-09-11T07:41:53.727265+0000 mgr.a (mgr.14150) 432 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-11T07:41:54.701 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: audit 2024-09-11T07:41:53.727798+0000 mon.a (mon.0) 674 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-11T07:41:54.701 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: audit 2024-09-11T07:41:53.729496+0000 mon.a (mon.0) 675 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-11T07:41:54.701 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: audit 2024-09-11T07:41:53.730819+0000 mon.a (mon.0) 676 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:41:54.701 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:54 smithi150 bash[22110]: cephadm 2024-09-11T07:41:53.732161+0000 mgr.a (mgr.14150) 433 : cephadm [INF] Reconfiguring daemon mon.a on smithi115 2024-09-11T07:41:55.596 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:55 smithi115 bash[18678]: cluster 2024-09-11T07:41:54.670270+0000 mon.a (mon.0) 677 : cluster [WRN] Health check failed: Failed to apply 1 service(s): mon (CEPHADM_APPLY_SPEC_FAIL) 2024-09-11T07:41:55.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:55 smithi115 bash[18678]: cluster 2024-09-11T07:41:54.670337+0000 mon.a (mon.0) 678 : cluster [WRN] Health check failed: 1 stray host(s) with 1 daemon(s) not managed by cephadm (CEPHADM_STRAY_HOST) 2024-09-11T07:41:55.695 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:55 smithi150 bash[22110]: cluster 2024-09-11T07:41:54.670270+0000 mon.a (mon.0) 677 : cluster [WRN] Health check failed: Failed to apply 1 service(s): mon (CEPHADM_APPLY_SPEC_FAIL) 2024-09-11T07:41:55.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:55 smithi150 bash[22110]: cluster 2024-09-11T07:41:54.670337+0000 mon.a (mon.0) 678 : cluster [WRN] Health check failed: 1 stray host(s) with 1 daemon(s) not managed by cephadm (CEPHADM_STRAY_HOST) 2024-09-11T07:41:56.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:56 smithi150 bash[22110]: cluster 2024-09-11T07:41:55.687387+0000 mgr.a (mgr.14150) 434 : cluster [DBG] pgmap v359: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:56.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:56 smithi150 bash[22110]: audit 2024-09-11T07:41:56.250390+0000 mon.a (mon.0) 679 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:56.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:56 smithi150 bash[22110]: audit 2024-09-11T07:41:56.255708+0000 mon.a (mon.0) 680 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:56.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:56 smithi150 bash[22110]: audit 2024-09-11T07:41:56.257319+0000 mon.a (mon.0) 681 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-11T07:41:56.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:56 smithi150 bash[22110]: audit 2024-09-11T07:41:56.258976+0000 mon.a (mon.0) 682 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-11T07:41:56.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:56 smithi150 bash[22110]: audit 2024-09-11T07:41:56.260248+0000 mon.a (mon.0) 683 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:41:56.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:56 smithi115 bash[18678]: cluster 2024-09-11T07:41:55.687387+0000 mgr.a (mgr.14150) 434 : cluster [DBG] pgmap v359: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:56.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:56 smithi115 bash[18678]: audit 2024-09-11T07:41:56.250390+0000 mon.a (mon.0) 679 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:56.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:56 smithi115 bash[18678]: audit 2024-09-11T07:41:56.255708+0000 mon.a (mon.0) 680 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:56.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:56 smithi115 bash[18678]: audit 2024-09-11T07:41:56.257319+0000 mon.a (mon.0) 681 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-11T07:41:56.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:56 smithi115 bash[18678]: audit 2024-09-11T07:41:56.258976+0000 mon.a (mon.0) 682 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-11T07:41:56.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:56 smithi115 bash[18678]: audit 2024-09-11T07:41:56.260248+0000 mon.a (mon.0) 683 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:41:57.626 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:57 smithi115 bash[18678]: cephadm 2024-09-11T07:41:56.256752+0000 mgr.a (mgr.14150) 435 : cephadm [INF] Reconfiguring mgr.a (monmap changed)... 2024-09-11T07:41:57.626 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:57 smithi115 bash[18678]: cephadm 2024-09-11T07:41:56.261712+0000 mgr.a (mgr.14150) 436 : cephadm [INF] Reconfiguring daemon mgr.a on smithi115 2024-09-11T07:41:57.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:57 smithi150 bash[22110]: cephadm 2024-09-11T07:41:56.256752+0000 mgr.a (mgr.14150) 435 : cephadm [INF] Reconfiguring mgr.a (monmap changed)... 2024-09-11T07:41:57.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:57 smithi150 bash[22110]: cephadm 2024-09-11T07:41:56.261712+0000 mgr.a (mgr.14150) 436 : cephadm [INF] Reconfiguring daemon mgr.a on smithi115 2024-09-11T07:41:58.695 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:58 smithi150 bash[22110]: cluster 2024-09-11T07:41:57.687786+0000 mgr.a (mgr.14150) 437 : cluster [DBG] pgmap v360: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:58.846 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:58 smithi115 bash[18678]: cluster 2024-09-11T07:41:57.687786+0000 mgr.a (mgr.14150) 437 : cluster [DBG] pgmap v360: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:41:59.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:59 smithi115 bash[18678]: audit 2024-09-11T07:41:58.549854+0000 mon.a (mon.0) 684 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:59.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:59 smithi115 bash[18678]: audit 2024-09-11T07:41:58.556368+0000 mon.a (mon.0) 685 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:59.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:59 smithi115 bash[18678]: cephadm 2024-09-11T07:41:58.557399+0000 mgr.a (mgr.14150) 438 : cephadm [INF] Reconfiguring osd.0 (monmap changed)... 2024-09-11T07:41:59.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:59 smithi115 bash[18678]: audit 2024-09-11T07:41:58.557798+0000 mon.a (mon.0) 686 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-11T07:41:59.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:59 smithi115 bash[18678]: audit 2024-09-11T07:41:58.559170+0000 mon.a (mon.0) 687 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:41:59.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:41:59 smithi115 bash[18678]: cephadm 2024-09-11T07:41:58.561102+0000 mgr.a (mgr.14150) 439 : cephadm [INF] Reconfiguring daemon osd.0 on smithi115 2024-09-11T07:41:59.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:59 smithi150 bash[22110]: audit 2024-09-11T07:41:58.549854+0000 mon.a (mon.0) 684 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:59.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:59 smithi150 bash[22110]: audit 2024-09-11T07:41:58.556368+0000 mon.a (mon.0) 685 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:41:59.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:59 smithi150 bash[22110]: cephadm 2024-09-11T07:41:58.557399+0000 mgr.a (mgr.14150) 438 : cephadm [INF] Reconfiguring osd.0 (monmap changed)... 2024-09-11T07:41:59.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:59 smithi150 bash[22110]: audit 2024-09-11T07:41:58.557798+0000 mon.a (mon.0) 686 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-11T07:41:59.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:59 smithi150 bash[22110]: audit 2024-09-11T07:41:58.559170+0000 mon.a (mon.0) 687 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:41:59.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:41:59 smithi150 bash[22110]: cephadm 2024-09-11T07:41:58.561102+0000 mgr.a (mgr.14150) 439 : cephadm [INF] Reconfiguring daemon osd.0 on smithi115 2024-09-11T07:42:00.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:00 smithi115 bash[18678]: cluster 2024-09-11T07:41:59.688290+0000 mgr.a (mgr.14150) 440 : cluster [DBG] pgmap v361: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:42:00.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:00 smithi150 bash[22110]: cluster 2024-09-11T07:41:59.688290+0000 mgr.a (mgr.14150) 440 : cluster [DBG] pgmap v361: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:42:02.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:01 smithi115 bash[18678]: audit 2024-09-11T07:42:00.838303+0000 mon.a (mon.0) 688 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:42:02.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:01 smithi115 bash[18678]: audit 2024-09-11T07:42:00.845434+0000 mon.a (mon.0) 689 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:42:02.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:01 smithi115 bash[18678]: audit 2024-09-11T07:42:00.846912+0000 mon.a (mon.0) 690 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-11T07:42:02.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:01 smithi115 bash[18678]: audit 2024-09-11T07:42:00.848327+0000 mon.a (mon.0) 691 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:42:02.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:01 smithi150 bash[22110]: audit 2024-09-11T07:42:00.838303+0000 mon.a (mon.0) 688 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:42:02.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:01 smithi150 bash[22110]: audit 2024-09-11T07:42:00.845434+0000 mon.a (mon.0) 689 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:42:02.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:01 smithi150 bash[22110]: audit 2024-09-11T07:42:00.846912+0000 mon.a (mon.0) 690 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-11T07:42:02.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:01 smithi150 bash[22110]: audit 2024-09-11T07:42:00.848327+0000 mon.a (mon.0) 691 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:42:03.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:02 smithi115 bash[18678]: cephadm 2024-09-11T07:42:00.846436+0000 mgr.a (mgr.14150) 441 : cephadm [INF] Reconfiguring osd.1 (monmap changed)... 2024-09-11T07:42:03.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:02 smithi115 bash[18678]: cephadm 2024-09-11T07:42:00.850231+0000 mgr.a (mgr.14150) 442 : cephadm [INF] Reconfiguring daemon osd.1 on smithi115 2024-09-11T07:42:03.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:02 smithi115 bash[18678]: cluster 2024-09-11T07:42:01.688842+0000 mgr.a (mgr.14150) 443 : cluster [DBG] pgmap v362: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:42:03.195 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:02 smithi150 bash[22110]: cephadm 2024-09-11T07:42:00.846436+0000 mgr.a (mgr.14150) 441 : cephadm [INF] Reconfiguring osd.1 (monmap changed)... 2024-09-11T07:42:03.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:02 smithi150 bash[22110]: cephadm 2024-09-11T07:42:00.850231+0000 mgr.a (mgr.14150) 442 : cephadm [INF] Reconfiguring daemon osd.1 on smithi115 2024-09-11T07:42:03.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:02 smithi150 bash[22110]: cluster 2024-09-11T07:42:01.688842+0000 mgr.a (mgr.14150) 443 : cluster [DBG] pgmap v362: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:42:04.573 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:04 smithi150 bash[22110]: audit 2024-09-11T07:42:03.269872+0000 mon.a (mon.0) 692 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:42:04.573 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:04 smithi150 bash[22110]: audit 2024-09-11T07:42:03.278346+0000 mon.a (mon.0) 693 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:42:04.573 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:04 smithi150 bash[22110]: cephadm 2024-09-11T07:42:03.279462+0000 mgr.a (mgr.14150) 444 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-11T07:42:04.573 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:04 smithi150 bash[22110]: audit 2024-09-11T07:42:03.279955+0000 mon.a (mon.0) 694 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-11T07:42:04.574 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:04 smithi150 bash[22110]: audit 2024-09-11T07:42:03.281363+0000 mon.a (mon.0) 695 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-11T07:42:04.574 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:04 smithi150 bash[22110]: audit 2024-09-11T07:42:03.282790+0000 mon.a (mon.0) 696 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:42:04.574 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:04 smithi150 bash[22110]: cephadm 2024-09-11T07:42:03.284181+0000 mgr.a (mgr.14150) 445 : cephadm [INF] Reconfiguring daemon mon.b on smithi150 2024-09-11T07:42:04.574 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:04 smithi150 bash[22110]: cluster 2024-09-11T07:42:03.689419+0000 mgr.a (mgr.14150) 446 : cluster [DBG] pgmap v363: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:42:04.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:04 smithi115 bash[18678]: audit 2024-09-11T07:42:03.269872+0000 mon.a (mon.0) 692 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:42:04.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:04 smithi115 bash[18678]: audit 2024-09-11T07:42:03.278346+0000 mon.a (mon.0) 693 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:42:04.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:04 smithi115 bash[18678]: cephadm 2024-09-11T07:42:03.279462+0000 mgr.a (mgr.14150) 444 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-11T07:42:04.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:04 smithi115 bash[18678]: audit 2024-09-11T07:42:03.279955+0000 mon.a (mon.0) 694 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-11T07:42:04.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:04 smithi115 bash[18678]: audit 2024-09-11T07:42:03.281363+0000 mon.a (mon.0) 695 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-11T07:42:04.597 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:04 smithi115 bash[18678]: audit 2024-09-11T07:42:03.282790+0000 mon.a (mon.0) 696 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:42:04.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:04 smithi115 bash[18678]: cephadm 2024-09-11T07:42:03.284181+0000 mgr.a (mgr.14150) 445 : cephadm [INF] Reconfiguring daemon mon.b on smithi150 2024-09-11T07:42:04.598 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:04 smithi115 bash[18678]: cluster 2024-09-11T07:42:03.689419+0000 mgr.a (mgr.14150) 446 : cluster [DBG] pgmap v363: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:42:06.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:06 smithi150 bash[22110]: audit 2024-09-11T07:42:05.384373+0000 mon.a (mon.0) 697 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:42:06.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:06 smithi150 bash[22110]: audit 2024-09-11T07:42:05.392997+0000 mon.a (mon.0) 698 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:42:06.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:06 smithi150 bash[22110]: cephadm 2024-09-11T07:42:05.394405+0000 mgr.a (mgr.14150) 447 : cephadm [INF] Reconfiguring mgr.b (monmap changed)... 2024-09-11T07:42:06.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:06 smithi150 bash[22110]: audit 2024-09-11T07:42:05.395036+0000 mon.a (mon.0) 699 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-11T07:42:06.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:06 smithi150 bash[22110]: audit 2024-09-11T07:42:05.397034+0000 mon.a (mon.0) 700 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-11T07:42:06.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:06 smithi150 bash[22110]: audit 2024-09-11T07:42:05.398683+0000 mon.a (mon.0) 701 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:42:06.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:06 smithi150 bash[22110]: cephadm 2024-09-11T07:42:05.400433+0000 mgr.a (mgr.14150) 448 : cephadm [INF] Reconfiguring daemon mgr.b on smithi150 2024-09-11T07:42:06.696 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:06 smithi150 bash[22110]: cluster 2024-09-11T07:42:05.690016+0000 mgr.a (mgr.14150) 449 : cluster [DBG] pgmap v364: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:42:06.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:06 smithi115 bash[18678]: audit 2024-09-11T07:42:05.384373+0000 mon.a (mon.0) 697 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:42:06.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:06 smithi115 bash[18678]: audit 2024-09-11T07:42:05.392997+0000 mon.a (mon.0) 698 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:42:06.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:06 smithi115 bash[18678]: cephadm 2024-09-11T07:42:05.394405+0000 mgr.a (mgr.14150) 447 : cephadm [INF] Reconfiguring mgr.b (monmap changed)... 2024-09-11T07:42:06.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:06 smithi115 bash[18678]: audit 2024-09-11T07:42:05.395036+0000 mon.a (mon.0) 699 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-11T07:42:06.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:06 smithi115 bash[18678]: audit 2024-09-11T07:42:05.397034+0000 mon.a (mon.0) 700 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-11T07:42:06.848 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:06 smithi115 bash[18678]: audit 2024-09-11T07:42:05.398683+0000 mon.a (mon.0) 701 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:42:06.848 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:06 smithi115 bash[18678]: cephadm 2024-09-11T07:42:05.400433+0000 mgr.a (mgr.14150) 448 : cephadm [INF] Reconfiguring daemon mgr.b on smithi150 2024-09-11T07:42:06.848 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:06 smithi115 bash[18678]: cluster 2024-09-11T07:42:05.690016+0000 mgr.a (mgr.14150) 449 : cluster [DBG] pgmap v364: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:42:08.656 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:08 smithi150 bash[22110]: audit 2024-09-11T07:42:07.378495+0000 mon.a (mon.0) 702 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:42:08.656 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:08 smithi150 bash[22110]: audit 2024-09-11T07:42:07.386883+0000 mon.a (mon.0) 703 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:42:08.656 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:08 smithi150 bash[22110]: cephadm 2024-09-11T07:42:07.388293+0000 mgr.a (mgr.14150) 450 : cephadm [INF] Reconfiguring osd.2 (monmap changed)... 2024-09-11T07:42:08.656 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:08 smithi150 bash[22110]: audit 2024-09-11T07:42:07.388825+0000 mon.a (mon.0) 704 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-11T07:42:08.657 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:08 smithi150 bash[22110]: audit 2024-09-11T07:42:07.390401+0000 mon.a (mon.0) 705 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:42:08.657 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:08 smithi150 bash[22110]: cephadm 2024-09-11T07:42:07.392881+0000 mgr.a (mgr.14150) 451 : cephadm [INF] Reconfiguring daemon osd.2 on smithi150 2024-09-11T07:42:08.657 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:08 smithi150 bash[22110]: cluster 2024-09-11T07:42:07.690588+0000 mgr.a (mgr.14150) 452 : cluster [DBG] pgmap v365: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:42:08.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:08 smithi115 bash[18678]: audit 2024-09-11T07:42:07.378495+0000 mon.a (mon.0) 702 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:42:08.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:08 smithi115 bash[18678]: audit 2024-09-11T07:42:07.386883+0000 mon.a (mon.0) 703 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:42:08.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:08 smithi115 bash[18678]: cephadm 2024-09-11T07:42:07.388293+0000 mgr.a (mgr.14150) 450 : cephadm [INF] Reconfiguring osd.2 (monmap changed)... 2024-09-11T07:42:08.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:08 smithi115 bash[18678]: audit 2024-09-11T07:42:07.388825+0000 mon.a (mon.0) 704 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-11T07:42:08.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:08 smithi115 bash[18678]: audit 2024-09-11T07:42:07.390401+0000 mon.a (mon.0) 705 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:42:08.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:08 smithi115 bash[18678]: cephadm 2024-09-11T07:42:07.392881+0000 mgr.a (mgr.14150) 451 : cephadm [INF] Reconfiguring daemon osd.2 on smithi150 2024-09-11T07:42:08.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:08 smithi115 bash[18678]: cluster 2024-09-11T07:42:07.690588+0000 mgr.a (mgr.14150) 452 : cluster [DBG] pgmap v365: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:42:10.767 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:10 smithi150 bash[22110]: audit 2024-09-11T07:42:09.474225+0000 mon.a (mon.0) 706 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:42:10.767 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:10 smithi150 bash[22110]: audit 2024-09-11T07:42:09.482546+0000 mon.a (mon.0) 707 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:42:10.767 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:10 smithi150 bash[22110]: cephadm 2024-09-11T07:42:09.483939+0000 mgr.a (mgr.14150) 453 : cephadm [INF] Reconfiguring osd.3 (monmap changed)... 2024-09-11T07:42:10.768 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:10 smithi150 bash[22110]: audit 2024-09-11T07:42:09.484517+0000 mon.a (mon.0) 708 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-11T07:42:10.768 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:10 smithi150 bash[22110]: audit 2024-09-11T07:42:09.486171+0000 mon.a (mon.0) 709 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:42:10.768 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:10 smithi150 bash[22110]: cephadm 2024-09-11T07:42:09.488587+0000 mgr.a (mgr.14150) 454 : cephadm [INF] Reconfiguring daemon osd.3 on smithi150 2024-09-11T07:42:10.768 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:10 smithi150 bash[22110]: cluster 2024-09-11T07:42:09.691153+0000 mgr.a (mgr.14150) 455 : cluster [DBG] pgmap v366: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:42:10.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:10 smithi115 bash[18678]: audit 2024-09-11T07:42:09.474225+0000 mon.a (mon.0) 706 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:42:10.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:10 smithi115 bash[18678]: audit 2024-09-11T07:42:09.482546+0000 mon.a (mon.0) 707 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:42:10.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:10 smithi115 bash[18678]: cephadm 2024-09-11T07:42:09.483939+0000 mgr.a (mgr.14150) 453 : cephadm [INF] Reconfiguring osd.3 (monmap changed)... 2024-09-11T07:42:10.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:10 smithi115 bash[18678]: audit 2024-09-11T07:42:09.484517+0000 mon.a (mon.0) 708 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-11T07:42:10.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:10 smithi115 bash[18678]: audit 2024-09-11T07:42:09.486171+0000 mon.a (mon.0) 709 : audit [DBG] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T07:42:10.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:10 smithi115 bash[18678]: cephadm 2024-09-11T07:42:09.488587+0000 mgr.a (mgr.14150) 454 : cephadm [INF] Reconfiguring daemon osd.3 on smithi150 2024-09-11T07:42:10.848 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:10 smithi115 bash[18678]: cluster 2024-09-11T07:42:09.691153+0000 mgr.a (mgr.14150) 455 : cluster [DBG] pgmap v366: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:42:12.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:12 smithi150 bash[22110]: audit 2024-09-11T07:42:11.687051+0000 mon.a (mon.0) 710 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:42:12.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:12 smithi150 bash[22110]: cluster 2024-09-11T07:42:11.691752+0000 mgr.a (mgr.14150) 456 : cluster [DBG] pgmap v367: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:42:12.946 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:12 smithi150 bash[22110]: audit 2024-09-11T07:42:11.694956+0000 mon.a (mon.0) 711 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:42:13.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:12 smithi115 bash[18678]: audit 2024-09-11T07:42:11.687051+0000 mon.a (mon.0) 710 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:42:13.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:12 smithi115 bash[18678]: cluster 2024-09-11T07:42:11.691752+0000 mgr.a (mgr.14150) 456 : cluster [DBG] pgmap v367: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:42:13.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:12 smithi115 bash[18678]: audit 2024-09-11T07:42:11.694956+0000 mon.a (mon.0) 711 : audit [INF] from='mgr.14150 172.21.15.115:0/1445390848' entity='mgr.a' 2024-09-11T07:42:15.096 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:14 smithi115 bash[18678]: cluster 2024-09-11T07:42:13.692372+0000 mgr.a (mgr.14150) 457 : cluster [DBG] pgmap v368: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:42:15.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:14 smithi150 bash[22110]: cluster 2024-09-11T07:42:13.692372+0000 mgr.a (mgr.14150) 457 : cluster [DBG] pgmap v368: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:42:17.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:16 smithi115 bash[18678]: cluster 2024-09-11T07:42:15.692971+0000 mgr.a (mgr.14150) 458 : cluster [DBG] pgmap v369: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:42:17.195 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:16 smithi150 bash[22110]: cluster 2024-09-11T07:42:15.692971+0000 mgr.a (mgr.14150) 458 : cluster [DBG] pgmap v369: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:42:19.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:18 smithi115 bash[18678]: cluster 2024-09-11T07:42:17.693581+0000 mgr.a (mgr.14150) 459 : cluster [DBG] pgmap v370: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:42:19.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:18 smithi150 bash[22110]: cluster 2024-09-11T07:42:17.693581+0000 mgr.a (mgr.14150) 459 : cluster [DBG] pgmap v370: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:42:21.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:20 smithi115 bash[18678]: cluster 2024-09-11T07:42:19.694150+0000 mgr.a (mgr.14150) 460 : cluster [DBG] pgmap v371: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:42:21.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:20 smithi150 bash[22110]: cluster 2024-09-11T07:42:19.694150+0000 mgr.a (mgr.14150) 460 : cluster [DBG] pgmap v371: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:42:23.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:22 smithi115 bash[18678]: cluster 2024-09-11T07:42:21.694767+0000 mgr.a (mgr.14150) 461 : cluster [DBG] pgmap v372: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:42:23.195 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:22 smithi150 bash[22110]: cluster 2024-09-11T07:42:21.694767+0000 mgr.a (mgr.14150) 461 : cluster [DBG] pgmap v372: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T07:42:23.391 INFO:teuthology.orchestra.run.smithi115.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-11T07:42:23.683 INFO:teuthology.orchestra.run.smithi115.stderr:18 2024-09-11T07:42:23.695 INFO:teuthology.orchestra.run.smithi115.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-11T07:42:23.713 INFO:teuthology.orchestra.run.smithi115.stderr:++ cat crushmap.txt 2024-09-11T07:42:23.716 INFO:teuthology.orchestra.run.smithi115.stderr:+ CRUSH_MAP='# begin crush map 2024-09-11T07:42:23.716 INFO:teuthology.orchestra.run.smithi115.stderr:tunable choose_local_tries 0 2024-09-11T07:42:23.716 INFO:teuthology.orchestra.run.smithi115.stderr:tunable choose_local_fallback_tries 0 2024-09-11T07:42:23.716 INFO:teuthology.orchestra.run.smithi115.stderr:tunable choose_total_tries 50 2024-09-11T07:42:23.716 INFO:teuthology.orchestra.run.smithi115.stderr:tunable chooseleaf_descend_once 1 2024-09-11T07:42:23.716 INFO:teuthology.orchestra.run.smithi115.stderr:tunable chooseleaf_vary_r 1 2024-09-11T07:42:23.716 INFO:teuthology.orchestra.run.smithi115.stderr:tunable chooseleaf_stable 1 2024-09-11T07:42:23.716 INFO:teuthology.orchestra.run.smithi115.stderr:tunable straw_calc_version 1 2024-09-11T07:42:23.716 INFO:teuthology.orchestra.run.smithi115.stderr:tunable allowed_bucket_algs 54 2024-09-11T07:42:23.716 INFO:teuthology.orchestra.run.smithi115.stderr: 2024-09-11T07:42:23.716 INFO:teuthology.orchestra.run.smithi115.stderr:# devices 2024-09-11T07:42:23.716 INFO:teuthology.orchestra.run.smithi115.stderr:device 0 osd.0 class ssd 2024-09-11T07:42:23.717 INFO:teuthology.orchestra.run.smithi115.stderr:device 1 osd.1 class ssd 2024-09-11T07:42:23.717 INFO:teuthology.orchestra.run.smithi115.stderr:device 2 osd.2 class ssd 2024-09-11T07:42:23.717 INFO:teuthology.orchestra.run.smithi115.stderr:device 3 osd.3 class ssd 2024-09-11T07:42:23.717 INFO:teuthology.orchestra.run.smithi115.stderr: 2024-09-11T07:42:23.717 INFO:teuthology.orchestra.run.smithi115.stderr:# types 2024-09-11T07:42:23.717 INFO:teuthology.orchestra.run.smithi115.stderr:type 0 osd 2024-09-11T07:42:23.717 INFO:teuthology.orchestra.run.smithi115.stderr:type 1 host 2024-09-11T07:42:23.717 INFO:teuthology.orchestra.run.smithi115.stderr:type 2 chassis 2024-09-11T07:42:23.717 INFO:teuthology.orchestra.run.smithi115.stderr:type 3 rack 2024-09-11T07:42:23.717 INFO:teuthology.orchestra.run.smithi115.stderr:type 4 row 2024-09-11T07:42:23.717 INFO:teuthology.orchestra.run.smithi115.stderr:type 5 pdu 2024-09-11T07:42:23.718 INFO:teuthology.orchestra.run.smithi115.stderr:type 6 pod 2024-09-11T07:42:23.718 INFO:teuthology.orchestra.run.smithi115.stderr:type 7 room 2024-09-11T07:42:23.718 INFO:teuthology.orchestra.run.smithi115.stderr:type 8 datacenter 2024-09-11T07:42:23.718 INFO:teuthology.orchestra.run.smithi115.stderr:type 9 zone 2024-09-11T07:42:23.718 INFO:teuthology.orchestra.run.smithi115.stderr:type 10 region 2024-09-11T07:42:23.718 INFO:teuthology.orchestra.run.smithi115.stderr:type 11 root 2024-09-11T07:42:23.718 INFO:teuthology.orchestra.run.smithi115.stderr: 2024-09-11T07:42:23.718 INFO:teuthology.orchestra.run.smithi115.stderr:# buckets 2024-09-11T07:42:23.718 INFO:teuthology.orchestra.run.smithi115.stderr:host smithi115 { 2024-09-11T07:42:23.718 INFO:teuthology.orchestra.run.smithi115.stderr: id -3 # do not change unnecessarily 2024-09-11T07:42:23.718 INFO:teuthology.orchestra.run.smithi115.stderr: id -4 class ssd # do not change unnecessarily 2024-09-11T07:42:23.718 INFO:teuthology.orchestra.run.smithi115.stderr: # weight 0.17459 2024-09-11T07:42:23.718 INFO:teuthology.orchestra.run.smithi115.stderr: alg straw2 2024-09-11T07:42:23.718 INFO:teuthology.orchestra.run.smithi115.stderr: hash 0 # rjenkins1 2024-09-11T07:42:23.719 INFO:teuthology.orchestra.run.smithi115.stderr: item osd.0 weight 0.08730 2024-09-11T07:42:23.719 INFO:teuthology.orchestra.run.smithi115.stderr: item osd.1 weight 0.08730 2024-09-11T07:42:23.719 INFO:teuthology.orchestra.run.smithi115.stderr:} 2024-09-11T07:42:23.719 INFO:teuthology.orchestra.run.smithi115.stderr:host smithi150 { 2024-09-11T07:42:23.719 INFO:teuthology.orchestra.run.smithi115.stderr: id -5 # do not change unnecessarily 2024-09-11T07:42:23.719 INFO:teuthology.orchestra.run.smithi115.stderr: id -6 class ssd # do not change unnecessarily 2024-09-11T07:42:23.719 INFO:teuthology.orchestra.run.smithi115.stderr: # weight 0.17459 2024-09-11T07:42:23.719 INFO:teuthology.orchestra.run.smithi115.stderr: alg straw2 2024-09-11T07:42:23.719 INFO:teuthology.orchestra.run.smithi115.stderr: hash 0 # rjenkins1 2024-09-11T07:42:23.719 INFO:teuthology.orchestra.run.smithi115.stderr: item osd.2 weight 0.08730 2024-09-11T07:42:23.719 INFO:teuthology.orchestra.run.smithi115.stderr: item osd.3 weight 0.08730 2024-09-11T07:42:23.719 INFO:teuthology.orchestra.run.smithi115.stderr:} 2024-09-11T07:42:23.720 INFO:teuthology.orchestra.run.smithi115.stderr:root default { 2024-09-11T07:42:23.720 INFO:teuthology.orchestra.run.smithi115.stderr: id -1 # do not change unnecessarily 2024-09-11T07:42:23.720 INFO:teuthology.orchestra.run.smithi115.stderr: id -2 class ssd # do not change unnecessarily 2024-09-11T07:42:23.720 INFO:teuthology.orchestra.run.smithi115.stderr: # weight 0.34918 2024-09-11T07:42:23.720 INFO:teuthology.orchestra.run.smithi115.stderr: alg straw2 2024-09-11T07:42:23.720 INFO:teuthology.orchestra.run.smithi115.stderr: hash 0 # rjenkins1 2024-09-11T07:42:23.720 INFO:teuthology.orchestra.run.smithi115.stderr: item smithi115 weight 0.17459 2024-09-11T07:42:23.720 INFO:teuthology.orchestra.run.smithi115.stderr: item smithi150 weight 0.17459 2024-09-11T07:42:23.720 INFO:teuthology.orchestra.run.smithi115.stderr:} 2024-09-11T07:42:23.720 INFO:teuthology.orchestra.run.smithi115.stderr: 2024-09-11T07:42:23.720 INFO:teuthology.orchestra.run.smithi115.stderr:# rules 2024-09-11T07:42:23.720 INFO:teuthology.orchestra.run.smithi115.stderr:rule replicated_rule { 2024-09-11T07:42:23.720 INFO:teuthology.orchestra.run.smithi115.stderr: id 0 2024-09-11T07:42:23.720 INFO:teuthology.orchestra.run.smithi115.stderr: type replicated 2024-09-11T07:42:23.720 INFO:teuthology.orchestra.run.smithi115.stderr: step take default 2024-09-11T07:42:23.721 INFO:teuthology.orchestra.run.smithi115.stderr: step choose firstn 0 type osd 2024-09-11T07:42:23.721 INFO:teuthology.orchestra.run.smithi115.stderr: step emit 2024-09-11T07:42:23.721 INFO:teuthology.orchestra.run.smithi115.stderr:} 2024-09-11T07:42:23.721 INFO:teuthology.orchestra.run.smithi115.stderr: 2024-09-11T07:42:23.721 INFO:teuthology.orchestra.run.smithi115.stderr:# end crush map' 2024-09-11T07:42:23.721 INFO:teuthology.orchestra.run.smithi115.stderr:+ grep -q smithi181 2024-09-11T07:42:24.097 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:23 smithi115 bash[18678]: audit 2024-09-11T07:42:23.680606+0000 mon.a (mon.0) 712 : audit [DBG] from='client.? 172.21.15.115:0/567653178' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-11T07:42:24.196 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:23 smithi150 bash[22110]: audit 2024-09-11T07:42:23.680606+0000 mon.a (mon.0) 712 : audit [DBG] from='client.? 172.21.15.115:0/567653178' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-11T07:42:24.474 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-11T07:42:24.483 INFO:tasks.cephadm:Teardown begin 2024-09-11T07:42:24.484 DEBUG:teuthology.orchestra.run.smithi115:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-11T07:42:24.495 DEBUG:teuthology.orchestra.run.smithi150:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-11T07:42:24.512 DEBUG:teuthology.orchestra.run.smithi181:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-11T07:42:24.528 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-11T07:42:24.528 DEBUG:teuthology.orchestra.run.smithi115:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-11T07:42:24.545 DEBUG:teuthology.orchestra.run.smithi150:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-11T07:42:24.552 DEBUG:teuthology.orchestra.run.smithi181:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-11T07:42:24.561 INFO:tasks.cephadm:Stopping all daemons... 2024-09-11T07:42:24.561 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2024-09-11T07:42:24.561 DEBUG:teuthology.orchestra.run.smithi115:> sudo systemctl stop ceph-1973416c-700f-11ef-bcea-c7b262605968@mon.a 2024-09-11T07:42:24.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:24 smithi115 systemd[1]: Stopping Ceph mon.a for 1973416c-700f-11ef-bcea-c7b262605968... 2024-09-11T07:42:24.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:24 smithi115 bash[18678]: debug 2024-09-11T07:42:24.710+0000 7f1b9f03e640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-09-11T07:42:24.847 INFO:journalctl@ceph.mon.a.smithi115.stdout:Sep 11 07:42:24 smithi115 bash[18678]: debug 2024-09-11T07:42:24.710+0000 7f1b9f03e640 -1 mon.a@0(leader) e4 *** Got Signal Terminated *** 2024-09-11T07:42:25.611 DEBUG:teuthology.orchestra.run.smithi115:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1973416c-700f-11ef-bcea-c7b262605968@mon.a.service' 2024-09-11T07:42:25.682 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-11T07:42:25.682 INFO:tasks.cephadm.mon.a:Stopped mon.a 2024-09-11T07:42:25.682 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2024-09-11T07:42:25.683 DEBUG:teuthology.orchestra.run.smithi150:> sudo systemctl stop ceph-1973416c-700f-11ef-bcea-c7b262605968@mon.b 2024-09-11T07:42:26.144 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:25 smithi150 systemd[1]: Stopping Ceph mon.b for 1973416c-700f-11ef-bcea-c7b262605968... 2024-09-11T07:42:26.145 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:25 smithi150 bash[22110]: debug 2024-09-11T07:42:25.887+0000 7feea6e12640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.b -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-09-11T07:42:26.145 INFO:journalctl@ceph.mon.b.smithi150.stdout:Sep 11 07:42:25 smithi150 bash[22110]: debug 2024-09-11T07:42:25.887+0000 7feea6e12640 -1 mon.b@1(peon) e4 *** Got Signal Terminated *** 2024-09-11T07:42:26.794 DEBUG:teuthology.orchestra.run.smithi150:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1973416c-700f-11ef-bcea-c7b262605968@mon.b.service' 2024-09-11T07:42:26.832 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-11T07:42:26.833 INFO:tasks.cephadm.mon.c:Stopped mon.b 2024-09-11T07:42:26.833 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2024-09-11T07:42:26.833 DEBUG:teuthology.orchestra.run.smithi181:> sudo systemctl stop ceph-1973416c-700f-11ef-bcea-c7b262605968@mon.c 2024-09-11T07:42:26.863 DEBUG:teuthology.orchestra.run.smithi181:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1973416c-700f-11ef-bcea-c7b262605968@mon.c.service' 2024-09-11T07:42:26.908 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-11T07:42:26.908 INFO:tasks.cephadm.mon.c:Stopped mon.c 2024-09-11T07:42:26.908 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2024-09-11T07:42:26.908 DEBUG:teuthology.orchestra.run.smithi115:> sudo systemctl stop ceph-1973416c-700f-11ef-bcea-c7b262605968@mgr.a 2024-09-11T07:42:27.322 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:42:26 smithi115 systemd[1]: Stopping Ceph mgr.a for 1973416c-700f-11ef-bcea-c7b262605968... 2024-09-11T07:42:27.322 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:42:27 smithi115 bash[18949]: debug 2024-09-11T07:42:27.086+0000 7fabf4329640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mgr -n mgr.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-11T07:42:27.322 INFO:journalctl@ceph.mgr.a.smithi115.stdout:Sep 11 07:42:27 smithi115 bash[18949]: debug 2024-09-11T07:42:27.086+0000 7fabf4329640 -1 mgr handle_mgr_signal *** Got signal Terminated *** 2024-09-11T07:42:27.853 DEBUG:teuthology.orchestra.run.smithi115:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1973416c-700f-11ef-bcea-c7b262605968@mgr.a.service' 2024-09-11T07:42:27.885 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-11T07:42:27.886 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2024-09-11T07:42:27.886 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2024-09-11T07:42:27.886 DEBUG:teuthology.orchestra.run.smithi150:> sudo systemctl stop ceph-1973416c-700f-11ef-bcea-c7b262605968@mgr.b 2024-09-11T07:42:28.196 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:42:27 smithi150 systemd[1]: Stopping Ceph mgr.b for 1973416c-700f-11ef-bcea-c7b262605968... 2024-09-11T07:42:28.525 INFO:journalctl@ceph.mgr.b.smithi150.stdout:Sep 11 07:42:28 smithi150 bash[39091]: ceph-1973416c-700f-11ef-bcea-c7b262605968-mgr-b 2024-09-11T07:42:28.711 DEBUG:teuthology.orchestra.run.smithi150:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1973416c-700f-11ef-bcea-c7b262605968@mgr.b.service' 2024-09-11T07:42:28.737 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-11T07:42:28.737 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2024-09-11T07:42:28.737 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2024-09-11T07:42:28.738 DEBUG:teuthology.orchestra.run.smithi115:> sudo systemctl stop ceph-1973416c-700f-11ef-bcea-c7b262605968@osd.0 2024-09-11T07:42:29.097 INFO:journalctl@ceph.osd.0.smithi115.stdout:Sep 11 07:42:28 smithi115 systemd[1]: Stopping Ceph osd.0 for 1973416c-700f-11ef-bcea-c7b262605968... 2024-09-11T07:42:29.097 INFO:journalctl@ceph.osd.0.smithi115.stdout:Sep 11 07:42:28 smithi115 bash[35086]: debug 2024-09-11T07:42:28.906+0000 7f6a4fb2f640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.0 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-11T07:42:29.097 INFO:journalctl@ceph.osd.0.smithi115.stdout:Sep 11 07:42:28 smithi115 bash[35086]: debug 2024-09-11T07:42:28.906+0000 7f6a4fb2f640 -1 osd.0 54 *** Got signal Terminated *** 2024-09-11T07:42:29.097 INFO:journalctl@ceph.osd.0.smithi115.stdout:Sep 11 07:42:28 smithi115 bash[35086]: debug 2024-09-11T07:42:28.906+0000 7f6a4fb2f640 -1 osd.0 54 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-11T07:42:35.347 INFO:journalctl@ceph.osd.0.smithi115.stdout:Sep 11 07:42:35 smithi115 bash[53790]: ceph-1973416c-700f-11ef-bcea-c7b262605968-osd-0 2024-09-11T07:42:35.347 INFO:journalctl@ceph.osd.0.smithi115.stdout:Sep 11 07:42:35 smithi115 bash[53864]: Error response from daemon: No such container: ceph-1973416c-700f-11ef-bcea-c7b262605968-osd-0 2024-09-11T07:42:37.341 DEBUG:teuthology.orchestra.run.smithi115:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1973416c-700f-11ef-bcea-c7b262605968@osd.0.service' 2024-09-11T07:42:37.376 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-11T07:42:37.376 INFO:tasks.cephadm.osd.0:Stopped osd.0 2024-09-11T07:42:37.376 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2024-09-11T07:42:37.376 DEBUG:teuthology.orchestra.run.smithi115:> sudo systemctl stop ceph-1973416c-700f-11ef-bcea-c7b262605968@osd.1 2024-09-11T07:42:37.597 INFO:journalctl@ceph.osd.1.smithi115.stdout:Sep 11 07:42:37 smithi115 systemd[1]: Stopping Ceph osd.1 for 1973416c-700f-11ef-bcea-c7b262605968... 2024-09-11T07:42:37.597 INFO:journalctl@ceph.osd.1.smithi115.stdout:Sep 11 07:42:37 smithi115 bash[42797]: debug 2024-09-11T07:42:37.562+0000 7f39e5c1b640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.1 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-11T07:42:37.597 INFO:journalctl@ceph.osd.1.smithi115.stdout:Sep 11 07:42:37 smithi115 bash[42797]: debug 2024-09-11T07:42:37.562+0000 7f39e5c1b640 -1 osd.1 54 *** Got signal Terminated *** 2024-09-11T07:42:37.598 INFO:journalctl@ceph.osd.1.smithi115.stdout:Sep 11 07:42:37 smithi115 bash[42797]: debug 2024-09-11T07:42:37.562+0000 7f39e5c1b640 -1 osd.1 54 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-11T07:42:44.026 INFO:journalctl@ceph.osd.1.smithi115.stdout:Sep 11 07:42:43 smithi115 bash[54005]: ceph-1973416c-700f-11ef-bcea-c7b262605968-osd-1 2024-09-11T07:42:44.026 INFO:journalctl@ceph.osd.1.smithi115.stdout:Sep 11 07:42:43 smithi115 bash[54090]: Error response from daemon: No such container: ceph-1973416c-700f-11ef-bcea-c7b262605968-osd-1 2024-09-11T07:42:45.823 DEBUG:teuthology.orchestra.run.smithi115:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1973416c-700f-11ef-bcea-c7b262605968@osd.1.service' 2024-09-11T07:42:45.857 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-11T07:42:45.857 INFO:tasks.cephadm.osd.1:Stopped osd.1 2024-09-11T07:42:45.857 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2024-09-11T07:42:45.857 DEBUG:teuthology.orchestra.run.smithi150:> sudo systemctl stop ceph-1973416c-700f-11ef-bcea-c7b262605968@osd.2 2024-09-11T07:42:46.196 INFO:journalctl@ceph.osd.2.smithi150.stdout:Sep 11 07:42:45 smithi150 systemd[1]: Stopping Ceph osd.2 for 1973416c-700f-11ef-bcea-c7b262605968... 2024-09-11T07:42:46.196 INFO:journalctl@ceph.osd.2.smithi150.stdout:Sep 11 07:42:46 smithi150 bash[25507]: debug 2024-09-11T07:42:46.035+0000 7fcda23a8640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.2 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-11T07:42:46.196 INFO:journalctl@ceph.osd.2.smithi150.stdout:Sep 11 07:42:46 smithi150 bash[25507]: debug 2024-09-11T07:42:46.035+0000 7fcda23a8640 -1 osd.2 54 *** Got signal Terminated *** 2024-09-11T07:42:46.196 INFO:journalctl@ceph.osd.2.smithi150.stdout:Sep 11 07:42:46 smithi150 bash[25507]: debug 2024-09-11T07:42:46.035+0000 7fcda23a8640 -1 osd.2 54 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-11T07:42:52.195 INFO:journalctl@ceph.osd.2.smithi150.stdout:Sep 11 07:42:51 smithi150 bash[39203]: ceph-1973416c-700f-11ef-bcea-c7b262605968-osd-2 2024-09-11T07:42:52.196 INFO:journalctl@ceph.osd.2.smithi150.stdout:Sep 11 07:42:52 smithi150 bash[39278]: Error response from daemon: No such container: ceph-1973416c-700f-11ef-bcea-c7b262605968-osd-2 2024-09-11T07:42:54.069 DEBUG:teuthology.orchestra.run.smithi150:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1973416c-700f-11ef-bcea-c7b262605968@osd.2.service' 2024-09-11T07:42:54.103 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-11T07:42:54.103 INFO:tasks.cephadm.osd.2:Stopped osd.2 2024-09-11T07:42:54.103 INFO:tasks.cephadm.osd.3:Stopping osd.3... 2024-09-11T07:42:54.103 DEBUG:teuthology.orchestra.run.smithi150:> sudo systemctl stop ceph-1973416c-700f-11ef-bcea-c7b262605968@osd.3 2024-09-11T07:42:54.446 INFO:journalctl@ceph.osd.3.smithi150.stdout:Sep 11 07:42:54 smithi150 systemd[1]: Stopping Ceph osd.3 for 1973416c-700f-11ef-bcea-c7b262605968... 2024-09-11T07:42:54.446 INFO:journalctl@ceph.osd.3.smithi150.stdout:Sep 11 07:42:54 smithi150 bash[33266]: debug 2024-09-11T07:42:54.246+0000 7f04f16f1640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.3 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-11T07:42:54.446 INFO:journalctl@ceph.osd.3.smithi150.stdout:Sep 11 07:42:54 smithi150 bash[33266]: debug 2024-09-11T07:42:54.246+0000 7f04f16f1640 -1 osd.3 54 *** Got signal Terminated *** 2024-09-11T07:42:54.446 INFO:journalctl@ceph.osd.3.smithi150.stdout:Sep 11 07:42:54 smithi150 bash[33266]: debug 2024-09-11T07:42:54.246+0000 7f04f16f1640 -1 osd.3 54 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-11T07:42:56.696 INFO:journalctl@ceph.osd.3.smithi150.stdout:Sep 11 07:42:56 smithi150 bash[33266]: debug 2024-09-11T07:42:56.406+0000 7f04eb504640 -1 osd.3 54 heartbeat_check: no reply from 172.21.15.115:6806 osd.0 since back 2024-09-11T07:42:33.836482+0000 front 2024-09-11T07:42:33.836466+0000 (oldest deadline 2024-09-11T07:42:55.536058+0000) 2024-09-11T07:42:57.696 INFO:journalctl@ceph.osd.3.smithi150.stdout:Sep 11 07:42:57 smithi150 bash[33266]: debug 2024-09-11T07:42:57.434+0000 7f04eb504640 -1 osd.3 54 heartbeat_check: no reply from 172.21.15.115:6806 osd.0 since back 2024-09-11T07:42:33.836482+0000 front 2024-09-11T07:42:33.836466+0000 (oldest deadline 2024-09-11T07:42:55.536058+0000) 2024-09-11T07:42:58.695 INFO:journalctl@ceph.osd.3.smithi150.stdout:Sep 11 07:42:58 smithi150 bash[33266]: debug 2024-09-11T07:42:58.390+0000 7f04eb504640 -1 osd.3 54 heartbeat_check: no reply from 172.21.15.115:6806 osd.0 since back 2024-09-11T07:42:33.836482+0000 front 2024-09-11T07:42:33.836466+0000 (oldest deadline 2024-09-11T07:42:55.536058+0000) 2024-09-11T07:43:00.446 INFO:journalctl@ceph.osd.3.smithi150.stdout:Sep 11 07:43:00 smithi150 bash[39419]: ceph-1973416c-700f-11ef-bcea-c7b262605968-osd-3 2024-09-11T07:43:00.446 INFO:journalctl@ceph.osd.3.smithi150.stdout:Sep 11 07:43:00 smithi150 bash[39502]: Error response from daemon: No such container: ceph-1973416c-700f-11ef-bcea-c7b262605968-osd-3 2024-09-11T07:43:02.294 DEBUG:teuthology.orchestra.run.smithi150:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1973416c-700f-11ef-bcea-c7b262605968@osd.3.service' 2024-09-11T07:43:02.330 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-11T07:43:02.330 INFO:tasks.cephadm.osd.3:Stopped osd.3 2024-09-11T07:43:02.330 INFO:tasks.cephadm.osd.4:Stopping osd.4... 2024-09-11T07:43:02.330 DEBUG:teuthology.orchestra.run.smithi181:> sudo systemctl stop ceph-1973416c-700f-11ef-bcea-c7b262605968@osd.4 2024-09-11T07:43:02.363 DEBUG:teuthology.orchestra.run.smithi181:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1973416c-700f-11ef-bcea-c7b262605968@osd.4.service' 2024-09-11T07:43:02.437 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-11T07:43:02.437 INFO:tasks.cephadm.osd.4:Stopped osd.4 2024-09-11T07:43:02.437 INFO:tasks.cephadm.osd.5:Stopping osd.5... 2024-09-11T07:43:02.437 DEBUG:teuthology.orchestra.run.smithi181:> sudo systemctl stop ceph-1973416c-700f-11ef-bcea-c7b262605968@osd.5 2024-09-11T07:43:02.464 DEBUG:teuthology.orchestra.run.smithi181:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1973416c-700f-11ef-bcea-c7b262605968@osd.5.service' 2024-09-11T07:43:02.503 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-11T07:43:02.503 INFO:tasks.cephadm.osd.5:Stopped osd.5 2024-09-11T07:43:02.503 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1973416c-700f-11ef-bcea-c7b262605968 --force --keep-logs 2024-09-11T07:43:05.051 DEBUG:teuthology.orchestra.run.smithi150:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1973416c-700f-11ef-bcea-c7b262605968 --force --keep-logs 2024-09-11T07:43:07.638 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1973416c-700f-11ef-bcea-c7b262605968 --force --keep-logs 2024-09-11T07:43:09.337 DEBUG:teuthology.orchestra.run.smithi115:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-11T07:43:09.353 DEBUG:teuthology.orchestra.run.smithi150:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-11T07:43:09.370 DEBUG:teuthology.orchestra.run.smithi181:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-11T07:43:09.385 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-11T07:43:09.387 DEBUG:teuthology.misc:Transferring archived files from smithi115:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/crash to /home/teuthworker/archive/gabrioux-2024-09-11_06:53:43-orch:cephadm-wip-guits-quincy-2024-09-10-2008-quincy-distro-default-smithi/7901212/remote/smithi115/crash 2024-09-11T07:43:09.388 DEBUG:teuthology.orchestra.run.smithi115:> sudo tar c -f - -C /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/crash -- . 2024-09-11T07:43:09.403 INFO:teuthology.orchestra.run.smithi115.stderr:tar: /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/crash: Cannot open: No such file or directory 2024-09-11T07:43:09.403 INFO:teuthology.orchestra.run.smithi115.stderr:tar: Error is not recoverable: exiting now 2024-09-11T07:43:09.405 DEBUG:teuthology.misc:Transferring archived files from smithi150:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/crash to /home/teuthworker/archive/gabrioux-2024-09-11_06:53:43-orch:cephadm-wip-guits-quincy-2024-09-10-2008-quincy-distro-default-smithi/7901212/remote/smithi150/crash 2024-09-11T07:43:09.406 DEBUG:teuthology.orchestra.run.smithi150:> sudo tar c -f - -C /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/crash -- . 2024-09-11T07:43:09.427 INFO:teuthology.orchestra.run.smithi150.stderr:tar: /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/crash: Cannot open: No such file or directory 2024-09-11T07:43:09.427 INFO:teuthology.orchestra.run.smithi150.stderr:tar: Error is not recoverable: exiting now 2024-09-11T07:43:09.430 DEBUG:teuthology.misc:Transferring archived files from smithi181:/var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/crash to /home/teuthworker/archive/gabrioux-2024-09-11_06:53:43-orch:cephadm-wip-guits-quincy-2024-09-10-2008-quincy-distro-default-smithi/7901212/remote/smithi181/crash 2024-09-11T07:43:09.431 DEBUG:teuthology.orchestra.run.smithi181:> sudo tar c -f - -C /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/crash -- . 2024-09-11T07:43:09.445 INFO:teuthology.orchestra.run.smithi181.stderr:tar: /var/lib/ceph/1973416c-700f-11ef-bcea-c7b262605968/crash: Cannot open: No such file or directory 2024-09-11T07:43:09.445 INFO:teuthology.orchestra.run.smithi181.stderr:tar: Error is not recoverable: exiting now 2024-09-11T07:43:09.445 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-11T07:43:09.446 DEBUG:teuthology.orchestra.run.smithi115:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | egrep -v 'mons down' | egrep -v 'mon down' | egrep -v 'out of quorum' | head -n 1 2024-09-11T07:43:09.466 INFO:teuthology.orchestra.run.smithi115.stderr:grep: /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph.log: No such file or directory 2024-09-11T07:43:09.467 INFO:tasks.cephadm:Compressing logs... 2024-09-11T07:43:09.468 DEBUG:teuthology.orchestra.run.smithi115:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-11T07:43:09.470 DEBUG:teuthology.orchestra.run.smithi150:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-11T07:43:09.472 DEBUG:teuthology.orchestra.run.smithi181:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-11T07:43:09.478 INFO:teuthology.orchestra.run.smithi115.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-11T07:43:09.486 INFO:teuthology.orchestra.run.smithi150.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-11T07:43:09.497 INFO:teuthology.orchestra.run.smithi150.stderr:gzip -5 --verbose -- /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-mon.b.log 2024-09-11T07:43:09.497 INFO:teuthology.orchestra.run.smithi150.stderr:gzip -5 --verbose -- /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-mgr.b.log 2024-09-11T07:43:09.498 INFO:teuthology.orchestra.run.smithi150.stderr:gzip -5 --verbose -- /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-osd.3.log 2024-09-11T07:43:09.498 INFO:teuthology.orchestra.run.smithi150.stderr:/var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-mon.b.log: gzip -5 --verbose -- /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-volume.log 2024-09-11T07:43:09.499 INFO:teuthology.orchestra.run.smithi150.stderr:/var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-osd.3.log: /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-mgr.b.log: gzip -5 --verbose -- /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-osd.2.log 2024-09-11T07:43:09.499 INFO:teuthology.orchestra.run.smithi150.stderr:/var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-11T07:43:09.500 INFO:teuthology.orchestra.run.smithi115.stderr:gzip -5 --verbose -- /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-mon.a.log 2024-09-11T07:43:09.500 INFO:teuthology.orchestra.run.smithi115.stderr:gzip -5 --verbose -- /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-osd.1.log 2024-09-11T07:43:09.501 INFO:teuthology.orchestra.run.smithi115.stderr:/var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-mon.a.log: gzip -5 --verbose -- /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-mgr.a.log 2024-09-11T07:43:09.501 INFO:teuthology.orchestra.run.smithi115.stderr:gzip -5 --verbose -- /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-osd.0.log 2024-09-11T07:43:09.502 INFO:teuthology.orchestra.run.smithi115.stderr:/var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-osd.1.log: /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-mgr.a.log: gzip -5 --verbose -- /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-volume.log 2024-09-11T07:43:09.502 INFO:teuthology.orchestra.run.smithi115.stderr:/var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-11T07:43:09.504 INFO:teuthology.orchestra.run.smithi181.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-11T07:43:09.505 INFO:teuthology.orchestra.run.smithi150.stderr:/var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-osd.2.log: /var/log/ceph/cephadm.log: 89.6% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-11T07:43:09.507 INFO:teuthology.orchestra.run.smithi150.stderr: 91.8% -- replaced with /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-mgr.b.log.gz 2024-09-11T07:43:09.508 INFO:teuthology.orchestra.run.smithi150.stderr: 91.2% -- replaced with /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-volume.log.gz 2024-09-11T07:43:09.511 INFO:teuthology.orchestra.run.smithi115.stderr:/var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-volume.log: /var/log/ceph/cephadm.log: 90.0% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-11T07:43:09.514 INFO:teuthology.orchestra.run.smithi115.stderr: 91.3% -- replaced with /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-volume.log.gz 2024-09-11T07:43:09.516 INFO:teuthology.orchestra.run.smithi181.stderr:gzip -5 --verbose -- /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-osd.5.log 2024-09-11T07:43:09.517 INFO:teuthology.orchestra.run.smithi181.stderr:gzip -5 --verbose -- /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-mon.c.log 2024-09-11T07:43:09.517 INFO:teuthology.orchestra.run.smithi181.stderr:gzip -5 --verbose -- /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-osd.4.log 2024-09-11T07:43:09.518 INFO:teuthology.orchestra.run.smithi181.stderr:/var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-osd.5.log: /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-mon.c.log: gzip -5 --verbose -- /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-volume.log 2024-09-11T07:43:09.518 INFO:teuthology.orchestra.run.smithi181.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-11T07:43:09.524 INFO:teuthology.orchestra.run.smithi181.stderr:/var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-osd.4.log: /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-volume.log: /var/log/ceph/cephadm.log: 89.4% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-11T07:43:09.532 INFO:teuthology.orchestra.run.smithi181.stderr: 91.3% -- replaced with /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-volume.log.gz 2024-09-11T07:43:09.552 INFO:teuthology.orchestra.run.smithi181.stderr: 92.5% -- replaced with /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-osd.5.log.gz 2024-09-11T07:43:09.553 INFO:teuthology.orchestra.run.smithi115.stderr: 92.9% -- replaced with /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-osd.1.log.gz 2024-09-11T07:43:09.555 INFO:teuthology.orchestra.run.smithi181.stderr: 92.7% -- replaced with /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-osd.4.log.gz 2024-09-11T07:43:09.557 INFO:teuthology.orchestra.run.smithi115.stderr: 92.8% -- replaced with /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-osd.0.log.gz 2024-09-11T07:43:09.559 INFO:teuthology.orchestra.run.smithi150.stderr: 92.8% -- replaced with /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-osd.3.log.gz 2024-09-11T07:43:09.582 INFO:teuthology.orchestra.run.smithi115.stderr: 90.1% -- replaced with /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-mgr.a.log.gz 2024-09-11T07:43:09.602 INFO:teuthology.orchestra.run.smithi150.stderr: 92.9% -- replaced with /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-osd.2.log.gz 2024-09-11T07:43:09.608 INFO:teuthology.orchestra.run.smithi181.stderr: 93.2% -- replaced with /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-mon.c.log.gz 2024-09-11T07:43:09.609 INFO:teuthology.orchestra.run.smithi181.stderr: 2024-09-11T07:43:09.610 INFO:teuthology.orchestra.run.smithi181.stderr:real 0m0.116s 2024-09-11T07:43:09.610 INFO:teuthology.orchestra.run.smithi181.stderr:user 0m0.195s 2024-09-11T07:43:09.610 INFO:teuthology.orchestra.run.smithi181.stderr:sys 0m0.014s 2024-09-11T07:43:09.626 INFO:teuthology.orchestra.run.smithi150.stderr: 92.6% -- replaced with /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-mon.b.log.gz 2024-09-11T07:43:09.628 INFO:teuthology.orchestra.run.smithi150.stderr: 2024-09-11T07:43:09.628 INFO:teuthology.orchestra.run.smithi150.stderr:real 0m0.153s 2024-09-11T07:43:09.628 INFO:teuthology.orchestra.run.smithi150.stderr:user 0m0.294s 2024-09-11T07:43:09.628 INFO:teuthology.orchestra.run.smithi150.stderr:sys 0m0.049s 2024-09-11T07:43:09.798 INFO:teuthology.orchestra.run.smithi115.stderr: 91.0% -- replaced with /var/log/ceph/1973416c-700f-11ef-bcea-c7b262605968/ceph-mon.a.log.gz 2024-09-11T07:43:09.800 INFO:teuthology.orchestra.run.smithi115.stderr: 2024-09-11T07:43:09.800 INFO:teuthology.orchestra.run.smithi115.stderr:real 0m0.327s 2024-09-11T07:43:09.800 INFO:teuthology.orchestra.run.smithi115.stderr:user 0m0.494s 2024-09-11T07:43:09.800 INFO:teuthology.orchestra.run.smithi115.stderr:sys 0m0.035s 2024-09-11T07:43:09.800 INFO:tasks.cephadm:Archiving logs... 2024-09-11T07:43:09.800 DEBUG:teuthology.misc:Transferring archived files from smithi115:/var/log/ceph to /home/teuthworker/archive/gabrioux-2024-09-11_06:53:43-orch:cephadm-wip-guits-quincy-2024-09-10-2008-quincy-distro-default-smithi/7901212/remote/smithi115/log 2024-09-11T07:43:09.801 DEBUG:teuthology.orchestra.run.smithi115:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-11T07:43:09.912 DEBUG:teuthology.misc:Transferring archived files from smithi150:/var/log/ceph to /home/teuthworker/archive/gabrioux-2024-09-11_06:53:43-orch:cephadm-wip-guits-quincy-2024-09-10-2008-quincy-distro-default-smithi/7901212/remote/smithi150/log 2024-09-11T07:43:09.912 DEBUG:teuthology.orchestra.run.smithi150:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-11T07:43:09.971 DEBUG:teuthology.misc:Transferring archived files from smithi181:/var/log/ceph to /home/teuthworker/archive/gabrioux-2024-09-11_06:53:43-orch:cephadm-wip-guits-quincy-2024-09-10-2008-quincy-distro-default-smithi/7901212/remote/smithi181/log 2024-09-11T07:43:09.972 DEBUG:teuthology.orchestra.run.smithi181:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-11T07:43:10.015 INFO:tasks.cephadm:Removing cluster... 2024-09-11T07:43:10.015 DEBUG:teuthology.orchestra.run.smithi115:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1973416c-700f-11ef-bcea-c7b262605968 --force 2024-09-11T07:43:11.550 DEBUG:teuthology.orchestra.run.smithi150:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1973416c-700f-11ef-bcea-c7b262605968 --force 2024-09-11T07:43:13.091 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1973416c-700f-11ef-bcea-c7b262605968 --force 2024-09-11T07:43:14.646 INFO:tasks.cephadm:Removing cephadm ... 2024-09-11T07:43:14.646 DEBUG:teuthology.orchestra.run.smithi115:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-11T07:43:14.653 DEBUG:teuthology.orchestra.run.smithi150:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-11T07:43:14.660 DEBUG:teuthology.orchestra.run.smithi181:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-11T07:43:14.667 INFO:tasks.cephadm:Teardown complete 2024-09-11T07:43:14.667 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-09-11T07:43:14.676 INFO:teuthology.task.install.util:Removing shipped files: /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer... 2024-09-11T07:43:14.677 DEBUG:teuthology.orchestra.run.smithi115:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-11T07:43:14.679 DEBUG:teuthology.orchestra.run.smithi150:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-11T07:43:14.706 DEBUG:teuthology.orchestra.run.smithi181:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-11T07:43:14.792 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-11T07:43:14.800 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-11T07:43:14.800 DEBUG:teuthology.orchestra.run.smithi115:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-11T07:43:14.803 DEBUG:teuthology.orchestra.run.smithi150:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-11T07:43:14.805 DEBUG:teuthology.orchestra.run.smithi181:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-11T07:43:14.822 INFO:teuthology.orchestra.run.smithi115.stdout: remote refid st t when poll reach delay offset jitter 2024-09-11T07:43:14.822 INFO:teuthology.orchestra.run.smithi115.stdout:============================================================================== 2024-09-11T07:43:14.822 INFO:teuthology.orchestra.run.smithi115.stdout:*hv01.front.sepi 67.205.162.81 3 u 35 64 377 0.080 1.337 0.299 2024-09-11T07:43:14.822 INFO:teuthology.orchestra.run.smithi115.stdout:+hv02.front.sepi 63.231.80.2 3 u 37 64 377 0.089 1.428 0.110 2024-09-11T07:43:14.822 INFO:teuthology.orchestra.run.smithi115.stdout:+hv03.front.sepi 74.6.168.72 3 u 38 64 377 0.090 1.711 0.119 2024-09-11T07:43:14.822 INFO:teuthology.orchestra.run.smithi115.stdout: hv04.front.sepi .INIT. 16 u - 512 0 0.000 0.000 0.000 2024-09-11T07:43:14.824 INFO:teuthology.orchestra.run.smithi150.stdout: remote refid st t when poll reach delay offset jitter 2024-09-11T07:43:14.825 INFO:teuthology.orchestra.run.smithi150.stdout:============================================================================== 2024-09-11T07:43:14.825 INFO:teuthology.orchestra.run.smithi150.stdout:+hv01.front.sepi 67.205.162.81 3 u 98 128 377 0.083 1.377 0.296 2024-09-11T07:43:14.825 INFO:teuthology.orchestra.run.smithi150.stdout:*hv02.front.sepi 63.231.80.2 3 u 21 128 377 0.125 1.629 0.248 2024-09-11T07:43:14.825 INFO:teuthology.orchestra.run.smithi150.stdout:+hv03.front.sepi 74.6.168.72 3 u 104 128 377 0.094 1.685 0.129 2024-09-11T07:43:14.825 INFO:teuthology.orchestra.run.smithi150.stdout: hv04.front.sepi .INIT. 16 u - 512 0 0.000 0.000 0.000 2024-09-11T07:43:14.827 INFO:teuthology.orchestra.run.smithi181.stdout: remote refid st t when poll reach delay offset jitter 2024-09-11T07:43:14.828 INFO:teuthology.orchestra.run.smithi181.stdout:============================================================================== 2024-09-11T07:43:14.828 INFO:teuthology.orchestra.run.smithi181.stdout:+hv01.front.sepi 67.205.162.81 3 u 36 64 377 0.089 0.599 0.528 2024-09-11T07:43:14.828 INFO:teuthology.orchestra.run.smithi181.stdout:*hv02.front.sepi 63.231.80.2 3 u 29 64 377 0.089 1.271 0.242 2024-09-11T07:43:14.828 INFO:teuthology.orchestra.run.smithi181.stdout:+hv03.front.sepi 74.6.168.72 3 u 40 64 377 0.083 1.443 0.185 2024-09-11T07:43:14.828 INFO:teuthology.orchestra.run.smithi181.stdout: hv04.front.sepi .INIT. 16 u - 512 0 0.000 0.000 0.000 2024-09-11T07:43:14.829 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-11T07:43:14.837 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-11T07:43:14.837 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-11T07:43:14.852 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-11T07:43:14.859 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-11T07:43:14.867 INFO:teuthology.task.internal:Duration was 1495.438778 seconds 2024-09-11T07:43:14.868 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-11T07:43:14.876 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-11T07:43:14.876 DEBUG:teuthology.orchestra.run.smithi115:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-11T07:43:14.879 DEBUG:teuthology.orchestra.run.smithi150:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-11T07:43:14.881 DEBUG:teuthology.orchestra.run.smithi181:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-11T07:43:14.933 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-11T07:43:14.933 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi115.front.sepia.ceph.com 2024-09-11T07:43:14.933 DEBUG:teuthology.orchestra.run.smithi115:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-11T07:43:14.948 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi150.front.sepia.ceph.com 2024-09-11T07:43:14.948 DEBUG:teuthology.orchestra.run.smithi150:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-11T07:43:14.962 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi181.front.sepia.ceph.com 2024-09-11T07:43:14.962 DEBUG:teuthology.orchestra.run.smithi181:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-11T07:43:14.976 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-11T07:43:14.976 DEBUG:teuthology.orchestra.run.smithi115:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-11T07:43:14.978 DEBUG:teuthology.orchestra.run.smithi150:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-11T07:43:14.980 DEBUG:teuthology.orchestra.run.smithi181:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-11T07:43:15.063 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-11T07:43:15.063 DEBUG:teuthology.orchestra.run.smithi115:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-11T07:43:15.065 DEBUG:teuthology.orchestra.run.smithi150:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-11T07:43:15.067 DEBUG:teuthology.orchestra.run.smithi181:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-11T07:43:15.160 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-11T07:43:15.170 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-11T07:43:15.170 DEBUG:teuthology.orchestra.run.smithi115:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-11T07:43:15.187 DEBUG:teuthology.orchestra.run.smithi150:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-11T07:43:15.203 DEBUG:teuthology.orchestra.run.smithi181:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-11T07:43:15.218 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-11T07:43:15.226 DEBUG:teuthology.orchestra.run.smithi115:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-11T07:43:15.229 DEBUG:teuthology.orchestra.run.smithi150:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-11T07:43:15.231 DEBUG:teuthology.orchestra.run.smithi181:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-11T07:43:15.240 INFO:teuthology.orchestra.run.smithi115.stdout:kernel.core_pattern = core 2024-09-11T07:43:15.242 INFO:teuthology.orchestra.run.smithi181.stdout:kernel.core_pattern = core 2024-09-11T07:43:15.243 INFO:teuthology.orchestra.run.smithi150.stdout:kernel.core_pattern = core 2024-09-11T07:43:15.275 DEBUG:teuthology.orchestra.run.smithi115:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-11T07:43:15.317 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-11T07:43:15.317 DEBUG:teuthology.orchestra.run.smithi150:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-11T07:43:15.323 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-11T07:43:15.323 DEBUG:teuthology.orchestra.run.smithi181:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-11T07:43:15.328 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-11T07:43:15.329 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-11T07:43:15.340 INFO:teuthology.task.internal:Transferring archived files... 2024-09-11T07:43:15.340 DEBUG:teuthology.misc:Transferring archived files from smithi115:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/gabrioux-2024-09-11_06:53:43-orch:cephadm-wip-guits-quincy-2024-09-10-2008-quincy-distro-default-smithi/7901212/remote/smithi115 2024-09-11T07:43:15.340 DEBUG:teuthology.orchestra.run.smithi115:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-11T07:43:15.373 DEBUG:teuthology.misc:Transferring archived files from smithi150:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/gabrioux-2024-09-11_06:53:43-orch:cephadm-wip-guits-quincy-2024-09-10-2008-quincy-distro-default-smithi/7901212/remote/smithi150 2024-09-11T07:43:15.374 DEBUG:teuthology.orchestra.run.smithi150:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-11T07:43:15.400 DEBUG:teuthology.misc:Transferring archived files from smithi181:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/gabrioux-2024-09-11_06:53:43-orch:cephadm-wip-guits-quincy-2024-09-10-2008-quincy-distro-default-smithi/7901212/remote/smithi181 2024-09-11T07:43:15.401 DEBUG:teuthology.orchestra.run.smithi181:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-11T07:43:15.426 INFO:teuthology.task.internal:Removing archive directory... 2024-09-11T07:43:15.427 DEBUG:teuthology.orchestra.run.smithi115:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-11T07:43:15.429 DEBUG:teuthology.orchestra.run.smithi150:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-11T07:43:15.431 DEBUG:teuthology.orchestra.run.smithi181:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-11T07:43:15.436 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-11T07:43:15.447 INFO:teuthology.task.internal:Not uploading archives. 2024-09-11T07:43:15.447 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-11T07:43:15.484 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-11T07:43:15.485 DEBUG:teuthology.orchestra.run.smithi115:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-11T07:43:15.487 DEBUG:teuthology.orchestra.run.smithi150:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-11T07:43:15.489 DEBUG:teuthology.orchestra.run.smithi181:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-11T07:43:15.492 INFO:teuthology.orchestra.run.smithi115.stdout: 924112 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 11 07:43 /home/ubuntu/cephtest 2024-09-11T07:43:15.494 INFO:teuthology.orchestra.run.smithi150.stdout: 924112 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 11 07:43 /home/ubuntu/cephtest 2024-09-11T07:43:15.497 INFO:teuthology.orchestra.run.smithi181.stdout: 924112 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 11 07:43 /home/ubuntu/cephtest 2024-09-11T07:43:15.499 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-11T07:43:15.508 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-11T07:43:15.555 INFO:teuthology.run:Summary data: description: orch:cephadm/workunits/{0-distro/ubuntu_20.04 agent/off mon_election/classic task/test_host_drain} duration: 1495.4387784004211 flavor: default owner: scheduled_gabrioux@teuthology success: true 2024-09-11T07:43:15.555 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-11T07:43:15.639 INFO:teuthology.run:pass