2024-09-16T23:34:01.371 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-16T23:34:01.386 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-16T23:34:01.459 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7907884 branch: squid description: orch/cephadm/workunits/{0-distro/ubuntu_22.04 agent/off mon_election/classic task/test_host_drain} email: ceph-qa@ceph.com first_in_suite: false job_id: '7907884' kernel: kdb: 1 sha1: distro ktype: distro last_in_suite: false machine_type: smithi name: teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi no_nested_subset: false os_type: ubuntu os_version: '22.04' overrides: admin_socket: branch: squid 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 - CEPHADM_STRAY_HOST - CEPHADM_STRAY_DAEMON - CEPHADM_FAILED_DAEMON log-only-match: - CEPHADM_ sha1: c2ddf9721ef254645201cdbabd9c8f49c30a586f ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: c2ddf9721ef254645201cdbabd9c8f49c30a586f workunit: branch: squid sha1: e20bff7d16f5b09c58ead9548e8cf98cf87ee227 owner: scheduled_teuthology@teuthology priority: 100 repo: https://git.ceph.com/ceph.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: 599 sha1: c2ddf9721ef254645201cdbabd9c8f49c30a586f sleep_before_teardown: 0 subset: 33/64 suite: orch suite_branch: squid suite_path: /home/teuthworker/src/git.ceph.com_ceph_e20bff7d16f5b09c58ead9548e8cf98cf87ee227/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: e20bff7d16f5b09c58ead9548e8cf98cf87ee227 targets: smithi033.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFZyYs3/OiCYu27ByIczmQIJLqlwaoxC2LbYMmucb6/OWmMTIDGbseku783lMn3FfMIYdRM/MJg18+b2eRFMiOA= smithi089.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOTQ77DoWOaMihGImho65yS04VhfK/XiQnLo3geGcCcEls+S9jQA7Jow2WzSSgVRbpb+WWIJn7Sowi7tfgVzTZU= smithi103.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFVlH4Fw3h3gFJYja6FC8HT5/zYlL0tycTszeddPrulenXW8Fug46V6lG0JXqnnB0Ik7MRd2WDHbN0mB2H08JTU= 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# One last thing to worry about before\ \ draining the host\n# is that the teuthology test tends to put the explicit\n\ # hostnames in the placement for the mon service.\n# We want to make sure we\ \ can drain without providing\n# --force and there is a check for the host being\ \ removed\n# being listed explicitly in the placements. Therefore,\n# we should\ \ remove it from the mon placement.\nceph orch ls mon --export > mon.yaml\n\ sed /\"$HOST_C\"/d mon.yaml > mon_adjusted.yaml\nceph orch apply -i mon_adjusted.yaml\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)\n\ while [ \"$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\n\ crushtool -d compiled-crushmap -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\n\ if ! 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\nfi\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\ncrushtool -d compiled-crushmap\ \ -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\nif 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-16_21:08:04 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.3401856 2024-09-16T23:34:01.459 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_e20bff7d16f5b09c58ead9548e8cf98cf87ee227/qa; will attempt to use it 2024-09-16T23:34:01.460 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_e20bff7d16f5b09c58ead9548e8cf98cf87ee227/qa/tasks 2024-09-16T23:34:01.460 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-16T23:34:01.461 INFO:teuthology.task.internal:Checking packages... 2024-09-16T23:34:01.485 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash 'c2ddf9721ef254645201cdbabd9c8f49c30a586f' 2024-09-16T23:34:01.486 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-16T23:34:01.486 INFO:teuthology.packaging:ref: None 2024-09-16T23:34:01.486 INFO:teuthology.packaging:tag: None 2024-09-16T23:34:01.486 INFO:teuthology.packaging:branch: squid 2024-09-16T23:34:01.486 INFO:teuthology.packaging:sha1: c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-16T23:34:01.486 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&ref=squid 2024-09-16T23:34:01.718 INFO:teuthology.task.internal:Found packages for ceph version 19.1.1-336-ge20bff7d-1jammy 2024-09-16T23:34:01.720 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-16T23:34:01.727 INFO:teuthology.task.internal:no buildpackages task found 2024-09-16T23:34:01.727 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-16T23:34:01.735 INFO:teuthology.task.internal:Saving configuration 2024-09-16T23:34:01.748 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-16T23:34:01.756 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-16T23:34:01.780 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi033.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7907884', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-16 23:28:05.639609', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBUd3zUe7vdQdfyg2Kgeb/R54Hg7fES7svtec+2RIGTQ'} 2024-09-16T23:34:01.805 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi089.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7907884', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-16 23:28:05.642096', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPCcxhXpiXegHBnLHzgm3zbANWfiqf+FTxtiqZaI5Nzn'} 2024-09-16T23:34:01.830 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi103.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7907884', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-16 23:28:05.637651', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIERBmcFH3VDU2cZRdu7KUZGTxVsLTwxWeb82dd/nW5vJ'} 2024-09-16T23:34:01.830 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-16T23:34:01.837 INFO:teuthology.task.internal:roles: ubuntu@smithi033.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-09-16T23:34:01.837 INFO:teuthology.task.internal:roles: ubuntu@smithi089.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-09-16T23:34:01.837 INFO:teuthology.task.internal:roles: ubuntu@smithi103.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-09-16T23:34:01.838 INFO:teuthology.run_tasks:Running task console_log... 2024-09-16T23:34:01.927 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f1c29702e60>, signals=[15]) 2024-09-16T23:34:01.927 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-16T23:34:01.936 INFO:teuthology.task.internal:Opening connections... 2024-09-16T23:34:01.936 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi033.front.sepia.ceph.com 2024-09-16T23:34:01.937 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi033.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T23:34:02.020 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi089.front.sepia.ceph.com 2024-09-16T23:34:02.021 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi089.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T23:34:02.100 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi103.front.sepia.ceph.com 2024-09-16T23:34:02.101 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi103.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T23:34:02.177 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-16T23:34:02.184 DEBUG:teuthology.orchestra.run.smithi033:> uname -m 2024-09-16T23:34:02.190 INFO:teuthology.orchestra.run.smithi033.stdout:x86_64 2024-09-16T23:34:02.190 DEBUG:teuthology.orchestra.run.smithi033:> cat /etc/os-release 2024-09-16T23:34:02.236 INFO:teuthology.orchestra.run.smithi033.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-16T23:34:02.236 INFO:teuthology.orchestra.run.smithi033.stdout:NAME="Ubuntu" 2024-09-16T23:34:02.236 INFO:teuthology.orchestra.run.smithi033.stdout:VERSION_ID="22.04" 2024-09-16T23:34:02.236 INFO:teuthology.orchestra.run.smithi033.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-16T23:34:02.236 INFO:teuthology.orchestra.run.smithi033.stdout:VERSION_CODENAME=jammy 2024-09-16T23:34:02.236 INFO:teuthology.orchestra.run.smithi033.stdout:ID=ubuntu 2024-09-16T23:34:02.236 INFO:teuthology.orchestra.run.smithi033.stdout:ID_LIKE=debian 2024-09-16T23:34:02.236 INFO:teuthology.orchestra.run.smithi033.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-16T23:34:02.236 INFO:teuthology.orchestra.run.smithi033.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-16T23:34:02.236 INFO:teuthology.orchestra.run.smithi033.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-16T23:34:02.237 INFO:teuthology.orchestra.run.smithi033.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-16T23:34:02.237 INFO:teuthology.orchestra.run.smithi033.stdout:UBUNTU_CODENAME=jammy 2024-09-16T23:34:02.237 INFO:teuthology.lock.ops:Updating smithi033.front.sepia.ceph.com on lock server 2024-09-16T23:34:02.262 DEBUG:teuthology.orchestra.run.smithi089:> uname -m 2024-09-16T23:34:02.268 INFO:teuthology.orchestra.run.smithi089.stdout:x86_64 2024-09-16T23:34:02.268 DEBUG:teuthology.orchestra.run.smithi089:> cat /etc/os-release 2024-09-16T23:34:02.316 INFO:teuthology.orchestra.run.smithi089.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-16T23:34:02.316 INFO:teuthology.orchestra.run.smithi089.stdout:NAME="Ubuntu" 2024-09-16T23:34:02.316 INFO:teuthology.orchestra.run.smithi089.stdout:VERSION_ID="22.04" 2024-09-16T23:34:02.316 INFO:teuthology.orchestra.run.smithi089.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-16T23:34:02.316 INFO:teuthology.orchestra.run.smithi089.stdout:VERSION_CODENAME=jammy 2024-09-16T23:34:02.317 INFO:teuthology.orchestra.run.smithi089.stdout:ID=ubuntu 2024-09-16T23:34:02.317 INFO:teuthology.orchestra.run.smithi089.stdout:ID_LIKE=debian 2024-09-16T23:34:02.317 INFO:teuthology.orchestra.run.smithi089.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-16T23:34:02.317 INFO:teuthology.orchestra.run.smithi089.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-16T23:34:02.317 INFO:teuthology.orchestra.run.smithi089.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-16T23:34:02.317 INFO:teuthology.orchestra.run.smithi089.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-16T23:34:02.317 INFO:teuthology.orchestra.run.smithi089.stdout:UBUNTU_CODENAME=jammy 2024-09-16T23:34:02.317 INFO:teuthology.lock.ops:Updating smithi089.front.sepia.ceph.com on lock server 2024-09-16T23:34:02.337 DEBUG:teuthology.orchestra.run.smithi103:> uname -m 2024-09-16T23:34:02.343 INFO:teuthology.orchestra.run.smithi103.stdout:x86_64 2024-09-16T23:34:02.343 DEBUG:teuthology.orchestra.run.smithi103:> cat /etc/os-release 2024-09-16T23:34:02.389 INFO:teuthology.orchestra.run.smithi103.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-16T23:34:02.389 INFO:teuthology.orchestra.run.smithi103.stdout:NAME="Ubuntu" 2024-09-16T23:34:02.389 INFO:teuthology.orchestra.run.smithi103.stdout:VERSION_ID="22.04" 2024-09-16T23:34:02.389 INFO:teuthology.orchestra.run.smithi103.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-16T23:34:02.389 INFO:teuthology.orchestra.run.smithi103.stdout:VERSION_CODENAME=jammy 2024-09-16T23:34:02.390 INFO:teuthology.orchestra.run.smithi103.stdout:ID=ubuntu 2024-09-16T23:34:02.390 INFO:teuthology.orchestra.run.smithi103.stdout:ID_LIKE=debian 2024-09-16T23:34:02.390 INFO:teuthology.orchestra.run.smithi103.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-16T23:34:02.390 INFO:teuthology.orchestra.run.smithi103.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-16T23:34:02.390 INFO:teuthology.orchestra.run.smithi103.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-16T23:34:02.390 INFO:teuthology.orchestra.run.smithi103.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-16T23:34:02.390 INFO:teuthology.orchestra.run.smithi103.stdout:UBUNTU_CODENAME=jammy 2024-09-16T23:34:02.390 INFO:teuthology.lock.ops:Updating smithi103.front.sepia.ceph.com on lock server 2024-09-16T23:34:02.412 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-16T23:34:02.425 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-16T23:34:02.435 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-16T23:34:02.436 DEBUG:teuthology.orchestra.run.smithi033:> test '!' -e /home/ubuntu/cephtest 2024-09-16T23:34:02.438 DEBUG:teuthology.orchestra.run.smithi089:> test '!' -e /home/ubuntu/cephtest 2024-09-16T23:34:02.440 DEBUG:teuthology.orchestra.run.smithi103:> test '!' -e /home/ubuntu/cephtest 2024-09-16T23:34:02.446 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-16T23:34:02.456 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-16T23:34:02.456 DEBUG:teuthology.orchestra.run.smithi033:> test -z $(ls -A /var/lib/ceph) 2024-09-16T23:34:02.485 DEBUG:teuthology.orchestra.run.smithi089:> test -z $(ls -A /var/lib/ceph) 2024-09-16T23:34:02.487 DEBUG:teuthology.orchestra.run.smithi103:> test -z $(ls -A /var/lib/ceph) 2024-09-16T23:34:02.510 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-16T23:34:02.591 INFO:teuthology.run_tasks:Running task kernel... 2024-09-16T23:34:02.610 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-16T23:34:02.610 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-16T23:34:02.610 DEBUG:teuthology.orchestra.run.smithi033:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-16T23:34:02.611 DEBUG:teuthology.orchestra.run.smithi089:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-16T23:34:02.611 DEBUG:teuthology.orchestra.run.smithi103:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-16T23:34:02.616 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-16T23:34:02.616 DEBUG:teuthology.orchestra.run.smithi089:> uname -r 2024-09-16T23:34:02.617 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-16T23:34:02.617 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-16T23:34:02.618 DEBUG:teuthology.orchestra.run.smithi103:> uname -r 2024-09-16T23:34:02.618 DEBUG:teuthology.orchestra.run.smithi033:> uname -r 2024-09-16T23:34:02.664 INFO:teuthology.orchestra.run.smithi033.stdout:5.15.0-56-generic 2024-09-16T23:34:02.664 INFO:teuthology.task.kernel:Running kernel on smithi033: 5.15.0-56-generic 2024-09-16T23:34:02.665 DEBUG:teuthology.orchestra.run.smithi033:> sudo apt-get clean 2024-09-16T23:34:02.667 INFO:teuthology.orchestra.run.smithi103.stdout:5.15.0-56-generic 2024-09-16T23:34:02.667 INFO:teuthology.orchestra.run.smithi089.stdout:5.15.0-56-generic 2024-09-16T23:34:02.667 INFO:teuthology.task.kernel:Running kernel on smithi103: 5.15.0-56-generic 2024-09-16T23:34:02.667 DEBUG:teuthology.orchestra.run.smithi103:> sudo apt-get clean 2024-09-16T23:34:02.668 INFO:teuthology.task.kernel:Running kernel on smithi089: 5.15.0-56-generic 2024-09-16T23:34:02.668 DEBUG:teuthology.orchestra.run.smithi089:> sudo apt-get clean 2024-09-16T23:34:02.798 DEBUG:teuthology.orchestra.run.smithi103:> sudo apt-get update 2024-09-16T23:34:02.799 DEBUG:teuthology.orchestra.run.smithi089:> sudo apt-get update 2024-09-16T23:34:02.802 DEBUG:teuthology.orchestra.run.smithi033:> sudo apt-get update 2024-09-16T23:34:02.958 INFO:teuthology.orchestra.run.smithi103.stdout:Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-16T23:34:02.958 INFO:teuthology.orchestra.run.smithi089.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T23:34:02.961 INFO:teuthology.orchestra.run.smithi033.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T23:34:02.975 INFO:teuthology.orchestra.run.smithi033.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-16T23:34:02.981 INFO:teuthology.orchestra.run.smithi089.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-16T23:34:03.046 INFO:teuthology.orchestra.run.smithi033.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-16T23:34:03.046 INFO:teuthology.orchestra.run.smithi089.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-16T23:34:03.068 INFO:teuthology.orchestra.run.smithi089.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-16T23:34:03.068 INFO:teuthology.orchestra.run.smithi103.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T23:34:03.076 INFO:teuthology.orchestra.run.smithi033.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-16T23:34:03.149 INFO:teuthology.orchestra.run.smithi103.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-16T23:34:03.172 INFO:teuthology.orchestra.run.smithi103.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,806 kB] 2024-09-16T23:34:03.179 INFO:teuthology.orchestra.run.smithi089.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [701 kB] 2024-09-16T23:34:03.236 INFO:teuthology.orchestra.run.smithi033.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,058 kB] 2024-09-16T23:34:03.252 INFO:teuthology.orchestra.run.smithi089.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,058 kB] 2024-09-16T23:34:03.274 INFO:teuthology.orchestra.run.smithi103.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [539 kB] 2024-09-16T23:34:03.279 INFO:teuthology.orchestra.run.smithi103.stdout:Get:6 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [295 kB] 2024-09-16T23:34:03.282 INFO:teuthology.orchestra.run.smithi103.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-16T23:34:03.283 INFO:teuthology.orchestra.run.smithi103.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,377 kB] 2024-09-16T23:34:03.286 INFO:teuthology.orchestra.run.smithi089.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [355 kB] 2024-09-16T23:34:03.289 INFO:teuthology.orchestra.run.smithi089.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-16T23:34:03.290 INFO:teuthology.orchestra.run.smithi089.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-16T23:34:03.290 INFO:teuthology.orchestra.run.smithi089.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,495 kB] 2024-09-16T23:34:03.303 INFO:teuthology.orchestra.run.smithi103.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-16T23:34:03.303 INFO:teuthology.orchestra.run.smithi103.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [409 kB] 2024-09-16T23:34:03.307 INFO:teuthology.orchestra.run.smithi103.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-16T23:34:03.307 INFO:teuthology.orchestra.run.smithi103.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [902 kB] 2024-09-16T23:34:03.308 INFO:teuthology.orchestra.run.smithi089.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [429 kB] 2024-09-16T23:34:03.312 INFO:teuthology.orchestra.run.smithi089.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-16T23:34:03.312 INFO:teuthology.orchestra.run.smithi089.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,124 kB] 2024-09-16T23:34:03.314 INFO:teuthology.orchestra.run.smithi103.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [627 kB] 2024-09-16T23:34:03.320 INFO:teuthology.orchestra.run.smithi103.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [176 kB] 2024-09-16T23:34:03.321 INFO:teuthology.orchestra.run.smithi089.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [732 kB] 2024-09-16T23:34:03.326 INFO:teuthology.orchestra.run.smithi089.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-16T23:34:03.328 INFO:teuthology.orchestra.run.smithi089.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-16T23:34:03.336 INFO:teuthology.orchestra.run.smithi089.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-16T23:34:03.336 INFO:teuthology.orchestra.run.smithi089.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-16T23:34:03.337 INFO:teuthology.orchestra.run.smithi089.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-16T23:34:03.339 INFO:teuthology.orchestra.run.smithi033.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [701 kB] 2024-09-16T23:34:03.340 INFO:teuthology.orchestra.run.smithi089.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-16T23:34:03.341 INFO:teuthology.orchestra.run.smithi089.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-16T23:34:03.341 INFO:teuthology.orchestra.run.smithi089.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-16T23:34:03.342 INFO:teuthology.orchestra.run.smithi089.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-16T23:34:03.344 INFO:teuthology.orchestra.run.smithi033.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [355 kB] 2024-09-16T23:34:03.347 INFO:teuthology.orchestra.run.smithi033.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-16T23:34:03.348 INFO:teuthology.orchestra.run.smithi033.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,495 kB] 2024-09-16T23:34:03.358 INFO:teuthology.orchestra.run.smithi089.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-16T23:34:03.358 INFO:teuthology.orchestra.run.smithi089.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-16T23:34:03.359 INFO:teuthology.orchestra.run.smithi103.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.3 kB] 2024-09-16T23:34:03.359 INFO:teuthology.orchestra.run.smithi103.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-16T23:34:03.359 INFO:teuthology.orchestra.run.smithi103.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-16T23:34:03.359 INFO:teuthology.orchestra.run.smithi089.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-16T23:34:03.360 INFO:teuthology.orchestra.run.smithi089.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-16T23:34:03.360 INFO:teuthology.orchestra.run.smithi089.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-16T23:34:03.360 INFO:teuthology.orchestra.run.smithi103.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-16T23:34:03.367 INFO:teuthology.orchestra.run.smithi033.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-16T23:34:03.367 INFO:teuthology.orchestra.run.smithi033.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [429 kB] 2024-09-16T23:34:03.370 INFO:teuthology.orchestra.run.smithi033.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-16T23:34:03.370 INFO:teuthology.orchestra.run.smithi033.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [732 kB] 2024-09-16T23:34:03.376 INFO:teuthology.orchestra.run.smithi033.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,124 kB] 2024-09-16T23:34:03.384 INFO:teuthology.orchestra.run.smithi033.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-16T23:34:03.386 INFO:teuthology.orchestra.run.smithi033.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-16T23:34:03.386 INFO:teuthology.orchestra.run.smithi033.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-16T23:34:03.388 INFO:teuthology.orchestra.run.smithi103.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-16T23:34:03.437 INFO:teuthology.orchestra.run.smithi033.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-16T23:34:03.437 INFO:teuthology.orchestra.run.smithi033.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-16T23:34:03.437 INFO:teuthology.orchestra.run.smithi033.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-16T23:34:03.437 INFO:teuthology.orchestra.run.smithi033.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-16T23:34:03.437 INFO:teuthology.orchestra.run.smithi033.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-16T23:34:03.438 INFO:teuthology.orchestra.run.smithi033.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-16T23:34:03.438 INFO:teuthology.orchestra.run.smithi033.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-16T23:34:03.438 INFO:teuthology.orchestra.run.smithi033.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-16T23:34:03.454 INFO:teuthology.orchestra.run.smithi033.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-16T23:34:03.471 INFO:teuthology.orchestra.run.smithi033.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-16T23:34:03.471 INFO:teuthology.orchestra.run.smithi033.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-16T23:34:03.504 INFO:teuthology.orchestra.run.smithi103.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-16T23:34:03.507 INFO:teuthology.orchestra.run.smithi089.stdout:Get:29 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,806 kB] 2024-09-16T23:34:03.544 INFO:teuthology.orchestra.run.smithi033.stdout:Get:29 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,806 kB] 2024-09-16T23:34:03.643 INFO:teuthology.orchestra.run.smithi103.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [701 kB] 2024-09-16T23:34:03.837 INFO:teuthology.orchestra.run.smithi103.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,058 kB] 2024-09-16T23:34:03.929 INFO:teuthology.orchestra.run.smithi089.stdout:Get:30 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [539 kB] 2024-09-16T23:34:03.945 INFO:teuthology.orchestra.run.smithi089.stdout:Get:31 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [295 kB] 2024-09-16T23:34:03.954 INFO:teuthology.orchestra.run.smithi089.stdout:Get:32 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-16T23:34:03.954 INFO:teuthology.orchestra.run.smithi089.stdout:Get:33 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-16T23:34:03.956 INFO:teuthology.orchestra.run.smithi089.stdout:Get:34 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,377 kB] 2024-09-16T23:34:03.966 INFO:teuthology.orchestra.run.smithi033.stdout:Get:30 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [539 kB] 2024-09-16T23:34:03.982 INFO:teuthology.orchestra.run.smithi033.stdout:Get:31 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [295 kB] 2024-09-16T23:34:03.991 INFO:teuthology.orchestra.run.smithi033.stdout:Get:32 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-16T23:34:03.991 INFO:teuthology.orchestra.run.smithi033.stdout:Get:33 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,377 kB] 2024-09-16T23:34:03.997 INFO:teuthology.orchestra.run.smithi103.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [355 kB] 2024-09-16T23:34:04.011 INFO:teuthology.orchestra.run.smithi103.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-16T23:34:04.011 INFO:teuthology.orchestra.run.smithi103.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-16T23:34:04.013 INFO:teuthology.orchestra.run.smithi103.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,495 kB] 2024-09-16T23:34:04.052 INFO:teuthology.orchestra.run.smithi089.stdout:Get:35 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [409 kB] 2024-09-16T23:34:04.064 INFO:teuthology.orchestra.run.smithi089.stdout:Get:36 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-16T23:34:04.064 INFO:teuthology.orchestra.run.smithi089.stdout:Get:37 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [627 kB] 2024-09-16T23:34:04.086 INFO:teuthology.orchestra.run.smithi103.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [429 kB] 2024-09-16T23:34:04.087 INFO:teuthology.orchestra.run.smithi033.stdout:Get:34 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-16T23:34:04.089 INFO:teuthology.orchestra.run.smithi033.stdout:Get:35 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [409 kB] 2024-09-16T23:34:04.099 INFO:teuthology.orchestra.run.smithi033.stdout:Get:36 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-16T23:34:04.100 INFO:teuthology.orchestra.run.smithi103.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-16T23:34:04.100 INFO:teuthology.orchestra.run.smithi033.stdout:Get:37 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [627 kB] 2024-09-16T23:34:04.101 INFO:teuthology.orchestra.run.smithi103.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,124 kB] 2024-09-16T23:34:04.107 INFO:teuthology.orchestra.run.smithi089.stdout:Get:38 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [902 kB] 2024-09-16T23:34:04.116 INFO:teuthology.orchestra.run.smithi033.stdout:Get:38 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [902 kB] 2024-09-16T23:34:04.127 INFO:teuthology.orchestra.run.smithi089.stdout:Get:39 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [176 kB] 2024-09-16T23:34:04.130 INFO:teuthology.orchestra.run.smithi089.stdout:Get:40 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.3 kB] 2024-09-16T23:34:04.131 INFO:teuthology.orchestra.run.smithi089.stdout:Get:41 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-16T23:34:04.131 INFO:teuthology.orchestra.run.smithi103.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [732 kB] 2024-09-16T23:34:04.132 INFO:teuthology.orchestra.run.smithi089.stdout:Get:42 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-16T23:34:04.132 INFO:teuthology.orchestra.run.smithi089.stdout:Get:43 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-16T23:34:04.145 INFO:teuthology.orchestra.run.smithi033.stdout:Get:39 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [176 kB] 2024-09-16T23:34:04.148 INFO:teuthology.orchestra.run.smithi033.stdout:Get:40 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.3 kB] 2024-09-16T23:34:04.149 INFO:teuthology.orchestra.run.smithi103.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-16T23:34:04.152 INFO:teuthology.orchestra.run.smithi033.stdout:Get:41 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-16T23:34:04.152 INFO:teuthology.orchestra.run.smithi033.stdout:Get:42 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-16T23:34:04.155 INFO:teuthology.orchestra.run.smithi103.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-16T23:34:04.160 INFO:teuthology.orchestra.run.smithi103.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-16T23:34:04.161 INFO:teuthology.orchestra.run.smithi103.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-16T23:34:04.162 INFO:teuthology.orchestra.run.smithi103.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-16T23:34:04.191 INFO:teuthology.orchestra.run.smithi089.stdout:Get:44 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-16T23:34:04.232 INFO:teuthology.orchestra.run.smithi033.stdout:Get:43 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-16T23:34:04.233 INFO:teuthology.orchestra.run.smithi033.stdout:Get:44 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-16T23:34:04.237 INFO:teuthology.orchestra.run.smithi103.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-16T23:34:04.238 INFO:teuthology.orchestra.run.smithi103.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-16T23:34:04.239 INFO:teuthology.orchestra.run.smithi103.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-16T23:34:04.240 INFO:teuthology.orchestra.run.smithi103.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-16T23:34:04.241 INFO:teuthology.orchestra.run.smithi103.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-16T23:34:04.241 INFO:teuthology.orchestra.run.smithi103.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-16T23:34:04.242 INFO:teuthology.orchestra.run.smithi103.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-16T23:34:04.323 INFO:teuthology.orchestra.run.smithi103.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-16T23:34:04.324 INFO:teuthology.orchestra.run.smithi103.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-16T23:34:09.634 INFO:teuthology.orchestra.run.smithi089.stdout:Fetched 16.1 MB in 2s (7,521 kB/s) 2024-09-16T23:34:09.915 INFO:teuthology.orchestra.run.smithi033.stdout:Fetched 16.1 MB in 2s (7,002 kB/s) 2024-09-16T23:34:09.949 INFO:teuthology.orchestra.run.smithi103.stdout:Fetched 16.1 MB in 2s (7,388 kB/s) 2024-09-16T23:34:11.054 INFO:teuthology.orchestra.run.smithi089.stdout:Reading package lists... 2024-09-16T23:34:11.071 DEBUG:teuthology.orchestra.run.smithi089:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-16T23:34:11.136 INFO:teuthology.orchestra.run.smithi089.stdout:Reading package lists... 2024-09-16T23:34:11.346 INFO:teuthology.orchestra.run.smithi089.stdout:Building dependency tree... 2024-09-16T23:34:11.347 INFO:teuthology.orchestra.run.smithi089.stdout:Reading state information... 2024-09-16T23:34:11.376 INFO:teuthology.orchestra.run.smithi033.stdout:Reading package lists... 2024-09-16T23:34:11.393 DEBUG:teuthology.orchestra.run.smithi033:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-16T23:34:11.420 INFO:teuthology.orchestra.run.smithi103.stdout:Reading package lists... 2024-09-16T23:34:11.440 DEBUG:teuthology.orchestra.run.smithi103:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-16T23:34:11.458 INFO:teuthology.orchestra.run.smithi033.stdout:Reading package lists... 2024-09-16T23:34:11.505 INFO:teuthology.orchestra.run.smithi103.stdout:Reading package lists... 2024-09-16T23:34:11.540 INFO:teuthology.orchestra.run.smithi089.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T23:34:11.540 INFO:teuthology.orchestra.run.smithi089.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T23:34:11.540 INFO:teuthology.orchestra.run.smithi089.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T23:34:11.541 INFO:teuthology.orchestra.run.smithi089.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T23:34:11.541 INFO:teuthology.orchestra.run.smithi089.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-16T23:34:11.541 INFO:teuthology.orchestra.run.smithi089.stdout: python2.7-minimal 2024-09-16T23:34:11.541 INFO:teuthology.orchestra.run.smithi089.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T23:34:11.542 INFO:teuthology.orchestra.run.smithi089.stdout:The following additional packages will be installed: 2024-09-16T23:34:11.542 INFO:teuthology.orchestra.run.smithi089.stdout: linux-generic linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-16T23:34:11.542 INFO:teuthology.orchestra.run.smithi089.stdout: linux-headers-generic linux-image-5.15.0-122-generic 2024-09-16T23:34:11.543 INFO:teuthology.orchestra.run.smithi089.stdout: linux-modules-5.15.0-122-generic linux-modules-extra-5.15.0-122-generic 2024-09-16T23:34:11.544 INFO:teuthology.orchestra.run.smithi089.stdout:Suggested packages: 2024-09-16T23:34:11.544 INFO:teuthology.orchestra.run.smithi089.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-16T23:34:11.544 INFO:teuthology.orchestra.run.smithi089.stdout:Recommended packages: 2024-09-16T23:34:11.544 INFO:teuthology.orchestra.run.smithi089.stdout: thermald 2024-09-16T23:34:11.586 INFO:teuthology.orchestra.run.smithi089.stdout:The following NEW packages will be installed: 2024-09-16T23:34:11.586 INFO:teuthology.orchestra.run.smithi089.stdout: linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-16T23:34:11.586 INFO:teuthology.orchestra.run.smithi089.stdout: linux-image-5.15.0-122-generic linux-modules-5.15.0-122-generic 2024-09-16T23:34:11.587 INFO:teuthology.orchestra.run.smithi089.stdout: linux-modules-extra-5.15.0-122-generic 2024-09-16T23:34:11.588 INFO:teuthology.orchestra.run.smithi089.stdout:The following packages will be upgraded: 2024-09-16T23:34:11.589 INFO:teuthology.orchestra.run.smithi089.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-16T23:34:11.674 INFO:teuthology.orchestra.run.smithi033.stdout:Building dependency tree... 2024-09-16T23:34:11.675 INFO:teuthology.orchestra.run.smithi033.stdout:Reading state information... 2024-09-16T23:34:11.727 INFO:teuthology.orchestra.run.smithi103.stdout:Building dependency tree... 2024-09-16T23:34:11.727 INFO:teuthology.orchestra.run.smithi103.stdout:Reading state information... 2024-09-16T23:34:11.768 INFO:teuthology.orchestra.run.smithi089.stdout:3 upgraded, 5 newly installed, 0 to remove and 344 not upgraded. 2024-09-16T23:34:11.768 INFO:teuthology.orchestra.run.smithi089.stdout:Need to get 113 MB of archives. 2024-09-16T23:34:11.768 INFO:teuthology.orchestra.run.smithi089.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-16T23:34:11.768 INFO:teuthology.orchestra.run.smithi089.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-122-generic amd64 5.15.0-122.132 [22.7 MB] 2024-09-16T23:34:11.875 INFO:teuthology.orchestra.run.smithi033.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T23:34:11.875 INFO:teuthology.orchestra.run.smithi033.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T23:34:11.875 INFO:teuthology.orchestra.run.smithi033.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T23:34:11.876 INFO:teuthology.orchestra.run.smithi033.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T23:34:11.876 INFO:teuthology.orchestra.run.smithi033.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-16T23:34:11.876 INFO:teuthology.orchestra.run.smithi033.stdout: python2.7-minimal 2024-09-16T23:34:11.876 INFO:teuthology.orchestra.run.smithi033.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T23:34:11.877 INFO:teuthology.orchestra.run.smithi033.stdout:The following additional packages will be installed: 2024-09-16T23:34:11.877 INFO:teuthology.orchestra.run.smithi033.stdout: linux-generic linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-16T23:34:11.877 INFO:teuthology.orchestra.run.smithi033.stdout: linux-headers-generic linux-image-5.15.0-122-generic 2024-09-16T23:34:11.878 INFO:teuthology.orchestra.run.smithi033.stdout: linux-modules-5.15.0-122-generic linux-modules-extra-5.15.0-122-generic 2024-09-16T23:34:11.879 INFO:teuthology.orchestra.run.smithi033.stdout:Suggested packages: 2024-09-16T23:34:11.879 INFO:teuthology.orchestra.run.smithi033.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-16T23:34:11.879 INFO:teuthology.orchestra.run.smithi033.stdout:Recommended packages: 2024-09-16T23:34:11.879 INFO:teuthology.orchestra.run.smithi033.stdout: thermald 2024-09-16T23:34:11.908 INFO:teuthology.orchestra.run.smithi103.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T23:34:11.908 INFO:teuthology.orchestra.run.smithi103.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T23:34:11.908 INFO:teuthology.orchestra.run.smithi103.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T23:34:11.908 INFO:teuthology.orchestra.run.smithi103.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T23:34:11.908 INFO:teuthology.orchestra.run.smithi103.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-16T23:34:11.909 INFO:teuthology.orchestra.run.smithi103.stdout: python2.7-minimal 2024-09-16T23:34:11.909 INFO:teuthology.orchestra.run.smithi103.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T23:34:11.910 INFO:teuthology.orchestra.run.smithi103.stdout:The following additional packages will be installed: 2024-09-16T23:34:11.910 INFO:teuthology.orchestra.run.smithi103.stdout: linux-generic linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-16T23:34:11.910 INFO:teuthology.orchestra.run.smithi103.stdout: linux-headers-generic linux-image-5.15.0-122-generic 2024-09-16T23:34:11.911 INFO:teuthology.orchestra.run.smithi103.stdout: linux-modules-5.15.0-122-generic linux-modules-extra-5.15.0-122-generic 2024-09-16T23:34:11.912 INFO:teuthology.orchestra.run.smithi103.stdout:Suggested packages: 2024-09-16T23:34:11.912 INFO:teuthology.orchestra.run.smithi103.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-16T23:34:11.912 INFO:teuthology.orchestra.run.smithi103.stdout:Recommended packages: 2024-09-16T23:34:11.912 INFO:teuthology.orchestra.run.smithi103.stdout: thermald 2024-09-16T23:34:11.917 INFO:teuthology.orchestra.run.smithi033.stdout:The following NEW packages will be installed: 2024-09-16T23:34:11.917 INFO:teuthology.orchestra.run.smithi033.stdout: linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-16T23:34:11.917 INFO:teuthology.orchestra.run.smithi033.stdout: linux-image-5.15.0-122-generic linux-modules-5.15.0-122-generic 2024-09-16T23:34:11.917 INFO:teuthology.orchestra.run.smithi033.stdout: linux-modules-extra-5.15.0-122-generic 2024-09-16T23:34:11.918 INFO:teuthology.orchestra.run.smithi033.stdout:The following packages will be upgraded: 2024-09-16T23:34:11.919 INFO:teuthology.orchestra.run.smithi033.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-16T23:34:11.962 INFO:teuthology.orchestra.run.smithi103.stdout:The following NEW packages will be installed: 2024-09-16T23:34:11.962 INFO:teuthology.orchestra.run.smithi103.stdout: linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-16T23:34:11.962 INFO:teuthology.orchestra.run.smithi103.stdout: linux-image-5.15.0-122-generic linux-modules-5.15.0-122-generic 2024-09-16T23:34:11.963 INFO:teuthology.orchestra.run.smithi103.stdout: linux-modules-extra-5.15.0-122-generic 2024-09-16T23:34:11.964 INFO:teuthology.orchestra.run.smithi103.stdout:The following packages will be upgraded: 2024-09-16T23:34:11.965 INFO:teuthology.orchestra.run.smithi103.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-16T23:34:12.100 INFO:teuthology.orchestra.run.smithi033.stdout:3 upgraded, 5 newly installed, 0 to remove and 344 not upgraded. 2024-09-16T23:34:12.100 INFO:teuthology.orchestra.run.smithi033.stdout:Need to get 113 MB of archives. 2024-09-16T23:34:12.100 INFO:teuthology.orchestra.run.smithi033.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-16T23:34:12.100 INFO:teuthology.orchestra.run.smithi033.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-122-generic amd64 5.15.0-122.132 [22.7 MB] 2024-09-16T23:34:12.144 INFO:teuthology.orchestra.run.smithi103.stdout:3 upgraded, 5 newly installed, 0 to remove and 344 not upgraded. 2024-09-16T23:34:12.144 INFO:teuthology.orchestra.run.smithi103.stdout:Need to get 113 MB of archives. 2024-09-16T23:34:12.144 INFO:teuthology.orchestra.run.smithi103.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-16T23:34:12.144 INFO:teuthology.orchestra.run.smithi103.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-122-generic amd64 5.15.0-122.132 [22.7 MB] 2024-09-16T23:34:13.182 INFO:teuthology.orchestra.run.smithi089.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-122-generic amd64 5.15.0-122.132 [11.5 MB] 2024-09-16T23:34:13.508 INFO:teuthology.orchestra.run.smithi033.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-122-generic amd64 5.15.0-122.132 [11.5 MB] 2024-09-16T23:34:13.531 INFO:teuthology.orchestra.run.smithi089.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-122-generic amd64 5.15.0-122.132 [63.9 MB] 2024-09-16T23:34:13.567 INFO:teuthology.orchestra.run.smithi103.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-122-generic amd64 5.15.0-122.132 [11.5 MB] 2024-09-16T23:34:13.871 INFO:teuthology.orchestra.run.smithi033.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-122-generic amd64 5.15.0-122.132 [63.9 MB] 2024-09-16T23:34:13.915 INFO:teuthology.orchestra.run.smithi103.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-122-generic amd64 5.15.0-122.132 [63.9 MB] 2024-09-16T23:34:15.706 INFO:teuthology.orchestra.run.smithi089.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.122.122 [1,692 B] 2024-09-16T23:34:15.707 INFO:teuthology.orchestra.run.smithi089.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.122.122 [2,436 B] 2024-09-16T23:34:15.707 INFO:teuthology.orchestra.run.smithi089.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-122 all 5.15.0-122.132 [12.3 MB] 2024-09-16T23:34:16.070 INFO:teuthology.orchestra.run.smithi089.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-122-generic amd64 5.15.0-122.132 [2,827 kB] 2024-09-16T23:34:16.125 INFO:teuthology.orchestra.run.smithi033.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.122.122 [1,692 B] 2024-09-16T23:34:16.125 INFO:teuthology.orchestra.run.smithi033.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.122.122 [2,436 B] 2024-09-16T23:34:16.125 INFO:teuthology.orchestra.run.smithi033.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-122 all 5.15.0-122.132 [12.3 MB] 2024-09-16T23:34:16.145 INFO:teuthology.orchestra.run.smithi103.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.122.122 [1,692 B] 2024-09-16T23:34:16.146 INFO:teuthology.orchestra.run.smithi103.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.122.122 [2,436 B] 2024-09-16T23:34:16.146 INFO:teuthology.orchestra.run.smithi103.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-122 all 5.15.0-122.132 [12.3 MB] 2024-09-16T23:34:16.152 INFO:teuthology.orchestra.run.smithi089.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.122.122 [2,294 B] 2024-09-16T23:34:16.470 INFO:teuthology.orchestra.run.smithi033.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-122-generic amd64 5.15.0-122.132 [2,827 kB] 2024-09-16T23:34:16.482 INFO:teuthology.orchestra.run.smithi103.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-122-generic amd64 5.15.0-122.132 [2,827 kB] 2024-09-16T23:34:16.543 INFO:teuthology.orchestra.run.smithi089.stdout:Fetched 113 MB in 5s (24.9 MB/s) 2024-09-16T23:34:16.549 INFO:teuthology.orchestra.run.smithi033.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.122.122 [2,294 B] 2024-09-16T23:34:16.561 INFO:teuthology.orchestra.run.smithi103.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.122.122 [2,294 B] 2024-09-16T23:34:16.711 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package linux-modules-5.15.0-122-generic. 2024-09-16T23:34:16.980 INFO:teuthology.orchestra.run.smithi103.stdout:Fetched 113 MB in 5s (24.7 MB/s) 2024-09-16T23:34:16.992 INFO:teuthology.orchestra.run.smithi033.stdout:Fetched 113 MB in 5s (24.5 MB/s) 2024-09-16T23:34:17.132 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package linux-modules-5.15.0-122-generic. 2024-09-16T23:34:17.149 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package linux-modules-5.15.0-122-generic. 2024-09-16T23:34:18.680 INFO:teuthology.orchestra.run.smithi089.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 ... 129542 files and directories currently installed.) 2024-09-16T23:34:18.684 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../0-linux-modules-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-16T23:34:18.742 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:19.167 INFO:teuthology.orchestra.run.smithi103.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 ... 129542 files and directories currently installed.) 2024-09-16T23:34:19.167 INFO:teuthology.orchestra.run.smithi033.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 ... 129542 files and directories currently installed.) 2024-09-16T23:34:19.171 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../0-linux-modules-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-16T23:34:19.172 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../0-linux-modules-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-16T23:34:19.231 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:19.256 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:21.361 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package linux-image-5.15.0-122-generic. 2024-09-16T23:34:21.382 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../1-linux-image-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-16T23:34:21.467 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:21.625 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package linux-image-5.15.0-122-generic. 2024-09-16T23:34:21.646 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../1-linux-image-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-16T23:34:21.683 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package linux-image-5.15.0-122-generic. 2024-09-16T23:34:21.704 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../1-linux-image-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-16T23:34:21.733 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:21.804 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:21.980 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-122-generic. 2024-09-16T23:34:22.001 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-16T23:34:22.047 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:22.196 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-122-generic. 2024-09-16T23:34:22.215 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-16T23:34:22.254 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:22.278 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-122-generic. 2024-09-16T23:34:22.299 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-16T23:34:22.336 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:28.473 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../3-linux-generic_5.15.0.122.122_amd64.deb ... 2024-09-16T23:34:28.599 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking linux-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-16T23:34:28.744 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../3-linux-generic_5.15.0.122.122_amd64.deb ... 2024-09-16T23:34:28.775 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../3-linux-generic_5.15.0.122.122_amd64.deb ... 2024-09-16T23:34:28.869 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking linux-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-16T23:34:28.899 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking linux-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-16T23:34:28.954 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.122.122_amd64.deb ... 2024-09-16T23:34:29.078 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking linux-image-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-16T23:34:29.209 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.122.122_amd64.deb ... 2024-09-16T23:34:29.216 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.122.122_amd64.deb ... 2024-09-16T23:34:29.333 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking linux-image-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-16T23:34:29.347 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking linux-image-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-16T23:34:29.389 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package linux-headers-5.15.0-122. 2024-09-16T23:34:29.400 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../5-linux-headers-5.15.0-122_5.15.0-122.132_all.deb ... 2024-09-16T23:34:29.439 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-16T23:34:29.650 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package linux-headers-5.15.0-122. 2024-09-16T23:34:29.658 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package linux-headers-5.15.0-122. 2024-09-16T23:34:29.672 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../5-linux-headers-5.15.0-122_5.15.0-122.132_all.deb ... 2024-09-16T23:34:29.681 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../5-linux-headers-5.15.0-122_5.15.0-122.132_all.deb ... 2024-09-16T23:34:29.716 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-16T23:34:29.724 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-16T23:34:35.072 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package linux-headers-5.15.0-122-generic. 2024-09-16T23:34:35.109 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../6-linux-headers-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-16T23:34:35.195 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:35.293 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package linux-headers-5.15.0-122-generic. 2024-09-16T23:34:35.330 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../6-linux-headers-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-16T23:34:35.367 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:35.489 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package linux-headers-5.15.0-122-generic. 2024-09-16T23:34:35.525 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../6-linux-headers-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-16T23:34:35.562 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:37.687 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.122.122_amd64.deb ... 2024-09-16T23:34:37.811 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking linux-headers-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-16T23:34:38.144 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-16T23:34:38.259 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.122.122_amd64.deb ... 2024-09-16T23:34:38.266 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:38.351 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.122.122_amd64.deb ... 2024-09-16T23:34:38.381 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking linux-headers-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-16T23:34:38.667 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up linux-headers-generic (5.15.0.122.122) ... 2024-09-16T23:34:38.982 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking linux-headers-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-16T23:34:39.464 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:39.632 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-16T23:34:39.681 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-16T23:34:39.778 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:39.788 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:39.888 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up linux-headers-generic (5.15.0.122.122) ... 2024-09-16T23:34:39.904 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up linux-headers-generic (5.15.0.122.122) ... 2024-09-16T23:34:40.000 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:40.033 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:40.784 INFO:teuthology.orchestra.run.smithi089.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-16T23:34:40.784 INFO:teuthology.orchestra.run.smithi089.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-16T23:34:40.784 INFO:teuthology.orchestra.run.smithi089.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-122-generic 2024-09-16T23:34:40.784 INFO:teuthology.orchestra.run.smithi089.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-122-generic 2024-09-16T23:34:40.949 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:41.342 INFO:teuthology.orchestra.run.smithi103.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-16T23:34:41.342 INFO:teuthology.orchestra.run.smithi103.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-16T23:34:41.342 INFO:teuthology.orchestra.run.smithi103.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-122-generic 2024-09-16T23:34:41.343 INFO:teuthology.orchestra.run.smithi103.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-122-generic 2024-09-16T23:34:41.406 INFO:teuthology.orchestra.run.smithi033.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-16T23:34:41.407 INFO:teuthology.orchestra.run.smithi033.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-16T23:34:41.407 INFO:teuthology.orchestra.run.smithi033.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-122-generic 2024-09-16T23:34:41.407 INFO:teuthology.orchestra.run.smithi033.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-122-generic 2024-09-16T23:34:41.511 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:41.567 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:42.359 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up linux-image-generic (5.15.0.122.122) ... 2024-09-16T23:34:42.637 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up linux-generic (5.15.0.122.122) ... 2024-09-16T23:34:42.896 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up linux-image-generic (5.15.0.122.122) ... 2024-09-16T23:34:42.997 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up linux-generic (5.15.0.122.122) ... 2024-09-16T23:34:43.097 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:43.153 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:43.319 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up linux-image-generic (5.15.0.122.122) ... 2024-09-16T23:34:43.445 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up linux-generic (5.15.0.122.122) ... 2024-09-16T23:34:43.604 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:44.872 INFO:teuthology.orchestra.run.smithi089.stdout:Processing triggers for linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:45.275 INFO:teuthology.orchestra.run.smithi103.stdout:Processing triggers for linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:45.329 INFO:teuthology.orchestra.run.smithi103.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-16T23:34:45.330 INFO:teuthology.orchestra.run.smithi103.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-122-generic 2024-09-16T23:34:45.459 INFO:teuthology.orchestra.run.smithi089.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-16T23:34:45.459 INFO:teuthology.orchestra.run.smithi089.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-122-generic 2024-09-16T23:34:45.540 INFO:teuthology.orchestra.run.smithi033.stdout:Processing triggers for linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-16T23:34:45.606 INFO:teuthology.orchestra.run.smithi033.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-16T23:34:45.606 INFO:teuthology.orchestra.run.smithi033.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-122-generic 2024-09-16T23:34:59.187 INFO:teuthology.orchestra.run.smithi103.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-16T23:34:59.187 INFO:teuthology.orchestra.run.smithi103.stdout:Sourcing file `/etc/default/grub' 2024-09-16T23:34:59.195 INFO:teuthology.orchestra.run.smithi103.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-16T23:34:59.206 INFO:teuthology.orchestra.run.smithi103.stdout:Generating grub configuration file ... 2024-09-16T23:34:59.466 INFO:teuthology.orchestra.run.smithi103.stdout:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-16T23:34:59.485 INFO:teuthology.orchestra.run.smithi103.stdout:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-16T23:34:59.526 INFO:teuthology.orchestra.run.smithi089.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-16T23:34:59.526 INFO:teuthology.orchestra.run.smithi089.stdout:Sourcing file `/etc/default/grub' 2024-09-16T23:34:59.533 INFO:teuthology.orchestra.run.smithi089.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-16T23:34:59.552 INFO:teuthology.orchestra.run.smithi089.stdout:Generating grub configuration file ... 2024-09-16T23:34:59.782 INFO:teuthology.orchestra.run.smithi103.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-16T23:34:59.787 INFO:teuthology.orchestra.run.smithi103.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-16T23:34:59.808 INFO:teuthology.orchestra.run.smithi089.stdout:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-16T23:34:59.832 INFO:teuthology.orchestra.run.smithi089.stdout:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-16T23:34:59.859 INFO:teuthology.orchestra.run.smithi103.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-16T23:34:59.865 INFO:teuthology.orchestra.run.smithi103.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-16T23:35:00.035 INFO:teuthology.orchestra.run.smithi103.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-16T23:35:00.035 INFO:teuthology.orchestra.run.smithi103.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-16T23:35:00.035 INFO:teuthology.orchestra.run.smithi103.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-16T23:35:00.080 INFO:teuthology.orchestra.run.smithi103.stdout:done 2024-09-16T23:35:00.110 INFO:teuthology.orchestra.run.smithi033.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-16T23:35:00.111 INFO:teuthology.orchestra.run.smithi033.stdout:Sourcing file `/etc/default/grub' 2024-09-16T23:35:00.117 INFO:teuthology.orchestra.run.smithi089.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-16T23:35:00.123 INFO:teuthology.orchestra.run.smithi089.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-16T23:35:00.127 INFO:teuthology.orchestra.run.smithi033.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-16T23:35:00.157 INFO:teuthology.orchestra.run.smithi033.stdout:Generating grub configuration file ... 2024-09-16T23:35:00.195 INFO:teuthology.orchestra.run.smithi089.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-16T23:35:00.201 INFO:teuthology.orchestra.run.smithi089.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-16T23:35:00.364 INFO:teuthology.orchestra.run.smithi089.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-16T23:35:00.364 INFO:teuthology.orchestra.run.smithi089.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-16T23:35:00.364 INFO:teuthology.orchestra.run.smithi089.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-16T23:35:00.412 INFO:teuthology.orchestra.run.smithi089.stdout:done 2024-09-16T23:35:00.429 INFO:teuthology.orchestra.run.smithi033.stdout:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-16T23:35:00.450 INFO:teuthology.orchestra.run.smithi033.stdout:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-16T23:35:00.500 DEBUG:teuthology.orchestra.run.smithi103:> dpkg -s linux-image-generic 2024-09-16T23:35:00.521 INFO:teuthology.orchestra.run.smithi103.stdout:Package: linux-image-generic 2024-09-16T23:35:00.521 INFO:teuthology.orchestra.run.smithi103.stdout:Status: install ok installed 2024-09-16T23:35:00.521 INFO:teuthology.orchestra.run.smithi103.stdout:Priority: optional 2024-09-16T23:35:00.521 INFO:teuthology.orchestra.run.smithi103.stdout:Section: kernel 2024-09-16T23:35:00.521 INFO:teuthology.orchestra.run.smithi103.stdout:Installed-Size: 21 2024-09-16T23:35:00.522 INFO:teuthology.orchestra.run.smithi103.stdout:Maintainer: Ubuntu Kernel Team 2024-09-16T23:35:00.522 INFO:teuthology.orchestra.run.smithi103.stdout:Architecture: amd64 2024-09-16T23:35:00.522 INFO:teuthology.orchestra.run.smithi103.stdout:Source: linux-meta 2024-09-16T23:35:00.522 INFO:teuthology.orchestra.run.smithi103.stdout:Version: 5.15.0.122.122 2024-09-16T23:35:00.522 INFO:teuthology.orchestra.run.smithi103.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-122), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-16T23:35:00.522 INFO:teuthology.orchestra.run.smithi103.stdout:Depends: linux-image-5.15.0-122-generic, linux-modules-extra-5.15.0-122-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-16T23:35:00.522 INFO:teuthology.orchestra.run.smithi103.stdout:Recommends: thermald 2024-09-16T23:35:00.522 INFO:teuthology.orchestra.run.smithi103.stdout:Description: Generic Linux kernel image 2024-09-16T23:35:00.522 INFO:teuthology.orchestra.run.smithi103.stdout: This package will always depend on the latest generic kernel image 2024-09-16T23:35:00.522 INFO:teuthology.orchestra.run.smithi103.stdout: available. 2024-09-16T23:35:00.522 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-122-generic 2024-09-16T23:35:00.523 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-16T23:35:00.523 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-16T23:35:00.523 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-09-16T23:35:00.523 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi103.front.sepia.ceph.com, path=None, version=distro) 2024-09-16T23:35:00.523 DEBUG:teuthology.orchestra.run.smithi103:> sudo apt-get clean 2024-09-16T23:35:00.747 DEBUG:teuthology.orchestra.run.smithi103:> sudo apt-get update 2024-09-16T23:35:00.793 INFO:teuthology.orchestra.run.smithi033.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-16T23:35:00.799 INFO:teuthology.orchestra.run.smithi033.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-16T23:35:00.843 DEBUG:teuthology.orchestra.run.smithi089:> dpkg -s linux-image-generic 2024-09-16T23:35:00.865 INFO:teuthology.orchestra.run.smithi089.stdout:Package: linux-image-generic 2024-09-16T23:35:00.865 INFO:teuthology.orchestra.run.smithi089.stdout:Status: install ok installed 2024-09-16T23:35:00.865 INFO:teuthology.orchestra.run.smithi089.stdout:Priority: optional 2024-09-16T23:35:00.865 INFO:teuthology.orchestra.run.smithi089.stdout:Section: kernel 2024-09-16T23:35:00.865 INFO:teuthology.orchestra.run.smithi089.stdout:Installed-Size: 21 2024-09-16T23:35:00.865 INFO:teuthology.orchestra.run.smithi089.stdout:Maintainer: Ubuntu Kernel Team 2024-09-16T23:35:00.866 INFO:teuthology.orchestra.run.smithi089.stdout:Architecture: amd64 2024-09-16T23:35:00.866 INFO:teuthology.orchestra.run.smithi089.stdout:Source: linux-meta 2024-09-16T23:35:00.866 INFO:teuthology.orchestra.run.smithi089.stdout:Version: 5.15.0.122.122 2024-09-16T23:35:00.866 INFO:teuthology.orchestra.run.smithi089.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-122), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-16T23:35:00.866 INFO:teuthology.orchestra.run.smithi089.stdout:Depends: linux-image-5.15.0-122-generic, linux-modules-extra-5.15.0-122-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-16T23:35:00.866 INFO:teuthology.orchestra.run.smithi089.stdout:Recommends: thermald 2024-09-16T23:35:00.867 INFO:teuthology.orchestra.run.smithi089.stdout:Description: Generic Linux kernel image 2024-09-16T23:35:00.867 INFO:teuthology.orchestra.run.smithi089.stdout: This package will always depend on the latest generic kernel image 2024-09-16T23:35:00.867 INFO:teuthology.orchestra.run.smithi089.stdout: available. 2024-09-16T23:35:00.867 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-122-generic 2024-09-16T23:35:00.867 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-16T23:35:00.867 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-16T23:35:00.867 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-16T23:35:00.868 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi089.front.sepia.ceph.com, path=None, version=distro) 2024-09-16T23:35:00.868 DEBUG:teuthology.orchestra.run.smithi089:> sudo apt-get clean 2024-09-16T23:35:00.870 INFO:teuthology.orchestra.run.smithi033.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-16T23:35:00.876 INFO:teuthology.orchestra.run.smithi033.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-16T23:35:01.005 INFO:teuthology.orchestra.run.smithi103.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T23:35:01.005 INFO:teuthology.orchestra.run.smithi103.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-16T23:35:01.033 DEBUG:teuthology.orchestra.run.smithi089:> sudo apt-get update 2024-09-16T23:35:01.042 INFO:teuthology.orchestra.run.smithi033.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-16T23:35:01.042 INFO:teuthology.orchestra.run.smithi033.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-16T23:35:01.042 INFO:teuthology.orchestra.run.smithi033.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-16T23:35:01.067 INFO:teuthology.orchestra.run.smithi103.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-16T23:35:01.078 INFO:teuthology.orchestra.run.smithi033.stdout:done 2024-09-16T23:35:01.149 INFO:teuthology.orchestra.run.smithi103.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-16T23:35:01.162 INFO:teuthology.orchestra.run.smithi089.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-16T23:35:01.283 INFO:teuthology.orchestra.run.smithi089.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T23:35:01.365 INFO:teuthology.orchestra.run.smithi089.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-16T23:35:01.447 INFO:teuthology.orchestra.run.smithi089.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-16T23:35:01.545 DEBUG:teuthology.orchestra.run.smithi033:> dpkg -s linux-image-generic 2024-09-16T23:35:01.568 INFO:teuthology.orchestra.run.smithi033.stdout:Package: linux-image-generic 2024-09-16T23:35:01.568 INFO:teuthology.orchestra.run.smithi033.stdout:Status: install ok installed 2024-09-16T23:35:01.568 INFO:teuthology.orchestra.run.smithi033.stdout:Priority: optional 2024-09-16T23:35:01.568 INFO:teuthology.orchestra.run.smithi033.stdout:Section: kernel 2024-09-16T23:35:01.568 INFO:teuthology.orchestra.run.smithi033.stdout:Installed-Size: 21 2024-09-16T23:35:01.568 INFO:teuthology.orchestra.run.smithi033.stdout:Maintainer: Ubuntu Kernel Team 2024-09-16T23:35:01.569 INFO:teuthology.orchestra.run.smithi033.stdout:Architecture: amd64 2024-09-16T23:35:01.569 INFO:teuthology.orchestra.run.smithi033.stdout:Source: linux-meta 2024-09-16T23:35:01.569 INFO:teuthology.orchestra.run.smithi033.stdout:Version: 5.15.0.122.122 2024-09-16T23:35:01.569 INFO:teuthology.orchestra.run.smithi033.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-122), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-16T23:35:01.569 INFO:teuthology.orchestra.run.smithi033.stdout:Depends: linux-image-5.15.0-122-generic, linux-modules-extra-5.15.0-122-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-16T23:35:01.569 INFO:teuthology.orchestra.run.smithi033.stdout:Recommends: thermald 2024-09-16T23:35:01.569 INFO:teuthology.orchestra.run.smithi033.stdout:Description: Generic Linux kernel image 2024-09-16T23:35:01.569 INFO:teuthology.orchestra.run.smithi033.stdout: This package will always depend on the latest generic kernel image 2024-09-16T23:35:01.569 INFO:teuthology.orchestra.run.smithi033.stdout: available. 2024-09-16T23:35:01.569 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-122-generic 2024-09-16T23:35:01.569 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-16T23:35:01.569 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-16T23:35:01.570 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-16T23:35:01.570 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi033.front.sepia.ceph.com, path=None, version=distro) 2024-09-16T23:35:01.570 DEBUG:teuthology.orchestra.run.smithi033:> sudo apt-get clean 2024-09-16T23:35:01.762 DEBUG:teuthology.orchestra.run.smithi033:> sudo apt-get update 2024-09-16T23:35:01.893 INFO:teuthology.orchestra.run.smithi033.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-16T23:35:02.015 INFO:teuthology.orchestra.run.smithi033.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T23:35:02.107 INFO:teuthology.orchestra.run.smithi033.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-16T23:35:02.178 INFO:teuthology.orchestra.run.smithi033.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-16T23:35:02.433 INFO:teuthology.orchestra.run.smithi103.stdout:Reading package lists... 2024-09-16T23:35:02.452 DEBUG:teuthology.orchestra.run.smithi103:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-16T23:35:02.511 INFO:teuthology.orchestra.run.smithi103.stdout:Reading package lists... 2024-09-16T23:35:02.573 INFO:teuthology.orchestra.run.smithi089.stdout:Reading package lists... 2024-09-16T23:35:02.590 DEBUG:teuthology.orchestra.run.smithi089:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-16T23:35:02.642 INFO:teuthology.orchestra.run.smithi089.stdout:Reading package lists... 2024-09-16T23:35:02.722 INFO:teuthology.orchestra.run.smithi103.stdout:Building dependency tree... 2024-09-16T23:35:02.723 INFO:teuthology.orchestra.run.smithi103.stdout:Reading state information... 2024-09-16T23:35:02.827 INFO:teuthology.orchestra.run.smithi089.stdout:Building dependency tree... 2024-09-16T23:35:02.828 INFO:teuthology.orchestra.run.smithi089.stdout:Reading state information... 2024-09-16T23:35:02.907 INFO:teuthology.orchestra.run.smithi103.stdout:linux-image-generic is already the newest version (5.15.0.122.122). 2024-09-16T23:35:02.907 INFO:teuthology.orchestra.run.smithi103.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T23:35:02.907 INFO:teuthology.orchestra.run.smithi103.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T23:35:02.907 INFO:teuthology.orchestra.run.smithi103.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T23:35:02.907 INFO:teuthology.orchestra.run.smithi103.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T23:35:02.908 INFO:teuthology.orchestra.run.smithi103.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-16T23:35:02.908 INFO:teuthology.orchestra.run.smithi103.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-16T23:35:02.908 INFO:teuthology.orchestra.run.smithi103.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T23:35:02.946 INFO:teuthology.orchestra.run.smithi103.stdout:0 upgraded, 0 newly installed, 0 to remove and 344 not upgraded. 2024-09-16T23:35:02.947 DEBUG:teuthology.orchestra.run.smithi103:> dpkg -s linux-image-generic 2024-09-16T23:35:02.962 INFO:teuthology.orchestra.run.smithi103.stdout:Package: linux-image-generic 2024-09-16T23:35:02.963 INFO:teuthology.orchestra.run.smithi103.stdout:Status: install ok installed 2024-09-16T23:35:02.963 INFO:teuthology.orchestra.run.smithi103.stdout:Priority: optional 2024-09-16T23:35:02.963 INFO:teuthology.orchestra.run.smithi103.stdout:Section: kernel 2024-09-16T23:35:02.963 INFO:teuthology.orchestra.run.smithi103.stdout:Installed-Size: 21 2024-09-16T23:35:02.963 INFO:teuthology.orchestra.run.smithi103.stdout:Maintainer: Ubuntu Kernel Team 2024-09-16T23:35:02.963 INFO:teuthology.orchestra.run.smithi103.stdout:Architecture: amd64 2024-09-16T23:35:02.963 INFO:teuthology.orchestra.run.smithi103.stdout:Source: linux-meta 2024-09-16T23:35:02.963 INFO:teuthology.orchestra.run.smithi103.stdout:Version: 5.15.0.122.122 2024-09-16T23:35:02.963 INFO:teuthology.orchestra.run.smithi103.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-122), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-16T23:35:02.963 INFO:teuthology.orchestra.run.smithi103.stdout:Depends: linux-image-5.15.0-122-generic, linux-modules-extra-5.15.0-122-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-16T23:35:02.963 INFO:teuthology.orchestra.run.smithi103.stdout:Recommends: thermald 2024-09-16T23:35:02.963 INFO:teuthology.orchestra.run.smithi103.stdout:Description: Generic Linux kernel image 2024-09-16T23:35:02.963 INFO:teuthology.orchestra.run.smithi103.stdout: This package will always depend on the latest generic kernel image 2024-09-16T23:35:02.964 INFO:teuthology.orchestra.run.smithi103.stdout: available. 2024-09-16T23:35:02.964 DEBUG:teuthology.orchestra.run.smithi103:> mktemp 2024-09-16T23:35:02.995 INFO:teuthology.orchestra.run.smithi089.stdout:linux-image-generic is already the newest version (5.15.0.122.122). 2024-09-16T23:35:02.995 INFO:teuthology.orchestra.run.smithi089.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T23:35:02.995 INFO:teuthology.orchestra.run.smithi089.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T23:35:02.995 INFO:teuthology.orchestra.run.smithi089.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T23:35:02.995 INFO:teuthology.orchestra.run.smithi089.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T23:35:02.995 INFO:teuthology.orchestra.run.smithi089.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-16T23:35:02.996 INFO:teuthology.orchestra.run.smithi089.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-16T23:35:02.996 INFO:teuthology.orchestra.run.smithi089.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T23:35:03.008 INFO:teuthology.orchestra.run.smithi103.stdout:/tmp/tmp.NAXdxl0VW6 2024-09-16T23:35:03.008 DEBUG:teuthology.orchestra.run.smithi103:> sudo cp /boot/grub/grub.cfg /tmp/tmp.NAXdxl0VW6 2024-09-16T23:35:03.036 INFO:teuthology.orchestra.run.smithi089.stdout:0 upgraded, 0 newly installed, 0 to remove and 344 not upgraded. 2024-09-16T23:35:03.038 DEBUG:teuthology.orchestra.run.smithi089:> dpkg -s linux-image-generic 2024-09-16T23:35:03.070 DEBUG:teuthology.orchestra.run.smithi103:> sudo chmod 0666 /tmp/tmp.NAXdxl0VW6 2024-09-16T23:35:03.097 INFO:teuthology.orchestra.run.smithi089.stdout:Package: linux-image-generic 2024-09-16T23:35:03.097 INFO:teuthology.orchestra.run.smithi089.stdout:Status: install ok installed 2024-09-16T23:35:03.097 INFO:teuthology.orchestra.run.smithi089.stdout:Priority: optional 2024-09-16T23:35:03.097 INFO:teuthology.orchestra.run.smithi089.stdout:Section: kernel 2024-09-16T23:35:03.097 INFO:teuthology.orchestra.run.smithi089.stdout:Installed-Size: 21 2024-09-16T23:35:03.097 INFO:teuthology.orchestra.run.smithi089.stdout:Maintainer: Ubuntu Kernel Team 2024-09-16T23:35:03.097 INFO:teuthology.orchestra.run.smithi089.stdout:Architecture: amd64 2024-09-16T23:35:03.097 INFO:teuthology.orchestra.run.smithi089.stdout:Source: linux-meta 2024-09-16T23:35:03.097 INFO:teuthology.orchestra.run.smithi089.stdout:Version: 5.15.0.122.122 2024-09-16T23:35:03.097 INFO:teuthology.orchestra.run.smithi089.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-122), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-16T23:35:03.097 INFO:teuthology.orchestra.run.smithi089.stdout:Depends: linux-image-5.15.0-122-generic, linux-modules-extra-5.15.0-122-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-16T23:35:03.098 INFO:teuthology.orchestra.run.smithi089.stdout:Recommends: thermald 2024-09-16T23:35:03.098 INFO:teuthology.orchestra.run.smithi089.stdout:Description: Generic Linux kernel image 2024-09-16T23:35:03.098 INFO:teuthology.orchestra.run.smithi089.stdout: This package will always depend on the latest generic kernel image 2024-09-16T23:35:03.098 INFO:teuthology.orchestra.run.smithi089.stdout: available. 2024-09-16T23:35:03.098 DEBUG:teuthology.orchestra.run.smithi089:> mktemp 2024-09-16T23:35:03.143 INFO:teuthology.orchestra.run.smithi089.stdout:/tmp/tmp.GJWutiTZok 2024-09-16T23:35:03.143 DEBUG:teuthology.orchestra.run.smithi089:> sudo cp /boot/grub/grub.cfg /tmp/tmp.GJWutiTZok 2024-09-16T23:35:03.188 DEBUG:teuthology.orchestra.remote:smithi103:/tmp/tmp.NAXdxl0VW6 is 10KB 2024-09-16T23:35:03.199 DEBUG:teuthology.orchestra.run.smithi089:> sudo chmod 0666 /tmp/tmp.GJWutiTZok 2024-09-16T23:35:03.201 DEBUG:teuthology.orchestra.run.smithi103:> rm -fr /tmp/tmp.NAXdxl0VW6 2024-09-16T23:35:03.207 DEBUG:teuthology.orchestra.run.smithi103:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-16T23:35:03.259 DEBUG:teuthology.orchestra.run.smithi103:> set -ex 2024-09-16T23:35:03.259 DEBUG:teuthology.orchestra.run.smithi103:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-16T23:35:03.259 DEBUG:teuthology.orchestra.run.smithi103:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-16T23:35:03.322 DEBUG:teuthology.orchestra.remote:smithi089:/tmp/tmp.GJWutiTZok is 10KB 2024-09-16T23:35:03.324 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-122-generic 2024-09-16T23:35:03.324 DEBUG:teuthology.orchestra.run.smithi103:> sudo update-grub 2024-09-16T23:35:03.334 DEBUG:teuthology.orchestra.run.smithi089:> rm -fr /tmp/tmp.GJWutiTZok 2024-09-16T23:35:03.339 DEBUG:teuthology.orchestra.run.smithi089:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-16T23:35:03.394 DEBUG:teuthology.orchestra.run.smithi089:> set -ex 2024-09-16T23:35:03.394 DEBUG:teuthology.orchestra.run.smithi089:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-16T23:35:03.394 DEBUG:teuthology.orchestra.run.smithi089:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-16T23:35:03.401 INFO:teuthology.orchestra.run.smithi033.stdout:Reading package lists... 2024-09-16T23:35:03.419 DEBUG:teuthology.orchestra.run.smithi033:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-16T23:35:03.477 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-122-generic 2024-09-16T23:35:03.477 DEBUG:teuthology.orchestra.run.smithi089:> sudo update-grub 2024-09-16T23:35:03.482 INFO:teuthology.orchestra.run.smithi033.stdout:Reading package lists... 2024-09-16T23:35:03.713 INFO:teuthology.orchestra.run.smithi033.stdout:Building dependency tree... 2024-09-16T23:35:03.716 INFO:teuthology.orchestra.run.smithi033.stdout:Reading state information... 2024-09-16T23:35:03.915 INFO:teuthology.orchestra.run.smithi033.stdout:linux-image-generic is already the newest version (5.15.0.122.122). 2024-09-16T23:35:03.915 INFO:teuthology.orchestra.run.smithi033.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T23:35:03.915 INFO:teuthology.orchestra.run.smithi033.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T23:35:03.915 INFO:teuthology.orchestra.run.smithi033.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T23:35:03.916 INFO:teuthology.orchestra.run.smithi033.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T23:35:03.916 INFO:teuthology.orchestra.run.smithi033.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-16T23:35:03.916 INFO:teuthology.orchestra.run.smithi033.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-16T23:35:03.916 INFO:teuthology.orchestra.run.smithi033.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T23:35:03.960 INFO:teuthology.orchestra.run.smithi033.stdout:0 upgraded, 0 newly installed, 0 to remove and 344 not upgraded. 2024-09-16T23:35:03.962 DEBUG:teuthology.orchestra.run.smithi033:> dpkg -s linux-image-generic 2024-09-16T23:35:03.979 INFO:teuthology.orchestra.run.smithi033.stdout:Package: linux-image-generic 2024-09-16T23:35:03.979 INFO:teuthology.orchestra.run.smithi033.stdout:Status: install ok installed 2024-09-16T23:35:03.979 INFO:teuthology.orchestra.run.smithi033.stdout:Priority: optional 2024-09-16T23:35:03.979 INFO:teuthology.orchestra.run.smithi033.stdout:Section: kernel 2024-09-16T23:35:03.979 INFO:teuthology.orchestra.run.smithi033.stdout:Installed-Size: 21 2024-09-16T23:35:03.979 INFO:teuthology.orchestra.run.smithi033.stdout:Maintainer: Ubuntu Kernel Team 2024-09-16T23:35:03.979 INFO:teuthology.orchestra.run.smithi033.stdout:Architecture: amd64 2024-09-16T23:35:03.979 INFO:teuthology.orchestra.run.smithi033.stdout:Source: linux-meta 2024-09-16T23:35:03.979 INFO:teuthology.orchestra.run.smithi033.stdout:Version: 5.15.0.122.122 2024-09-16T23:35:03.979 INFO:teuthology.orchestra.run.smithi033.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-122), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-16T23:35:03.979 INFO:teuthology.orchestra.run.smithi033.stdout:Depends: linux-image-5.15.0-122-generic, linux-modules-extra-5.15.0-122-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-16T23:35:03.979 INFO:teuthology.orchestra.run.smithi033.stdout:Recommends: thermald 2024-09-16T23:35:03.980 INFO:teuthology.orchestra.run.smithi033.stdout:Description: Generic Linux kernel image 2024-09-16T23:35:03.980 INFO:teuthology.orchestra.run.smithi033.stdout: This package will always depend on the latest generic kernel image 2024-09-16T23:35:03.980 INFO:teuthology.orchestra.run.smithi033.stdout: available. 2024-09-16T23:35:03.980 DEBUG:teuthology.orchestra.run.smithi033:> mktemp 2024-09-16T23:35:04.027 INFO:teuthology.orchestra.run.smithi033.stdout:/tmp/tmp.OCkx2Rb6tT 2024-09-16T23:35:04.027 DEBUG:teuthology.orchestra.run.smithi033:> sudo cp /boot/grub/grub.cfg /tmp/tmp.OCkx2Rb6tT 2024-09-16T23:35:04.102 DEBUG:teuthology.orchestra.run.smithi033:> sudo chmod 0666 /tmp/tmp.OCkx2Rb6tT 2024-09-16T23:35:04.222 DEBUG:teuthology.orchestra.remote:smithi033:/tmp/tmp.OCkx2Rb6tT is 10KB 2024-09-16T23:35:04.235 DEBUG:teuthology.orchestra.run.smithi033:> rm -fr /tmp/tmp.OCkx2Rb6tT 2024-09-16T23:35:04.240 DEBUG:teuthology.orchestra.run.smithi033:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-16T23:35:04.295 DEBUG:teuthology.orchestra.run.smithi033:> set -ex 2024-09-16T23:35:04.295 DEBUG:teuthology.orchestra.run.smithi033:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-16T23:35:04.295 DEBUG:teuthology.orchestra.run.smithi033:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-16T23:35:04.363 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-122-generic 2024-09-16T23:35:04.363 DEBUG:teuthology.orchestra.run.smithi033:> sudo update-grub 2024-09-16T23:35:04.605 INFO:teuthology.orchestra.run.smithi103.stderr:Sourcing file `/etc/default/grub' 2024-09-16T23:35:04.606 INFO:teuthology.orchestra.run.smithi103.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-16T23:35:04.609 INFO:teuthology.orchestra.run.smithi103.stderr:Generating grub configuration file ... 2024-09-16T23:35:04.760 INFO:teuthology.orchestra.run.smithi089.stderr:Sourcing file `/etc/default/grub' 2024-09-16T23:35:04.761 INFO:teuthology.orchestra.run.smithi089.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-16T23:35:04.763 INFO:teuthology.orchestra.run.smithi089.stderr:Generating grub configuration file ... 2024-09-16T23:35:04.798 INFO:teuthology.orchestra.run.smithi103.stderr:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-16T23:35:04.803 INFO:teuthology.orchestra.run.smithi103.stderr:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-16T23:35:04.955 INFO:teuthology.orchestra.run.smithi089.stderr:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-16T23:35:04.961 INFO:teuthology.orchestra.run.smithi089.stderr:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-16T23:35:05.045 INFO:teuthology.orchestra.run.smithi103.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-16T23:35:05.050 INFO:teuthology.orchestra.run.smithi103.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-16T23:35:05.093 INFO:teuthology.orchestra.run.smithi103.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-16T23:35:05.099 INFO:teuthology.orchestra.run.smithi103.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-16T23:35:05.196 INFO:teuthology.orchestra.run.smithi089.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-16T23:35:05.201 INFO:teuthology.orchestra.run.smithi089.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-16T23:35:05.241 INFO:teuthology.orchestra.run.smithi089.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-16T23:35:05.246 INFO:teuthology.orchestra.run.smithi089.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-16T23:35:05.259 INFO:teuthology.orchestra.run.smithi103.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-16T23:35:05.259 INFO:teuthology.orchestra.run.smithi103.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-16T23:35:05.259 INFO:teuthology.orchestra.run.smithi103.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-16T23:35:05.285 INFO:teuthology.orchestra.run.smithi103.stderr:done 2024-09-16T23:35:05.294 DEBUG:teuthology.orchestra.run.smithi103:> sudo shutdown -r now 2024-09-16T23:35:05.388 INFO:teuthology.orchestra.run.smithi089.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-16T23:35:05.389 INFO:teuthology.orchestra.run.smithi089.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-16T23:35:05.389 INFO:teuthology.orchestra.run.smithi089.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-16T23:35:05.407 INFO:teuthology.orchestra.run.smithi089.stderr:done 2024-09-16T23:35:05.416 DEBUG:teuthology.orchestra.run.smithi089:> sudo shutdown -r now 2024-09-16T23:35:05.671 INFO:teuthology.orchestra.run.smithi033.stderr:Sourcing file `/etc/default/grub' 2024-09-16T23:35:05.673 INFO:teuthology.orchestra.run.smithi033.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-16T23:35:05.675 INFO:teuthology.orchestra.run.smithi033.stderr:Generating grub configuration file ... 2024-09-16T23:35:05.877 INFO:teuthology.orchestra.run.smithi033.stderr:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-16T23:35:05.915 INFO:teuthology.orchestra.run.smithi033.stderr:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-16T23:35:06.125 INFO:teuthology.orchestra.run.smithi033.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-16T23:35:06.130 INFO:teuthology.orchestra.run.smithi033.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-16T23:35:06.174 INFO:teuthology.orchestra.run.smithi033.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-16T23:35:06.180 INFO:teuthology.orchestra.run.smithi033.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-16T23:35:06.307 INFO:teuthology.orchestra.run.smithi033.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-16T23:35:06.307 INFO:teuthology.orchestra.run.smithi033.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-16T23:35:06.307 INFO:teuthology.orchestra.run.smithi033.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-16T23:35:06.326 INFO:teuthology.orchestra.run.smithi033.stderr:done 2024-09-16T23:35:06.328 DEBUG:teuthology.orchestra.run.smithi033:> sudo shutdown -r now 2024-09-16T23:35:35.325 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-09-16T23:35:35.325 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi103.front.sepia.ceph.com' 2024-09-16T23:35:35.326 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi103.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T23:35:35.419 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-16T23:35:35.419 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi089.front.sepia.ceph.com' 2024-09-16T23:35:35.420 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi089.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T23:35:36.331 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-16T23:35:36.332 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi033.front.sepia.ceph.com' 2024-09-16T23:35:36.332 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi033.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T23:35:53.661 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.103 2024-09-16T23:35:53.917 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.89 2024-09-16T23:35:54.689 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.33 2024-09-16T23:36:02.669 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi103.front.sepia.ceph.com' 2024-09-16T23:36:02.669 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi103.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T23:36:02.918 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi089.front.sepia.ceph.com' 2024-09-16T23:36:02.918 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi089.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T23:36:03.691 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi033.front.sepia.ceph.com' 2024-09-16T23:36:03.691 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi033.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T23:36:05.729 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.103 2024-09-16T23:36:05.981 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.89 2024-09-16T23:36:17.741 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi103.front.sepia.ceph.com' 2024-09-16T23:36:17.742 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi103.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T23:36:17.982 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi089.front.sepia.ceph.com' 2024-09-16T23:36:17.982 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi089.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T23:36:20.801 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.103 2024-09-16T23:36:35.813 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi103.front.sepia.ceph.com' 2024-09-16T23:36:35.813 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi103.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T23:36:36.413 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.89 2024-09-16T23:36:51.422 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi089.front.sepia.ceph.com' 2024-09-16T23:36:51.422 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi089.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T23:36:51.878 DEBUG:teuthology.orchestra.run.smithi089:> true 2024-09-16T23:36:52.780 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi089.front.sepia.ceph.com' 2024-09-16T23:36:52.781 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-122-generic"... 2024-09-16T23:36:52.781 DEBUG:teuthology.orchestra.run.smithi089:> uname -r 2024-09-16T23:36:52.827 INFO:teuthology.orchestra.run.smithi089.stdout:5.15.0-122-generic 2024-09-16T23:36:52.827 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-122-generic vs 5.15.0-122-generic 2024-09-16T23:36:52.827 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-16T23:36:52.827 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-16T23:36:53.828 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-16T23:36:53.828 DEBUG:teuthology.orchestra.run.smithi089:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-16T23:36:53.908 INFO:teuthology.orchestra.run.smithi089.stdout:ttyS1 2024-09-16T23:36:53.928 DEBUG:teuthology.parallel:result is None 2024-09-16T23:37:03.694 DEBUG:teuthology.orchestra.remote:timed out 2024-09-16T23:37:07.844 DEBUG:teuthology.orchestra.run.smithi103:> true 2024-09-16T23:37:08.522 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi103.front.sepia.ceph.com' 2024-09-16T23:37:08.522 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.15.0-122-generic"... 2024-09-16T23:37:08.522 DEBUG:teuthology.orchestra.run.smithi103:> uname -r 2024-09-16T23:37:08.569 INFO:teuthology.orchestra.run.smithi103.stdout:5.15.0-122-generic 2024-09-16T23:37:08.570 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-122-generic vs 5.15.0-122-generic 2024-09-16T23:37:08.570 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-16T23:37:08.570 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-16T23:37:09.571 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-09-16T23:37:09.571 DEBUG:teuthology.orchestra.run.smithi103:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-16T23:37:09.934 INFO:teuthology.orchestra.run.smithi103.stdout:ttyS1 2024-09-16T23:37:09.967 DEBUG:teuthology.parallel:result is None 2024-09-16T23:37:15.695 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi033.front.sepia.ceph.com' 2024-09-16T23:37:15.695 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi033.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T23:37:15.969 DEBUG:teuthology.orchestra.run.smithi033:> true 2024-09-16T23:37:16.649 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi033.front.sepia.ceph.com' 2024-09-16T23:37:16.649 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-122-generic"... 2024-09-16T23:37:16.650 DEBUG:teuthology.orchestra.run.smithi033:> uname -r 2024-09-16T23:37:16.695 INFO:teuthology.orchestra.run.smithi033.stdout:5.15.0-122-generic 2024-09-16T23:37:16.695 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-122-generic vs 5.15.0-122-generic 2024-09-16T23:37:16.696 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-16T23:37:16.696 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-16T23:37:17.696 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-16T23:37:17.697 DEBUG:teuthology.orchestra.run.smithi033:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-16T23:37:17.769 INFO:teuthology.orchestra.run.smithi033.stdout:ttyS1 2024-09-16T23:37:17.800 DEBUG:teuthology.parallel:result is None 2024-09-16T23:37:17.801 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-16T23:37:17.810 INFO:teuthology.task.internal:Creating test directory... 2024-09-16T23:37:17.810 DEBUG:teuthology.orchestra.run.smithi033:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-16T23:37:17.812 DEBUG:teuthology.orchestra.run.smithi089:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-16T23:37:17.815 DEBUG:teuthology.orchestra.run.smithi103:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-16T23:37:17.821 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-16T23:37:17.832 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-16T23:37:17.842 INFO:teuthology.task.internal:Creating archive directory... 2024-09-16T23:37:17.842 DEBUG:teuthology.orchestra.run.smithi033:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-16T23:37:17.860 DEBUG:teuthology.orchestra.run.smithi089:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-16T23:37:17.863 DEBUG:teuthology.orchestra.run.smithi103:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-16T23:37:18.104 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-16T23:37:18.111 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-16T23:37:18.112 DEBUG:teuthology.orchestra.run.smithi033:> 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-16T23:37:18.114 DEBUG:teuthology.orchestra.run.smithi089:> 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-16T23:37:18.116 DEBUG:teuthology.orchestra.run.smithi103:> 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-16T23:37:18.133 INFO:teuthology.orchestra.run.smithi089.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-16T23:37:18.133 INFO:teuthology.orchestra.run.smithi033.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-16T23:37:18.143 INFO:teuthology.orchestra.run.smithi089.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-16T23:37:18.145 INFO:teuthology.orchestra.run.smithi103.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-16T23:37:18.146 INFO:teuthology.orchestra.run.smithi033.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-16T23:37:18.152 INFO:teuthology.orchestra.run.smithi103.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-16T23:37:18.153 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-16T23:37:18.160 INFO:teuthology.task.internal:Configuring sudo... 2024-09-16T23:37:18.160 DEBUG:teuthology.orchestra.run.smithi033:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-16T23:37:18.192 DEBUG:teuthology.orchestra.run.smithi089:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-16T23:37:18.194 DEBUG:teuthology.orchestra.run.smithi103:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-16T23:37:18.229 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-16T23:37:18.238 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-16T23:37:18.238 DEBUG:teuthology.orchestra.run.smithi033:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-16T23:37:18.248 DEBUG:teuthology.orchestra.run.smithi089:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-16T23:37:18.275 DEBUG:teuthology.orchestra.run.smithi103:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-16T23:37:18.280 DEBUG:teuthology.orchestra.run.smithi033:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-16T23:37:18.299 DEBUG:teuthology.orchestra.run.smithi033:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-16T23:37:18.347 DEBUG:teuthology.orchestra.run.smithi033:> set -ex 2024-09-16T23:37:18.347 DEBUG:teuthology.orchestra.run.smithi033:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-16T23:37:18.412 DEBUG:teuthology.orchestra.run.smithi089:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-16T23:37:18.418 DEBUG:teuthology.orchestra.run.smithi089:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-16T23:37:18.467 DEBUG:teuthology.orchestra.run.smithi089:> set -ex 2024-09-16T23:37:18.467 DEBUG:teuthology.orchestra.run.smithi089:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-16T23:37:18.537 DEBUG:teuthology.orchestra.run.smithi103:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-16T23:37:18.542 DEBUG:teuthology.orchestra.run.smithi103:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-16T23:37:18.589 DEBUG:teuthology.orchestra.run.smithi103:> set -ex 2024-09-16T23:37:18.589 DEBUG:teuthology.orchestra.run.smithi103:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-16T23:37:18.660 DEBUG:teuthology.orchestra.run.smithi033:> sudo service rsyslog restart 2024-09-16T23:37:18.663 DEBUG:teuthology.orchestra.run.smithi089:> sudo service rsyslog restart 2024-09-16T23:37:18.665 DEBUG:teuthology.orchestra.run.smithi103:> sudo service rsyslog restart 2024-09-16T23:37:18.732 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-16T23:37:18.741 INFO:teuthology.task.internal:Starting timer... 2024-09-16T23:37:18.741 INFO:teuthology.run_tasks:Running task pcp... 2024-09-16T23:37:18.751 INFO:teuthology.run_tasks:Running task selinux... 2024-09-16T23:37:18.759 DEBUG:teuthology.task.selinux:Excluding smithi033: OS 'ubuntu' does not support SELinux 2024-09-16T23:37:18.760 DEBUG:teuthology.task.selinux:Excluding smithi089: OS 'ubuntu' does not support SELinux 2024-09-16T23:37:18.760 DEBUG:teuthology.task.selinux:Excluding smithi103: OS 'ubuntu' does not support SELinux 2024-09-16T23:37:18.760 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-16T23:37:18.760 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-09-16T23:37:18.760 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-16T23:37:18.760 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-16T23:37:18.769 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-09-16T23:37:18.772 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-09-16T23:37:18.882 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-16T23:37:18.892 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-16T23:37:18.893 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi033.front.sepia.ceph.com,smithi089.front.sepia.ceph.com,smithi103.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-16T23:44:54.233 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi033.front.sepia.ceph.com'), Remote(name='ubuntu@smithi089.front.sepia.ceph.com'), Remote(name='ubuntu@smithi103.front.sepia.ceph.com')] 2024-09-16T23:44:54.234 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi033.front.sepia.ceph.com' 2024-09-16T23:44:54.235 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi033.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T23:44:54.316 DEBUG:teuthology.orchestra.run.smithi033:> true 2024-09-16T23:44:54.393 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi033.front.sepia.ceph.com' 2024-09-16T23:44:54.393 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi089.front.sepia.ceph.com' 2024-09-16T23:44:54.394 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi089.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T23:44:54.471 DEBUG:teuthology.orchestra.run.smithi089:> true 2024-09-16T23:44:54.549 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi089.front.sepia.ceph.com' 2024-09-16T23:44:54.549 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi103.front.sepia.ceph.com' 2024-09-16T23:44:54.550 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi103.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T23:44:54.626 DEBUG:teuthology.orchestra.run.smithi103:> true 2024-09-16T23:44:54.705 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi103.front.sepia.ceph.com' 2024-09-16T23:44:54.706 INFO:teuthology.run_tasks:Running task clock... 2024-09-16T23:44:54.715 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-16T23:44:54.715 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-16T23:44:54.716 DEBUG:teuthology.orchestra.run.smithi033:> 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-16T23:44:54.718 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-16T23:44:54.718 DEBUG:teuthology.orchestra.run.smithi089:> 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-16T23:44:54.720 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-16T23:44:54.721 DEBUG:teuthology.orchestra.run.smithi103:> 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-16T23:44:54.744 INFO:teuthology.orchestra.run.smithi033.stdout:16 Sep 23:44:54 ntpd[18349]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-16T23:44:54.744 INFO:teuthology.orchestra.run.smithi033.stdout:16 Sep 23:44:54 ntpd[18349]: Command line: ntpd -gq 2024-09-16T23:44:54.744 INFO:teuthology.orchestra.run.smithi033.stdout:16 Sep 23:44:54 ntpd[18349]: ---------------------------------------------------- 2024-09-16T23:44:54.744 INFO:teuthology.orchestra.run.smithi033.stdout:16 Sep 23:44:54 ntpd[18349]: ntp-4 is maintained by Network Time Foundation, 2024-09-16T23:44:54.744 INFO:teuthology.orchestra.run.smithi033.stdout:16 Sep 23:44:54 ntpd[18349]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-16T23:44:54.744 INFO:teuthology.orchestra.run.smithi033.stdout:16 Sep 23:44:54 ntpd[18349]: corporation. Support and training for ntp-4 are 2024-09-16T23:44:54.744 INFO:teuthology.orchestra.run.smithi033.stdout:16 Sep 23:44:54 ntpd[18349]: available at https://www.nwtime.org/support 2024-09-16T23:44:54.744 INFO:teuthology.orchestra.run.smithi033.stdout:16 Sep 23:44:54 ntpd[18349]: ---------------------------------------------------- 2024-09-16T23:44:54.745 INFO:teuthology.orchestra.run.smithi033.stdout:16 Sep 23:44:54 ntpd[18349]: proto: precision = 0.045 usec (-24) 2024-09-16T23:44:54.745 INFO:teuthology.orchestra.run.smithi033.stdout:16 Sep 23:44:54 ntpd[18349]: basedate set to 2022-02-04 2024-09-16T23:44:54.745 INFO:teuthology.orchestra.run.smithi033.stdout:16 Sep 23:44:54 ntpd[18349]: gps base set to 2022-02-06 (week 2196) 2024-09-16T23:44:54.745 INFO:teuthology.orchestra.run.smithi033.stdout:16 Sep 23:44:54 ntpd[18349]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-16T23:44:54.746 INFO:teuthology.orchestra.run.smithi033.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-16T23:44:54.746 INFO:teuthology.orchestra.run.smithi033.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-16T23:44:54.747 INFO:teuthology.orchestra.run.smithi033.stdout:16 Sep 23:44:54 ntpd[18349]: restrict ::: KOD does nothing without LIMITED. 2024-09-16T23:44:54.747 INFO:teuthology.orchestra.run.smithi033.stdout:16 Sep 23:44:54 ntpd[18349]: Listen and drop on 0 v6wildcard [::]:123 2024-09-16T23:44:54.747 INFO:teuthology.orchestra.run.smithi033.stdout:16 Sep 23:44:54 ntpd[18349]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-16T23:44:54.747 INFO:teuthology.orchestra.run.smithi033.stdout:16 Sep 23:44:54 ntpd[18349]: Listen normally on 2 lo 127.0.0.1:123 2024-09-16T23:44:54.747 INFO:teuthology.orchestra.run.smithi033.stdout:16 Sep 23:44:54 ntpd[18349]: Listen normally on 3 ens1f0 172.21.15.33:123 2024-09-16T23:44:54.747 INFO:teuthology.orchestra.run.smithi033.stdout:16 Sep 23:44:54 ntpd[18349]: Listen normally on 4 lo [::1]:123 2024-09-16T23:44:54.747 INFO:teuthology.orchestra.run.smithi033.stdout:16 Sep 23:44:54 ntpd[18349]: Listen normally on 5 ens1f0 [fe80::ae1f:6bff:fea5:d294%4]:123 2024-09-16T23:44:54.747 INFO:teuthology.orchestra.run.smithi033.stdout:16 Sep 23:44:54 ntpd[18349]: Listening on routing socket on fd #22 for interface updates 2024-09-16T23:44:54.748 INFO:teuthology.orchestra.run.smithi089.stdout:16 Sep 23:44:54 ntpd[18453]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-16T23:44:54.749 INFO:teuthology.orchestra.run.smithi089.stdout:16 Sep 23:44:54 ntpd[18453]: Command line: ntpd -gq 2024-09-16T23:44:54.749 INFO:teuthology.orchestra.run.smithi089.stdout:16 Sep 23:44:54 ntpd[18453]: ---------------------------------------------------- 2024-09-16T23:44:54.749 INFO:teuthology.orchestra.run.smithi089.stdout:16 Sep 23:44:54 ntpd[18453]: ntp-4 is maintained by Network Time Foundation, 2024-09-16T23:44:54.749 INFO:teuthology.orchestra.run.smithi089.stdout:16 Sep 23:44:54 ntpd[18453]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-16T23:44:54.749 INFO:teuthology.orchestra.run.smithi089.stdout:16 Sep 23:44:54 ntpd[18453]: corporation. Support and training for ntp-4 are 2024-09-16T23:44:54.749 INFO:teuthology.orchestra.run.smithi089.stdout:16 Sep 23:44:54 ntpd[18453]: available at https://www.nwtime.org/support 2024-09-16T23:44:54.749 INFO:teuthology.orchestra.run.smithi089.stdout:16 Sep 23:44:54 ntpd[18453]: ---------------------------------------------------- 2024-09-16T23:44:54.749 INFO:teuthology.orchestra.run.smithi089.stdout:16 Sep 23:44:54 ntpd[18453]: proto: precision = 0.043 usec (-24) 2024-09-16T23:44:54.749 INFO:teuthology.orchestra.run.smithi089.stdout:16 Sep 23:44:54 ntpd[18453]: basedate set to 2022-02-04 2024-09-16T23:44:54.749 INFO:teuthology.orchestra.run.smithi089.stdout:16 Sep 23:44:54 ntpd[18453]: gps base set to 2022-02-06 (week 2196) 2024-09-16T23:44:54.749 INFO:teuthology.orchestra.run.smithi089.stdout:16 Sep 23:44:54 ntpd[18453]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-16T23:44:54.750 INFO:teuthology.orchestra.run.smithi089.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-16T23:44:54.750 INFO:teuthology.orchestra.run.smithi089.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-16T23:44:54.751 INFO:teuthology.orchestra.run.smithi089.stdout:16 Sep 23:44:54 ntpd[18453]: restrict ::: KOD does nothing without LIMITED. 2024-09-16T23:44:54.751 INFO:teuthology.orchestra.run.smithi089.stdout:16 Sep 23:44:54 ntpd[18453]: Listen and drop on 0 v6wildcard [::]:123 2024-09-16T23:44:54.751 INFO:teuthology.orchestra.run.smithi089.stdout:16 Sep 23:44:54 ntpd[18453]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-16T23:44:54.751 INFO:teuthology.orchestra.run.smithi089.stdout:16 Sep 23:44:54 ntpd[18453]: Listen normally on 2 lo 127.0.0.1:123 2024-09-16T23:44:54.751 INFO:teuthology.orchestra.run.smithi089.stdout:16 Sep 23:44:54 ntpd[18453]: Listen normally on 3 enp3s0f1 172.21.15.89:123 2024-09-16T23:44:54.751 INFO:teuthology.orchestra.run.smithi089.stdout:16 Sep 23:44:54 ntpd[18453]: Listen normally on 4 lo [::1]:123 2024-09-16T23:44:54.751 INFO:teuthology.orchestra.run.smithi089.stdout:16 Sep 23:44:54 ntpd[18453]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:d501%5]:123 2024-09-16T23:44:54.751 INFO:teuthology.orchestra.run.smithi089.stdout:16 Sep 23:44:54 ntpd[18453]: Listening on routing socket on fd #22 for interface updates 2024-09-16T23:44:54.775 INFO:teuthology.orchestra.run.smithi103.stdout:16 Sep 23:44:54 ntpd[18457]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-16T23:44:54.775 INFO:teuthology.orchestra.run.smithi103.stdout:16 Sep 23:44:54 ntpd[18457]: Command line: ntpd -gq 2024-09-16T23:44:54.775 INFO:teuthology.orchestra.run.smithi103.stdout:16 Sep 23:44:54 ntpd[18457]: ---------------------------------------------------- 2024-09-16T23:44:54.775 INFO:teuthology.orchestra.run.smithi103.stdout:16 Sep 23:44:54 ntpd[18457]: ntp-4 is maintained by Network Time Foundation, 2024-09-16T23:44:54.775 INFO:teuthology.orchestra.run.smithi103.stdout:16 Sep 23:44:54 ntpd[18457]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-16T23:44:54.775 INFO:teuthology.orchestra.run.smithi103.stdout:16 Sep 23:44:54 ntpd[18457]: corporation. Support and training for ntp-4 are 2024-09-16T23:44:54.775 INFO:teuthology.orchestra.run.smithi103.stdout:16 Sep 23:44:54 ntpd[18457]: available at https://www.nwtime.org/support 2024-09-16T23:44:54.775 INFO:teuthology.orchestra.run.smithi103.stdout:16 Sep 23:44:54 ntpd[18457]: ---------------------------------------------------- 2024-09-16T23:44:54.776 INFO:teuthology.orchestra.run.smithi103.stdout:16 Sep 23:44:54 ntpd[18457]: proto: precision = 0.059 usec (-24) 2024-09-16T23:44:54.776 INFO:teuthology.orchestra.run.smithi103.stdout:16 Sep 23:44:54 ntpd[18457]: basedate set to 2022-02-04 2024-09-16T23:44:54.776 INFO:teuthology.orchestra.run.smithi103.stdout:16 Sep 23:44:54 ntpd[18457]: gps base set to 2022-02-06 (week 2196) 2024-09-16T23:44:54.777 INFO:teuthology.orchestra.run.smithi103.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-16T23:44:54.777 INFO:teuthology.orchestra.run.smithi103.stdout:16 Sep 23:44:54 ntpd[18457]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-16T23:44:54.777 INFO:teuthology.orchestra.run.smithi103.stdout:16 Sep 23:44:54 ntpd[18457]: restrict ::: KOD does nothing without LIMITED. 2024-09-16T23:44:54.777 INFO:teuthology.orchestra.run.smithi103.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-16T23:44:54.778 INFO:teuthology.orchestra.run.smithi103.stdout:16 Sep 23:44:54 ntpd[18457]: Listen and drop on 0 v6wildcard [::]:123 2024-09-16T23:44:54.778 INFO:teuthology.orchestra.run.smithi103.stdout:16 Sep 23:44:54 ntpd[18457]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-16T23:44:54.778 INFO:teuthology.orchestra.run.smithi103.stdout:16 Sep 23:44:54 ntpd[18457]: Listen normally on 2 lo 127.0.0.1:123 2024-09-16T23:44:54.778 INFO:teuthology.orchestra.run.smithi103.stdout:16 Sep 23:44:54 ntpd[18457]: Listen normally on 3 enp3s0f1 172.21.15.103:123 2024-09-16T23:44:54.779 INFO:teuthology.orchestra.run.smithi103.stdout:16 Sep 23:44:54 ntpd[18457]: Listen normally on 4 lo [::1]:123 2024-09-16T23:44:54.779 INFO:teuthology.orchestra.run.smithi103.stdout:16 Sep 23:44:54 ntpd[18457]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:cc0b%5]:123 2024-09-16T23:44:54.779 INFO:teuthology.orchestra.run.smithi103.stdout:16 Sep 23:44:54 ntpd[18457]: Listening on routing socket on fd #22 for interface updates 2024-09-16T23:44:55.745 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:55 ntpd[18349]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:55.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:55 ntpd[18349]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:55.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:55 ntpd[18349]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:55.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:55 ntpd[18349]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:55.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:55 ntpd[18349]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:55.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:55 ntpd[18349]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:55.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:55 ntpd[18349]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:55.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:55 ntpd[18349]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:55.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:55 ntpd[18349]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:44:55.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:55 ntpd[18349]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:44:55.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:55 ntpd[18349]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:55.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:55 ntpd[18349]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:55.747 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:55 ntpd[18349]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:44:55.747 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:55 ntpd[18349]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:44:55.748 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:55 ntpd[18453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:55.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:55 ntpd[18453]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:55.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:55 ntpd[18453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:55.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:55 ntpd[18453]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:55.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:55 ntpd[18453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:55.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:55 ntpd[18453]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:55.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:55 ntpd[18453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:55.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:55 ntpd[18453]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:55.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:55 ntpd[18453]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:44:55.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:55 ntpd[18453]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:44:55.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:55 ntpd[18453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:55.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:55 ntpd[18453]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:55.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:55 ntpd[18453]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:44:55.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:55 ntpd[18453]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:44:55.775 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:55 ntpd[18457]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:55.776 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:55 ntpd[18457]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:55.776 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:55 ntpd[18457]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:55.776 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:55 ntpd[18457]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:55.776 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:55 ntpd[18457]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:55.776 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:55 ntpd[18457]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:55.776 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:55 ntpd[18457]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:44:55.776 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:55 ntpd[18457]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:44:57.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:57 ntpd[18349]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:57.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:57 ntpd[18349]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:57.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:57 ntpd[18349]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:57.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:57 ntpd[18349]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:57.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:57 ntpd[18349]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:57.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:57 ntpd[18349]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:57.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:57 ntpd[18349]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:44:57.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:57 ntpd[18349]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:44:57.747 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:57 ntpd[18349]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:57.747 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:57 ntpd[18349]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:57.747 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:57 ntpd[18349]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:44:57.747 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:57 ntpd[18349]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:44:57.748 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:57 ntpd[18453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:57.748 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:57 ntpd[18453]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:57.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:57 ntpd[18453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:57.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:57 ntpd[18453]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:57.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:57 ntpd[18453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:57.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:57 ntpd[18453]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:57.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:57 ntpd[18453]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:44:57.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:57 ntpd[18453]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:44:57.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:57 ntpd[18453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:57.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:57 ntpd[18453]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:57.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:57 ntpd[18453]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:44:57.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:57 ntpd[18453]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:44:57.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:57 ntpd[18457]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:57.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:57 ntpd[18457]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:57.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:57 ntpd[18457]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:57.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:57 ntpd[18457]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:57.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:57 ntpd[18457]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:57.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:57 ntpd[18457]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:57.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:57 ntpd[18457]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:57.778 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:57 ntpd[18457]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:57.778 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:57 ntpd[18457]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:44:57.778 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:57 ntpd[18457]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:44:57.778 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:57 ntpd[18457]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:57.778 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:57 ntpd[18457]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:57.778 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:57 ntpd[18457]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:44:57.778 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:57 ntpd[18457]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:44:57.778 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:57 ntpd[18457]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:57.778 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:57 ntpd[18457]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:57.778 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:57 ntpd[18457]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:44:57.778 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:57 ntpd[18457]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:44:59.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:59 ntpd[18349]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:59.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:59 ntpd[18349]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:59.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:59 ntpd[18349]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:59.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:59 ntpd[18349]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:59.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:59 ntpd[18349]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:59.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:59 ntpd[18349]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:59.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:59 ntpd[18349]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:59.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:59 ntpd[18349]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:59.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:59 ntpd[18349]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:44:59.747 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:59 ntpd[18349]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:44:59.747 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:59 ntpd[18349]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:59.747 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:59 ntpd[18349]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:59.747 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:59 ntpd[18349]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:44:59.747 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:59 ntpd[18349]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:44:59.747 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:59 ntpd[18349]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:59.747 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:59 ntpd[18349]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:59.747 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:59 ntpd[18349]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:44:59.747 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:44:59 ntpd[18349]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:44:59.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:59 ntpd[18453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:59.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:59 ntpd[18453]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:59.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:59 ntpd[18453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:59.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:59 ntpd[18453]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:59.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:59 ntpd[18453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:59.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:59 ntpd[18453]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:59.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:59 ntpd[18453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:59.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:59 ntpd[18453]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:59.750 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:59 ntpd[18453]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:44:59.750 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:59 ntpd[18453]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:44:59.750 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:59 ntpd[18453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:59.750 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:59 ntpd[18453]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:59.750 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:59 ntpd[18453]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:44:59.750 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:59 ntpd[18453]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:44:59.750 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:59 ntpd[18453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:59.750 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:59 ntpd[18453]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:59.750 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:59 ntpd[18453]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:44:59.750 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:44:59 ntpd[18453]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:44:59.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:59 ntpd[18457]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:59.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:59 ntpd[18457]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:59.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:59 ntpd[18457]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:59.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:59 ntpd[18457]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:59.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:59 ntpd[18457]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:59.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:59 ntpd[18457]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:59.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:59 ntpd[18457]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:59.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:59 ntpd[18457]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:59.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:59 ntpd[18457]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:44:59.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:59 ntpd[18457]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:44:59.778 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:59 ntpd[18457]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:59.778 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:59 ntpd[18457]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:59.778 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:59 ntpd[18457]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:44:59.778 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:59 ntpd[18457]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:44:59.778 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:59 ntpd[18457]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:44:59.778 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:59 ntpd[18457]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:44:59.778 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:59 ntpd[18457]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:44:59.778 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:44:59 ntpd[18457]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:45:01.745 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:45:01 ntpd[18349]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:45:01.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:45:01 ntpd[18349]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:45:01.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:45:01 ntpd[18349]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:45:01.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:45:01 ntpd[18349]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:45:01.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:45:01 ntpd[18349]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:45:01.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:45:01 ntpd[18349]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:45:01.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:45:01 ntpd[18349]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:45:01.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:45:01 ntpd[18349]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:45:01.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:45:01 ntpd[18349]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:45:01.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:45:01 ntpd[18349]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:45:01.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:45:01 ntpd[18349]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:45:01.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:45:01 ntpd[18349]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:45:01.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:45:01 ntpd[18349]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:45:01.746 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:45:01 ntpd[18349]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:45:01.747 INFO:teuthology.orchestra.run.smithi033.stdout:16 Sep 23:45:01 ntpd[18349]: ntpd: time slew +0.003552 s 2024-09-16T23:45:01.747 INFO:teuthology.orchestra.run.smithi033.stdout:ntpd: time slew +0.003552s 2024-09-16T23:45:01.747 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:45:01 ntpd[18349]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-16T23:45:01.747 INFO:teuthology.orchestra.run.smithi033.stderr:16 Sep 23:45:01 ntpd[18349]: can't open /var/log/ntpstats/loopstats.20240916: Permission denied 2024-09-16T23:45:01.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:45:01 ntpd[18453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:45:01.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:45:01 ntpd[18453]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:45:01.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:45:01 ntpd[18453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:45:01.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:45:01 ntpd[18453]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:45:01.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:45:01 ntpd[18453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:45:01.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:45:01 ntpd[18453]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:45:01.749 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:45:01 ntpd[18453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:45:01.750 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:45:01 ntpd[18453]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:45:01.750 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:45:01 ntpd[18453]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:45:01.750 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:45:01 ntpd[18453]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:45:01.750 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:45:01 ntpd[18453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:45:01.750 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:45:01 ntpd[18453]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:45:01.750 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:45:01 ntpd[18453]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:45:01.750 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:45:01 ntpd[18453]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:45:01.750 INFO:teuthology.orchestra.run.smithi089.stdout:16 Sep 23:45:01 ntpd[18453]: ntpd: time slew +0.004090 s 2024-09-16T23:45:01.750 INFO:teuthology.orchestra.run.smithi089.stdout:ntpd: time slew +0.004090s 2024-09-16T23:45:01.751 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:45:01 ntpd[18453]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-16T23:45:01.751 INFO:teuthology.orchestra.run.smithi089.stderr:16 Sep 23:45:01 ntpd[18453]: can't open /var/log/ntpstats/loopstats.20240916: Permission denied 2024-09-16T23:45:01.776 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:45:01 ntpd[18457]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:45:01.776 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:45:01 ntpd[18457]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:45:01.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:45:01 ntpd[18457]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:45:01.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:45:01 ntpd[18457]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:45:01.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:45:01 ntpd[18457]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:45:01.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:45:01 ntpd[18457]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:45:01.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:45:01 ntpd[18457]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:45:01.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:45:01 ntpd[18457]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:45:01.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:45:01 ntpd[18457]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:45:01.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:45:01 ntpd[18457]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:45:01.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:45:01 ntpd[18457]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:45:01.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:45:01 ntpd[18457]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:45:01.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:45:01 ntpd[18457]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:45:01.777 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:45:01 ntpd[18457]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:45:01.778 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:45:01 ntpd[18457]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T23:45:01.778 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:45:01 ntpd[18457]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T23:45:01.778 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:45:01 ntpd[18457]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T23:45:01.778 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:45:01 ntpd[18457]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T23:45:01.778 INFO:teuthology.orchestra.run.smithi103.stdout:16 Sep 23:45:01 ntpd[18457]: ntpd: time slew -0.003790 s 2024-09-16T23:45:01.778 INFO:teuthology.orchestra.run.smithi103.stdout:ntpd: time slew -0.003790s 2024-09-16T23:45:01.778 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:45:01 ntpd[18457]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-16T23:45:01.779 INFO:teuthology.orchestra.run.smithi103.stderr:16 Sep 23:45:01 ntpd[18457]: can't open /var/log/ntpstats/loopstats.20240916: Permission denied 2024-09-16T23:45:01.792 INFO:teuthology.orchestra.run.smithi033.stdout: remote refid st t when poll reach delay offset jitter 2024-09-16T23:45:01.792 INFO:teuthology.orchestra.run.smithi033.stdout:============================================================================== 2024-09-16T23:45:01.792 INFO:teuthology.orchestra.run.smithi033.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T23:45:01.792 INFO:teuthology.orchestra.run.smithi033.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T23:45:01.792 INFO:teuthology.orchestra.run.smithi033.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T23:45:01.792 INFO:teuthology.orchestra.run.smithi033.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T23:45:01.809 INFO:teuthology.orchestra.run.smithi089.stdout: remote refid st t when poll reach delay offset jitter 2024-09-16T23:45:01.809 INFO:teuthology.orchestra.run.smithi089.stdout:============================================================================== 2024-09-16T23:45:01.810 INFO:teuthology.orchestra.run.smithi089.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T23:45:01.810 INFO:teuthology.orchestra.run.smithi089.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T23:45:01.810 INFO:teuthology.orchestra.run.smithi089.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T23:45:01.810 INFO:teuthology.orchestra.run.smithi089.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T23:45:01.842 INFO:teuthology.orchestra.run.smithi103.stdout: remote refid st t when poll reach delay offset jitter 2024-09-16T23:45:01.842 INFO:teuthology.orchestra.run.smithi103.stdout:============================================================================== 2024-09-16T23:45:01.842 INFO:teuthology.orchestra.run.smithi103.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T23:45:01.842 INFO:teuthology.orchestra.run.smithi103.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T23:45:01.842 INFO:teuthology.orchestra.run.smithi103.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T23:45:01.842 INFO:teuthology.orchestra.run.smithi103.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T23:45:01.843 INFO:teuthology.run_tasks:Running task install... 2024-09-16T23:45:01.850 DEBUG:teuthology.task.install:project ceph 2024-09-16T23:45:01.851 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'c2ddf9721ef254645201cdbabd9c8f49c30a586f'}} 2024-09-16T23:45:01.851 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'c2ddf9721ef254645201cdbabd9c8f49c30a586f'} 2024-09-16T23:45:01.851 INFO:teuthology.task.install:Using flavor: default 2024-09-16T23:45:01.856 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-16T23:45:01.856 INFO:teuthology.task.install:extra packages: [] 2024-09-16T23:45:01.857 DEBUG:teuthology.orchestra.run.smithi033:> sudo apt-key list | grep Ceph 2024-09-16T23:45:01.857 DEBUG:teuthology.orchestra.run.smithi089:> sudo apt-key list | grep Ceph 2024-09-16T23:45:01.858 DEBUG:teuthology.orchestra.run.smithi103:> sudo apt-key list | grep Ceph 2024-09-16T23:45:01.914 INFO:teuthology.orchestra.run.smithi089.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-09-16T23:45:01.918 INFO:teuthology.orchestra.run.smithi033.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-09-16T23:45:01.936 INFO:teuthology.orchestra.run.smithi103.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-09-16T23:45:01.941 INFO:teuthology.orchestra.run.smithi089.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-09-16T23:45:01.942 INFO:teuthology.orchestra.run.smithi089.stdout:uid [ unknown] Ceph.com (release key) 2024-09-16T23:45:01.943 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-16T23:45:01.943 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-16T23:45:01.948 INFO:teuthology.orchestra.run.smithi033.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-09-16T23:45:01.948 INFO:teuthology.orchestra.run.smithi033.stdout:uid [ unknown] Ceph.com (release key) 2024-09-16T23:45:01.949 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-16T23:45:01.949 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-16T23:45:01.984 INFO:teuthology.orchestra.run.smithi103.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-09-16T23:45:01.984 INFO:teuthology.orchestra.run.smithi103.stdout:uid [ unknown] Ceph.com (release key) 2024-09-16T23:45:01.985 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-16T23:45:01.985 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-16T23:45:02.093 INFO:teuthology.task.install.deb:Pulling from https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default/ 2024-09-16T23:45:02.093 INFO:teuthology.task.install.deb:Package version is 19.1.1-330-gc2ddf972-1jammy 2024-09-16T23:45:02.096 INFO:teuthology.task.install.deb:Pulling from https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default/ 2024-09-16T23:45:02.096 INFO:teuthology.task.install.deb:Package version is 19.1.1-330-gc2ddf972-1jammy 2024-09-16T23:45:02.133 INFO:teuthology.task.install.deb:Pulling from https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default/ 2024-09-16T23:45:02.133 INFO:teuthology.task.install.deb:Package version is 19.1.1-330-gc2ddf972-1jammy 2024-09-16T23:45:02.205 DEBUG:teuthology.orchestra.run.smithi033:> set -ex 2024-09-16T23:45:02.205 DEBUG:teuthology.orchestra.run.smithi033:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-09-16T23:45:02.212 DEBUG:teuthology.orchestra.run.smithi089:> set -ex 2024-09-16T23:45:02.212 DEBUG:teuthology.orchestra.run.smithi089:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-09-16T23:45:02.220 DEBUG:teuthology.orchestra.run.smithi033:> sudo apt-get update 2024-09-16T23:45:02.227 DEBUG:teuthology.orchestra.run.smithi089:> sudo apt-get update 2024-09-16T23:45:02.248 DEBUG:teuthology.orchestra.run.smithi103:> set -ex 2024-09-16T23:45:02.248 DEBUG:teuthology.orchestra.run.smithi103:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-09-16T23:45:02.262 DEBUG:teuthology.orchestra.run.smithi103:> sudo apt-get update 2024-09-16T23:45:02.388 INFO:teuthology.orchestra.run.smithi033.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T23:45:02.398 INFO:teuthology.orchestra.run.smithi033.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-16T23:45:02.410 INFO:teuthology.orchestra.run.smithi089.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-16T23:45:02.415 INFO:teuthology.orchestra.run.smithi033.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-16T23:45:02.443 INFO:teuthology.orchestra.run.smithi089.stdout:Ign:2 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy InRelease 2024-09-16T23:45:02.445 INFO:teuthology.orchestra.run.smithi033.stdout:Ign:4 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy InRelease 2024-09-16T23:45:02.475 INFO:teuthology.orchestra.run.smithi089.stdout:Get:3 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-09-16T23:45:02.475 INFO:teuthology.orchestra.run.smithi033.stdout:Get:5 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-09-16T23:45:02.496 INFO:teuthology.orchestra.run.smithi103.stdout:Ign:1 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy InRelease 2024-09-16T23:45:02.497 INFO:teuthology.orchestra.run.smithi089.stdout:Ign:4 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy Release.gpg 2024-09-16T23:45:02.497 INFO:teuthology.orchestra.run.smithi033.stdout:Ign:6 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy Release.gpg 2024-09-16T23:45:02.510 INFO:teuthology.orchestra.run.smithi089.stdout:Hit:5 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T23:45:02.519 INFO:teuthology.orchestra.run.smithi103.stdout:Get:2 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-09-16T23:45:02.523 INFO:teuthology.orchestra.run.smithi089.stdout:Get:6 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,409 B] 2024-09-16T23:45:02.529 INFO:teuthology.orchestra.run.smithi033.stdout:Hit:7 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-16T23:45:02.534 INFO:teuthology.orchestra.run.smithi033.stdout:Get:8 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.9 kB] 2024-09-16T23:45:02.541 INFO:teuthology.orchestra.run.smithi103.stdout:Ign:3 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy Release.gpg 2024-09-16T23:45:02.550 INFO:teuthology.orchestra.run.smithi089.stdout:Get:7 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.9 kB] 2024-09-16T23:45:02.562 INFO:teuthology.orchestra.run.smithi033.stdout:Get:9 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,409 B] 2024-09-16T23:45:02.562 INFO:teuthology.orchestra.run.smithi103.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T23:45:02.562 INFO:teuthology.orchestra.run.smithi103.stdout:Hit:5 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-16T23:45:02.562 INFO:teuthology.orchestra.run.smithi103.stdout:Get:6 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.9 kB] 2024-09-16T23:45:02.592 INFO:teuthology.orchestra.run.smithi089.stdout:Hit:8 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-16T23:45:02.593 INFO:teuthology.orchestra.run.smithi103.stdout:Get:7 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,409 B] 2024-09-16T23:45:02.634 INFO:teuthology.orchestra.run.smithi103.stdout:Hit:8 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-16T23:45:02.673 INFO:teuthology.orchestra.run.smithi089.stdout:Hit:9 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-16T23:45:02.716 INFO:teuthology.orchestra.run.smithi103.stdout:Hit:9 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-16T23:45:02.755 INFO:teuthology.orchestra.run.smithi033.stdout:Fetched 28.9 kB in 0s (82.0 kB/s) 2024-09-16T23:45:02.822 INFO:teuthology.orchestra.run.smithi089.stdout:Fetched 28.9 kB in 0s (69.8 kB/s) 2024-09-16T23:45:02.939 INFO:teuthology.orchestra.run.smithi103.stdout:Fetched 28.9 kB in 0s (58.9 kB/s) 2024-09-16T23:45:03.799 INFO:teuthology.orchestra.run.smithi033.stdout:Reading package lists... 2024-09-16T23:45:03.817 DEBUG:teuthology.orchestra.run.smithi033:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.1.1-330-gc2ddf972-1jammy cephadm=19.1.1-330-gc2ddf972-1jammy ceph-mds=19.1.1-330-gc2ddf972-1jammy ceph-mgr=19.1.1-330-gc2ddf972-1jammy ceph-common=19.1.1-330-gc2ddf972-1jammy ceph-fuse=19.1.1-330-gc2ddf972-1jammy ceph-test=19.1.1-330-gc2ddf972-1jammy ceph-volume=19.1.1-330-gc2ddf972-1jammy radosgw=19.1.1-330-gc2ddf972-1jammy python3-rados=19.1.1-330-gc2ddf972-1jammy python3-rgw=19.1.1-330-gc2ddf972-1jammy python3-cephfs=19.1.1-330-gc2ddf972-1jammy python3-rbd=19.1.1-330-gc2ddf972-1jammy libcephfs2=19.1.1-330-gc2ddf972-1jammy libcephfs-dev=19.1.1-330-gc2ddf972-1jammy librados2=19.1.1-330-gc2ddf972-1jammy librbd1=19.1.1-330-gc2ddf972-1jammy rbd-fuse=19.1.1-330-gc2ddf972-1jammy 2024-09-16T23:45:03.865 INFO:teuthology.orchestra.run.smithi089.stdout:Reading package lists... 2024-09-16T23:45:03.872 INFO:teuthology.orchestra.run.smithi033.stdout:Reading package lists... 2024-09-16T23:45:03.880 DEBUG:teuthology.orchestra.run.smithi089:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.1.1-330-gc2ddf972-1jammy cephadm=19.1.1-330-gc2ddf972-1jammy ceph-mds=19.1.1-330-gc2ddf972-1jammy ceph-mgr=19.1.1-330-gc2ddf972-1jammy ceph-common=19.1.1-330-gc2ddf972-1jammy ceph-fuse=19.1.1-330-gc2ddf972-1jammy ceph-test=19.1.1-330-gc2ddf972-1jammy ceph-volume=19.1.1-330-gc2ddf972-1jammy radosgw=19.1.1-330-gc2ddf972-1jammy python3-rados=19.1.1-330-gc2ddf972-1jammy python3-rgw=19.1.1-330-gc2ddf972-1jammy python3-cephfs=19.1.1-330-gc2ddf972-1jammy python3-rbd=19.1.1-330-gc2ddf972-1jammy libcephfs2=19.1.1-330-gc2ddf972-1jammy libcephfs-dev=19.1.1-330-gc2ddf972-1jammy librados2=19.1.1-330-gc2ddf972-1jammy librbd1=19.1.1-330-gc2ddf972-1jammy rbd-fuse=19.1.1-330-gc2ddf972-1jammy 2024-09-16T23:45:03.943 INFO:teuthology.orchestra.run.smithi089.stdout:Reading package lists... 2024-09-16T23:45:04.006 INFO:teuthology.orchestra.run.smithi103.stdout:Reading package lists... 2024-09-16T23:45:04.023 DEBUG:teuthology.orchestra.run.smithi103:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.1.1-330-gc2ddf972-1jammy cephadm=19.1.1-330-gc2ddf972-1jammy ceph-mds=19.1.1-330-gc2ddf972-1jammy ceph-mgr=19.1.1-330-gc2ddf972-1jammy ceph-common=19.1.1-330-gc2ddf972-1jammy ceph-fuse=19.1.1-330-gc2ddf972-1jammy ceph-test=19.1.1-330-gc2ddf972-1jammy ceph-volume=19.1.1-330-gc2ddf972-1jammy radosgw=19.1.1-330-gc2ddf972-1jammy python3-rados=19.1.1-330-gc2ddf972-1jammy python3-rgw=19.1.1-330-gc2ddf972-1jammy python3-cephfs=19.1.1-330-gc2ddf972-1jammy python3-rbd=19.1.1-330-gc2ddf972-1jammy libcephfs2=19.1.1-330-gc2ddf972-1jammy libcephfs-dev=19.1.1-330-gc2ddf972-1jammy librados2=19.1.1-330-gc2ddf972-1jammy librbd1=19.1.1-330-gc2ddf972-1jammy rbd-fuse=19.1.1-330-gc2ddf972-1jammy 2024-09-16T23:45:04.066 INFO:teuthology.orchestra.run.smithi033.stdout:Building dependency tree... 2024-09-16T23:45:04.066 INFO:teuthology.orchestra.run.smithi033.stdout:Reading state information... 2024-09-16T23:45:04.085 INFO:teuthology.orchestra.run.smithi103.stdout:Reading package lists... 2024-09-16T23:45:04.148 INFO:teuthology.orchestra.run.smithi089.stdout:Building dependency tree... 2024-09-16T23:45:04.149 INFO:teuthology.orchestra.run.smithi089.stdout:Reading state information... 2024-09-16T23:45:04.259 INFO:teuthology.orchestra.run.smithi033.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T23:45:04.260 INFO:teuthology.orchestra.run.smithi033.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T23:45:04.260 INFO:teuthology.orchestra.run.smithi033.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T23:45:04.260 INFO:teuthology.orchestra.run.smithi033.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T23:45:04.260 INFO:teuthology.orchestra.run.smithi033.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-16T23:45:04.260 INFO:teuthology.orchestra.run.smithi033.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-16T23:45:04.260 INFO:teuthology.orchestra.run.smithi033.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T23:45:04.261 INFO:teuthology.orchestra.run.smithi033.stdout:The following additional packages will be installed: 2024-09-16T23:45:04.261 INFO:teuthology.orchestra.run.smithi033.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-09-16T23:45:04.261 INFO:teuthology.orchestra.run.smithi033.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-09-16T23:45:04.261 INFO:teuthology.orchestra.run.smithi033.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-09-16T23:45:04.261 INFO:teuthology.orchestra.run.smithi033.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-09-16T23:45:04.262 INFO:teuthology.orchestra.run.smithi033.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-09-16T23:45:04.263 INFO:teuthology.orchestra.run.smithi033.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-09-16T23:45:04.263 INFO:teuthology.orchestra.run.smithi033.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-09-16T23:45:04.263 INFO:teuthology.orchestra.run.smithi033.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-09-16T23:45:04.263 INFO:teuthology.orchestra.run.smithi033.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-09-16T23:45:04.263 INFO:teuthology.orchestra.run.smithi033.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-16T23:45:04.263 INFO:teuthology.orchestra.run.smithi033.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-16T23:45:04.263 INFO:teuthology.orchestra.run.smithi033.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-16T23:45:04.263 INFO:teuthology.orchestra.run.smithi033.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-16T23:45:04.263 INFO:teuthology.orchestra.run.smithi033.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-16T23:45:04.263 INFO:teuthology.orchestra.run.smithi033.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-16T23:45:04.263 INFO:teuthology.orchestra.run.smithi033.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-16T23:45:04.263 INFO:teuthology.orchestra.run.smithi033.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-09-16T23:45:04.263 INFO:teuthology.orchestra.run.smithi033.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-09-16T23:45:04.264 INFO:teuthology.orchestra.run.smithi033.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-16T23:45:04.264 INFO:teuthology.orchestra.run.smithi033.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-16T23:45:04.264 INFO:teuthology.orchestra.run.smithi033.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-16T23:45:04.264 INFO:teuthology.orchestra.run.smithi033.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-16T23:45:04.264 INFO:teuthology.orchestra.run.smithi033.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-09-16T23:45:04.264 INFO:teuthology.orchestra.run.smithi033.stdout: xmlstarlet zip 2024-09-16T23:45:04.264 INFO:teuthology.orchestra.run.smithi033.stdout:Suggested packages: 2024-09-16T23:45:04.264 INFO:teuthology.orchestra.run.smithi033.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-09-16T23:45:04.265 INFO:teuthology.orchestra.run.smithi033.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-09-16T23:45:04.265 INFO:teuthology.orchestra.run.smithi033.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-09-16T23:45:04.265 INFO:teuthology.orchestra.run.smithi033.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-09-16T23:45:04.265 INFO:teuthology.orchestra.run.smithi033.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-09-16T23:45:04.265 INFO:teuthology.orchestra.run.smithi033.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-09-16T23:45:04.265 INFO:teuthology.orchestra.run.smithi033.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-09-16T23:45:04.265 INFO:teuthology.orchestra.run.smithi033.stdout:Recommended packages: 2024-09-16T23:45:04.265 INFO:teuthology.orchestra.run.smithi033.stdout: btrfs-tools 2024-09-16T23:45:04.307 INFO:teuthology.orchestra.run.smithi103.stdout:Building dependency tree... 2024-09-16T23:45:04.307 INFO:teuthology.orchestra.run.smithi103.stdout:Reading state information... 2024-09-16T23:45:04.344 INFO:teuthology.orchestra.run.smithi089.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T23:45:04.345 INFO:teuthology.orchestra.run.smithi089.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T23:45:04.345 INFO:teuthology.orchestra.run.smithi089.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T23:45:04.345 INFO:teuthology.orchestra.run.smithi089.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T23:45:04.345 INFO:teuthology.orchestra.run.smithi089.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-16T23:45:04.345 INFO:teuthology.orchestra.run.smithi089.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-16T23:45:04.345 INFO:teuthology.orchestra.run.smithi089.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T23:45:04.346 INFO:teuthology.orchestra.run.smithi089.stdout:The following additional packages will be installed: 2024-09-16T23:45:04.346 INFO:teuthology.orchestra.run.smithi089.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-09-16T23:45:04.346 INFO:teuthology.orchestra.run.smithi089.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-09-16T23:45:04.346 INFO:teuthology.orchestra.run.smithi089.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-09-16T23:45:04.346 INFO:teuthology.orchestra.run.smithi089.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-09-16T23:45:04.347 INFO:teuthology.orchestra.run.smithi089.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-09-16T23:45:04.348 INFO:teuthology.orchestra.run.smithi089.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-09-16T23:45:04.348 INFO:teuthology.orchestra.run.smithi089.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-09-16T23:45:04.348 INFO:teuthology.orchestra.run.smithi089.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-09-16T23:45:04.348 INFO:teuthology.orchestra.run.smithi089.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-09-16T23:45:04.348 INFO:teuthology.orchestra.run.smithi089.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-16T23:45:04.348 INFO:teuthology.orchestra.run.smithi089.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-16T23:45:04.348 INFO:teuthology.orchestra.run.smithi089.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-16T23:45:04.348 INFO:teuthology.orchestra.run.smithi089.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-16T23:45:04.348 INFO:teuthology.orchestra.run.smithi089.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-16T23:45:04.348 INFO:teuthology.orchestra.run.smithi089.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-16T23:45:04.348 INFO:teuthology.orchestra.run.smithi089.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-16T23:45:04.348 INFO:teuthology.orchestra.run.smithi089.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-09-16T23:45:04.349 INFO:teuthology.orchestra.run.smithi089.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-09-16T23:45:04.349 INFO:teuthology.orchestra.run.smithi089.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-16T23:45:04.349 INFO:teuthology.orchestra.run.smithi089.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-16T23:45:04.349 INFO:teuthology.orchestra.run.smithi089.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-16T23:45:04.349 INFO:teuthology.orchestra.run.smithi089.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-16T23:45:04.349 INFO:teuthology.orchestra.run.smithi089.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-09-16T23:45:04.349 INFO:teuthology.orchestra.run.smithi089.stdout: xmlstarlet zip 2024-09-16T23:45:04.350 INFO:teuthology.orchestra.run.smithi089.stdout:Suggested packages: 2024-09-16T23:45:04.350 INFO:teuthology.orchestra.run.smithi089.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-09-16T23:45:04.350 INFO:teuthology.orchestra.run.smithi089.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-09-16T23:45:04.350 INFO:teuthology.orchestra.run.smithi089.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-09-16T23:45:04.350 INFO:teuthology.orchestra.run.smithi089.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-09-16T23:45:04.350 INFO:teuthology.orchestra.run.smithi089.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-09-16T23:45:04.350 INFO:teuthology.orchestra.run.smithi089.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-09-16T23:45:04.350 INFO:teuthology.orchestra.run.smithi089.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-09-16T23:45:04.350 INFO:teuthology.orchestra.run.smithi089.stdout:Recommended packages: 2024-09-16T23:45:04.350 INFO:teuthology.orchestra.run.smithi089.stdout: btrfs-tools 2024-09-16T23:45:04.370 INFO:teuthology.orchestra.run.smithi033.stdout:The following NEW packages will be installed: 2024-09-16T23:45:04.370 INFO:teuthology.orchestra.run.smithi033.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-09-16T23:45:04.370 INFO:teuthology.orchestra.run.smithi033.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-09-16T23:45:04.370 INFO:teuthology.orchestra.run.smithi033.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-09-16T23:45:04.370 INFO:teuthology.orchestra.run.smithi033.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-09-16T23:45:04.370 INFO:teuthology.orchestra.run.smithi033.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-09-16T23:45:04.370 INFO:teuthology.orchestra.run.smithi033.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-09-16T23:45:04.372 INFO:teuthology.orchestra.run.smithi033.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-09-16T23:45:04.372 INFO:teuthology.orchestra.run.smithi033.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-09-16T23:45:04.372 INFO:teuthology.orchestra.run.smithi033.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-09-16T23:45:04.372 INFO:teuthology.orchestra.run.smithi033.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-09-16T23:45:04.372 INFO:teuthology.orchestra.run.smithi033.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-09-16T23:45:04.372 INFO:teuthology.orchestra.run.smithi033.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-16T23:45:04.372 INFO:teuthology.orchestra.run.smithi033.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-16T23:45:04.372 INFO:teuthology.orchestra.run.smithi033.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-16T23:45:04.373 INFO:teuthology.orchestra.run.smithi033.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-16T23:45:04.373 INFO:teuthology.orchestra.run.smithi033.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-16T23:45:04.373 INFO:teuthology.orchestra.run.smithi033.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-16T23:45:04.373 INFO:teuthology.orchestra.run.smithi033.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-16T23:45:04.373 INFO:teuthology.orchestra.run.smithi033.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-09-16T23:45:04.373 INFO:teuthology.orchestra.run.smithi033.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-09-16T23:45:04.373 INFO:teuthology.orchestra.run.smithi033.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-09-16T23:45:04.373 INFO:teuthology.orchestra.run.smithi033.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-09-16T23:45:04.373 INFO:teuthology.orchestra.run.smithi033.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-09-16T23:45:04.373 INFO:teuthology.orchestra.run.smithi033.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-09-16T23:45:04.373 INFO:teuthology.orchestra.run.smithi033.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-09-16T23:45:04.373 INFO:teuthology.orchestra.run.smithi033.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-09-16T23:45:04.454 INFO:teuthology.orchestra.run.smithi089.stdout:The following NEW packages will be installed: 2024-09-16T23:45:04.454 INFO:teuthology.orchestra.run.smithi089.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-09-16T23:45:04.454 INFO:teuthology.orchestra.run.smithi089.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-09-16T23:45:04.454 INFO:teuthology.orchestra.run.smithi089.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-09-16T23:45:04.454 INFO:teuthology.orchestra.run.smithi089.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-09-16T23:45:04.454 INFO:teuthology.orchestra.run.smithi089.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-09-16T23:45:04.454 INFO:teuthology.orchestra.run.smithi089.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-09-16T23:45:04.455 INFO:teuthology.orchestra.run.smithi089.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-09-16T23:45:04.455 INFO:teuthology.orchestra.run.smithi089.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-09-16T23:45:04.455 INFO:teuthology.orchestra.run.smithi089.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-09-16T23:45:04.455 INFO:teuthology.orchestra.run.smithi089.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-09-16T23:45:04.456 INFO:teuthology.orchestra.run.smithi089.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-09-16T23:45:04.456 INFO:teuthology.orchestra.run.smithi089.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-16T23:45:04.456 INFO:teuthology.orchestra.run.smithi089.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-16T23:45:04.456 INFO:teuthology.orchestra.run.smithi089.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-16T23:45:04.456 INFO:teuthology.orchestra.run.smithi089.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-16T23:45:04.456 INFO:teuthology.orchestra.run.smithi089.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-16T23:45:04.456 INFO:teuthology.orchestra.run.smithi089.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-16T23:45:04.456 INFO:teuthology.orchestra.run.smithi089.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-16T23:45:04.456 INFO:teuthology.orchestra.run.smithi089.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-09-16T23:45:04.456 INFO:teuthology.orchestra.run.smithi089.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-09-16T23:45:04.456 INFO:teuthology.orchestra.run.smithi089.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-09-16T23:45:04.456 INFO:teuthology.orchestra.run.smithi089.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-09-16T23:45:04.456 INFO:teuthology.orchestra.run.smithi089.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-09-16T23:45:04.456 INFO:teuthology.orchestra.run.smithi089.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-09-16T23:45:04.457 INFO:teuthology.orchestra.run.smithi089.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-09-16T23:45:04.457 INFO:teuthology.orchestra.run.smithi089.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-09-16T23:45:04.503 INFO:teuthology.orchestra.run.smithi103.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T23:45:04.503 INFO:teuthology.orchestra.run.smithi103.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T23:45:04.503 INFO:teuthology.orchestra.run.smithi103.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T23:45:04.503 INFO:teuthology.orchestra.run.smithi103.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T23:45:04.504 INFO:teuthology.orchestra.run.smithi103.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-16T23:45:04.504 INFO:teuthology.orchestra.run.smithi103.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-16T23:45:04.504 INFO:teuthology.orchestra.run.smithi103.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T23:45:04.506 INFO:teuthology.orchestra.run.smithi103.stdout:The following additional packages will be installed: 2024-09-16T23:45:04.506 INFO:teuthology.orchestra.run.smithi103.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-09-16T23:45:04.506 INFO:teuthology.orchestra.run.smithi103.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-09-16T23:45:04.506 INFO:teuthology.orchestra.run.smithi103.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-09-16T23:45:04.506 INFO:teuthology.orchestra.run.smithi103.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-09-16T23:45:04.506 INFO:teuthology.orchestra.run.smithi103.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-09-16T23:45:04.506 INFO:teuthology.orchestra.run.smithi103.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-09-16T23:45:04.506 INFO:teuthology.orchestra.run.smithi103.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-09-16T23:45:04.506 INFO:teuthology.orchestra.run.smithi103.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-09-16T23:45:04.506 INFO:teuthology.orchestra.run.smithi103.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-09-16T23:45:04.507 INFO:teuthology.orchestra.run.smithi103.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-16T23:45:04.507 INFO:teuthology.orchestra.run.smithi103.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-16T23:45:04.507 INFO:teuthology.orchestra.run.smithi103.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-16T23:45:04.507 INFO:teuthology.orchestra.run.smithi103.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-16T23:45:04.507 INFO:teuthology.orchestra.run.smithi103.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-16T23:45:04.507 INFO:teuthology.orchestra.run.smithi103.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-16T23:45:04.507 INFO:teuthology.orchestra.run.smithi103.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-16T23:45:04.507 INFO:teuthology.orchestra.run.smithi103.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-09-16T23:45:04.507 INFO:teuthology.orchestra.run.smithi103.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-09-16T23:45:04.507 INFO:teuthology.orchestra.run.smithi103.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-16T23:45:04.507 INFO:teuthology.orchestra.run.smithi103.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-16T23:45:04.507 INFO:teuthology.orchestra.run.smithi103.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-16T23:45:04.507 INFO:teuthology.orchestra.run.smithi103.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-16T23:45:04.507 INFO:teuthology.orchestra.run.smithi103.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-09-16T23:45:04.508 INFO:teuthology.orchestra.run.smithi103.stdout: xmlstarlet zip 2024-09-16T23:45:04.508 INFO:teuthology.orchestra.run.smithi103.stdout:Suggested packages: 2024-09-16T23:45:04.508 INFO:teuthology.orchestra.run.smithi103.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-09-16T23:45:04.508 INFO:teuthology.orchestra.run.smithi103.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-09-16T23:45:04.508 INFO:teuthology.orchestra.run.smithi103.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-09-16T23:45:04.508 INFO:teuthology.orchestra.run.smithi103.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-09-16T23:45:04.508 INFO:teuthology.orchestra.run.smithi103.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-09-16T23:45:04.508 INFO:teuthology.orchestra.run.smithi103.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-09-16T23:45:04.508 INFO:teuthology.orchestra.run.smithi103.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-09-16T23:45:04.509 INFO:teuthology.orchestra.run.smithi103.stdout:Recommended packages: 2024-09-16T23:45:04.509 INFO:teuthology.orchestra.run.smithi103.stdout: btrfs-tools 2024-09-16T23:45:04.513 INFO:teuthology.orchestra.run.smithi089.stdout:0 upgraded, 118 newly installed, 0 to remove and 331 not upgraded. 2024-09-16T23:45:04.513 INFO:teuthology.orchestra.run.smithi089.stdout:Need to get 181 MB of archives. 2024-09-16T23:45:04.513 INFO:teuthology.orchestra.run.smithi089.stdout:After this operation, 829 MB of additional disk space will be used. 2024-09-16T23:45:04.513 INFO:teuthology.orchestra.run.smithi089.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-09-16T23:45:04.531 INFO:teuthology.orchestra.run.smithi033.stdout:0 upgraded, 118 newly installed, 0 to remove and 331 not upgraded. 2024-09-16T23:45:04.531 INFO:teuthology.orchestra.run.smithi033.stdout:Need to get 181 MB of archives. 2024-09-16T23:45:04.531 INFO:teuthology.orchestra.run.smithi033.stdout:After this operation, 829 MB of additional disk space will be used. 2024-09-16T23:45:04.531 INFO:teuthology.orchestra.run.smithi033.stdout:Get:1 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.1.1-330-gc2ddf972-1jammy [3,591 kB] 2024-09-16T23:45:04.561 INFO:teuthology.orchestra.run.smithi033.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-09-16T23:45:04.595 INFO:teuthology.orchestra.run.smithi089.stdout:Get:2 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.1.1-330-gc2ddf972-1jammy [3,591 kB] 2024-09-16T23:45:04.604 INFO:teuthology.orchestra.run.smithi089.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-09-16T23:45:04.606 INFO:teuthology.orchestra.run.smithi089.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-09-16T23:45:04.611 INFO:teuthology.orchestra.run.smithi103.stdout:The following NEW packages will be installed: 2024-09-16T23:45:04.611 INFO:teuthology.orchestra.run.smithi103.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-09-16T23:45:04.611 INFO:teuthology.orchestra.run.smithi103.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-09-16T23:45:04.611 INFO:teuthology.orchestra.run.smithi103.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-09-16T23:45:04.612 INFO:teuthology.orchestra.run.smithi103.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-09-16T23:45:04.613 INFO:teuthology.orchestra.run.smithi103.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-09-16T23:45:04.613 INFO:teuthology.orchestra.run.smithi103.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-09-16T23:45:04.613 INFO:teuthology.orchestra.run.smithi103.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-09-16T23:45:04.613 INFO:teuthology.orchestra.run.smithi103.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-09-16T23:45:04.613 INFO:teuthology.orchestra.run.smithi103.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-09-16T23:45:04.613 INFO:teuthology.orchestra.run.smithi103.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-09-16T23:45:04.613 INFO:teuthology.orchestra.run.smithi103.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-09-16T23:45:04.613 INFO:teuthology.orchestra.run.smithi103.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-16T23:45:04.613 INFO:teuthology.orchestra.run.smithi103.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-16T23:45:04.613 INFO:teuthology.orchestra.run.smithi103.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-16T23:45:04.613 INFO:teuthology.orchestra.run.smithi103.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-16T23:45:04.613 INFO:teuthology.orchestra.run.smithi103.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-16T23:45:04.614 INFO:teuthology.orchestra.run.smithi103.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-16T23:45:04.614 INFO:teuthology.orchestra.run.smithi103.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-16T23:45:04.614 INFO:teuthology.orchestra.run.smithi103.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-09-16T23:45:04.614 INFO:teuthology.orchestra.run.smithi103.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-09-16T23:45:04.614 INFO:teuthology.orchestra.run.smithi103.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-09-16T23:45:04.614 INFO:teuthology.orchestra.run.smithi103.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-09-16T23:45:04.614 INFO:teuthology.orchestra.run.smithi103.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-09-16T23:45:04.614 INFO:teuthology.orchestra.run.smithi103.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-09-16T23:45:04.614 INFO:teuthology.orchestra.run.smithi103.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-09-16T23:45:04.614 INFO:teuthology.orchestra.run.smithi103.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-09-16T23:45:04.623 INFO:teuthology.orchestra.run.smithi089.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-09-16T23:45:04.684 INFO:teuthology.orchestra.run.smithi089.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-09-16T23:45:04.689 INFO:teuthology.orchestra.run.smithi089.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-09-16T23:45:04.701 INFO:teuthology.orchestra.run.smithi089.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-09-16T23:45:04.705 INFO:teuthology.orchestra.run.smithi089.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-09-16T23:45:04.705 INFO:teuthology.orchestra.run.smithi089.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-09-16T23:45:04.706 INFO:teuthology.orchestra.run.smithi089.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-09-16T23:45:04.714 INFO:teuthology.orchestra.run.smithi089.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-09-16T23:45:04.716 INFO:teuthology.orchestra.run.smithi089.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-09-16T23:45:04.719 INFO:teuthology.orchestra.run.smithi089.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-09-16T23:45:04.720 INFO:teuthology.orchestra.run.smithi089.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-09-16T23:45:04.723 INFO:teuthology.orchestra.run.smithi089.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-09-16T23:45:04.725 INFO:teuthology.orchestra.run.smithi089.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-09-16T23:45:04.733 INFO:teuthology.orchestra.run.smithi033.stdout:Get:3 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.1.1-330-gc2ddf972-1jammy [3,242 kB] 2024-09-16T23:45:04.738 INFO:teuthology.orchestra.run.smithi089.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-09-16T23:45:04.740 INFO:teuthology.orchestra.run.smithi089.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-09-16T23:45:04.740 INFO:teuthology.orchestra.run.smithi089.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-09-16T23:45:04.741 INFO:teuthology.orchestra.run.smithi089.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-09-16T23:45:04.742 INFO:teuthology.orchestra.run.smithi089.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-09-16T23:45:04.742 INFO:teuthology.orchestra.run.smithi089.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-09-16T23:45:04.743 INFO:teuthology.orchestra.run.smithi089.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-09-16T23:45:04.743 INFO:teuthology.orchestra.run.smithi089.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-09-16T23:45:04.757 INFO:teuthology.orchestra.run.smithi089.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-09-16T23:45:04.757 INFO:teuthology.orchestra.run.smithi089.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-09-16T23:45:04.774 INFO:teuthology.orchestra.run.smithi089.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-09-16T23:45:04.778 INFO:teuthology.orchestra.run.smithi089.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-09-16T23:45:04.779 INFO:teuthology.orchestra.run.smithi089.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-09-16T23:45:04.779 INFO:teuthology.orchestra.run.smithi089.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-09-16T23:45:04.780 INFO:teuthology.orchestra.run.smithi089.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-09-16T23:45:04.781 INFO:teuthology.orchestra.run.smithi089.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-09-16T23:45:04.782 INFO:teuthology.orchestra.run.smithi089.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-09-16T23:45:04.783 INFO:teuthology.orchestra.run.smithi089.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-webob all 1:1.8.6-1.1ubuntu0.1 [86.7 kB] 2024-09-16T23:45:04.797 INFO:teuthology.orchestra.run.smithi089.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-09-16T23:45:04.798 INFO:teuthology.orchestra.run.smithi089.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-09-16T23:45:04.802 INFO:teuthology.orchestra.run.smithi103.stdout:0 upgraded, 118 newly installed, 0 to remove and 331 not upgraded. 2024-09-16T23:45:04.803 INFO:teuthology.orchestra.run.smithi103.stdout:Need to get 181 MB of archives. 2024-09-16T23:45:04.803 INFO:teuthology.orchestra.run.smithi103.stdout:After this operation, 829 MB of additional disk space will be used. 2024-09-16T23:45:04.803 INFO:teuthology.orchestra.run.smithi103.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-09-16T23:45:04.809 INFO:teuthology.orchestra.run.smithi033.stdout:Get:4 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.1.1-330-gc2ddf972-1jammy [719 kB] 2024-09-16T23:45:04.814 INFO:teuthology.orchestra.run.smithi089.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-09-16T23:45:04.822 INFO:teuthology.orchestra.run.smithi089.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-09-16T23:45:04.822 INFO:teuthology.orchestra.run.smithi089.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-09-16T23:45:04.823 INFO:teuthology.orchestra.run.smithi089.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-09-16T23:45:04.824 INFO:teuthology.orchestra.run.smithi089.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-09-16T23:45:04.826 INFO:teuthology.orchestra.run.smithi089.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-09-16T23:45:04.829 INFO:teuthology.orchestra.run.smithi089.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-idna all 3.3-1ubuntu0.1 [52.1 kB] 2024-09-16T23:45:04.830 INFO:teuthology.orchestra.run.smithi089.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-09-16T23:45:04.835 INFO:teuthology.orchestra.run.smithi089.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-09-16T23:45:04.837 INFO:teuthology.orchestra.run.smithi089.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.2 [181 kB] 2024-09-16T23:45:04.850 INFO:teuthology.orchestra.run.smithi033.stdout:Get:5 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.1.1-330-gc2ddf972-1jammy [356 kB] 2024-09-16T23:45:04.853 INFO:teuthology.orchestra.run.smithi089.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-09-16T23:45:04.854 INFO:teuthology.orchestra.run.smithi089.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-09-16T23:45:04.855 INFO:teuthology.orchestra.run.smithi089.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-09-16T23:45:04.859 INFO:teuthology.orchestra.run.smithi089.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-09-16T23:45:04.865 INFO:teuthology.orchestra.run.smithi033.stdout:Get:6 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.1.1-330-gc2ddf972-1jammy [32.8 kB] 2024-09-16T23:45:04.887 INFO:teuthology.orchestra.run.smithi033.stdout:Get:7 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.1.1-330-gc2ddf972-1jammy [180 kB] 2024-09-16T23:45:04.924 INFO:teuthology.orchestra.run.smithi089.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-09-16T23:45:04.924 INFO:teuthology.orchestra.run.smithi089.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.2 [108 kB] 2024-09-16T23:45:04.925 INFO:teuthology.orchestra.run.smithi089.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-09-16T23:45:04.926 INFO:teuthology.orchestra.run.smithi089.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-09-16T23:45:04.927 INFO:teuthology.orchestra.run.smithi089.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-09-16T23:45:04.940 INFO:teuthology.orchestra.run.smithi033.stdout:Get:8 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.1.1-330-gc2ddf972-1jammy [67.8 kB] 2024-09-16T23:45:04.944 INFO:teuthology.orchestra.run.smithi089.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-09-16T23:45:04.946 INFO:teuthology.orchestra.run.smithi089.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-09-16T23:45:04.946 INFO:teuthology.orchestra.run.smithi089.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-09-16T23:45:04.961 INFO:teuthology.orchestra.run.smithi089.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-09-16T23:45:04.961 INFO:teuthology.orchestra.run.smithi089.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-09-16T23:45:04.961 INFO:teuthology.orchestra.run.smithi089.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-09-16T23:45:04.962 INFO:teuthology.orchestra.run.smithi089.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-09-16T23:45:04.962 INFO:teuthology.orchestra.run.smithi089.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-09-16T23:45:04.962 INFO:teuthology.orchestra.run.smithi089.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-09-16T23:45:04.971 INFO:teuthology.orchestra.run.smithi033.stdout:Get:9 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.1.1-330-gc2ddf972-1jammy [333 kB] 2024-09-16T23:45:04.977 INFO:teuthology.orchestra.run.smithi089.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-09-16T23:45:04.977 INFO:teuthology.orchestra.run.smithi089.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-09-16T23:45:04.980 INFO:teuthology.orchestra.run.smithi089.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-09-16T23:45:04.984 INFO:teuthology.orchestra.run.smithi033.stdout:Get:10 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.1.1-330-gc2ddf972-1jammy [6,875 kB] 2024-09-16T23:45:04.984 INFO:teuthology.orchestra.run.smithi033.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-09-16T23:45:04.994 INFO:teuthology.orchestra.run.smithi089.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-09-16T23:45:04.995 INFO:teuthology.orchestra.run.smithi089.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-09-16T23:45:04.995 INFO:teuthology.orchestra.run.smithi089.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-09-16T23:45:04.997 INFO:teuthology.orchestra.run.smithi033.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-09-16T23:45:04.998 INFO:teuthology.orchestra.run.smithi089.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-09-16T23:45:05.001 INFO:teuthology.orchestra.run.smithi089.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-09-16T23:45:05.002 INFO:teuthology.orchestra.run.smithi089.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-09-16T23:45:05.002 INFO:teuthology.orchestra.run.smithi089.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.3 [474 kB] 2024-09-16T23:45:05.011 INFO:teuthology.orchestra.run.smithi089.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-09-16T23:45:05.012 INFO:teuthology.orchestra.run.smithi089.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-09-16T23:45:05.014 INFO:teuthology.orchestra.run.smithi089.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-09-16T23:45:05.028 INFO:teuthology.orchestra.run.smithi089.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-09-16T23:45:05.029 INFO:teuthology.orchestra.run.smithi089.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-09-16T23:45:05.029 INFO:teuthology.orchestra.run.smithi089.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-09-16T23:45:05.030 INFO:teuthology.orchestra.run.smithi089.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-09-16T23:45:05.031 INFO:teuthology.orchestra.run.smithi089.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-09-16T23:45:05.037 INFO:teuthology.orchestra.run.smithi089.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-09-16T23:45:05.037 INFO:teuthology.orchestra.run.smithi089.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-09-16T23:45:05.045 INFO:teuthology.orchestra.run.smithi089.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-09-16T23:45:05.047 INFO:teuthology.orchestra.run.smithi089.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-09-16T23:45:05.047 INFO:teuthology.orchestra.run.smithi089.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-09-16T23:45:05.078 INFO:teuthology.orchestra.run.smithi033.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-09-16T23:45:05.131 INFO:teuthology.orchestra.run.smithi033.stdout:Get:14 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.1.1-330-gc2ddf972-1jammy [112 kB] 2024-09-16T23:45:05.157 INFO:teuthology.orchestra.run.smithi033.stdout:Get:15 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.1.1-330-gc2ddf972-1jammy [472 kB] 2024-09-16T23:45:05.175 INFO:teuthology.orchestra.run.smithi033.stdout:Get:16 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.1.1-330-gc2ddf972-1jammy [25.9 MB] 2024-09-16T23:45:05.226 INFO:teuthology.orchestra.run.smithi103.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-09-16T23:45:05.239 INFO:teuthology.orchestra.run.smithi103.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-09-16T23:45:05.307 INFO:teuthology.orchestra.run.smithi033.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-09-16T23:45:05.318 INFO:teuthology.orchestra.run.smithi033.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-09-16T23:45:05.320 INFO:teuthology.orchestra.run.smithi103.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-09-16T23:45:05.347 INFO:teuthology.orchestra.run.smithi033.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-09-16T23:45:05.356 INFO:teuthology.orchestra.run.smithi033.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-09-16T23:45:05.358 INFO:teuthology.orchestra.run.smithi033.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-09-16T23:45:05.359 INFO:teuthology.orchestra.run.smithi033.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-09-16T23:45:05.377 INFO:teuthology.orchestra.run.smithi033.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-09-16T23:45:05.381 INFO:teuthology.orchestra.run.smithi033.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-09-16T23:45:05.386 INFO:teuthology.orchestra.run.smithi033.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-09-16T23:45:05.389 INFO:teuthology.orchestra.run.smithi033.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-09-16T23:45:05.471 INFO:teuthology.orchestra.run.smithi033.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-09-16T23:45:05.475 INFO:teuthology.orchestra.run.smithi033.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-09-16T23:45:05.480 INFO:teuthology.orchestra.run.smithi033.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-09-16T23:45:05.484 INFO:teuthology.orchestra.run.smithi033.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-09-16T23:45:05.485 INFO:teuthology.orchestra.run.smithi033.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-09-16T23:45:05.486 INFO:teuthology.orchestra.run.smithi033.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-09-16T23:45:05.489 INFO:teuthology.orchestra.run.smithi033.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-09-16T23:45:05.490 INFO:teuthology.orchestra.run.smithi033.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-09-16T23:45:05.491 INFO:teuthology.orchestra.run.smithi033.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-09-16T23:45:05.550 INFO:teuthology.orchestra.run.smithi103.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-09-16T23:45:05.552 INFO:teuthology.orchestra.run.smithi033.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-09-16T23:45:05.561 INFO:teuthology.orchestra.run.smithi103.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-09-16T23:45:05.573 INFO:teuthology.orchestra.run.smithi033.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-09-16T23:45:05.574 INFO:teuthology.orchestra.run.smithi033.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-09-16T23:45:05.575 INFO:teuthology.orchestra.run.smithi033.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-09-16T23:45:05.581 INFO:teuthology.orchestra.run.smithi033.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-09-16T23:45:05.582 INFO:teuthology.orchestra.run.smithi033.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-09-16T23:45:05.590 INFO:teuthology.orchestra.run.smithi103.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-09-16T23:45:05.599 INFO:teuthology.orchestra.run.smithi103.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-09-16T23:45:05.600 INFO:teuthology.orchestra.run.smithi103.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-09-16T23:45:05.602 INFO:teuthology.orchestra.run.smithi103.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-09-16T23:45:05.619 INFO:teuthology.orchestra.run.smithi103.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-09-16T23:45:05.625 INFO:teuthology.orchestra.run.smithi103.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-09-16T23:45:05.629 INFO:teuthology.orchestra.run.smithi103.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-09-16T23:45:05.633 INFO:teuthology.orchestra.run.smithi103.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-09-16T23:45:05.635 INFO:teuthology.orchestra.run.smithi033.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-09-16T23:45:05.635 INFO:teuthology.orchestra.run.smithi033.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-09-16T23:45:05.637 INFO:teuthology.orchestra.run.smithi033.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-09-16T23:45:05.638 INFO:teuthology.orchestra.run.smithi033.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-09-16T23:45:05.713 INFO:teuthology.orchestra.run.smithi103.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-09-16T23:45:05.715 INFO:teuthology.orchestra.run.smithi033.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-webob all 1:1.8.6-1.1ubuntu0.1 [86.7 kB] 2024-09-16T23:45:05.717 INFO:teuthology.orchestra.run.smithi103.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-09-16T23:45:05.718 INFO:teuthology.orchestra.run.smithi033.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-09-16T23:45:05.719 INFO:teuthology.orchestra.run.smithi033.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-09-16T23:45:05.720 INFO:teuthology.orchestra.run.smithi033.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-09-16T23:45:05.722 INFO:teuthology.orchestra.run.smithi103.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-09-16T23:45:05.726 INFO:teuthology.orchestra.run.smithi103.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-09-16T23:45:05.727 INFO:teuthology.orchestra.run.smithi103.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-09-16T23:45:05.728 INFO:teuthology.orchestra.run.smithi103.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-09-16T23:45:05.729 INFO:teuthology.orchestra.run.smithi103.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-09-16T23:45:05.730 INFO:teuthology.orchestra.run.smithi103.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-09-16T23:45:05.731 INFO:teuthology.orchestra.run.smithi103.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-09-16T23:45:05.732 INFO:teuthology.orchestra.run.smithi033.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-09-16T23:45:05.796 INFO:teuthology.orchestra.run.smithi103.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-09-16T23:45:05.796 INFO:teuthology.orchestra.run.smithi033.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-09-16T23:45:05.797 INFO:teuthology.orchestra.run.smithi033.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-09-16T23:45:05.799 INFO:teuthology.orchestra.run.smithi033.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-09-16T23:45:05.802 INFO:teuthology.orchestra.run.smithi033.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-09-16T23:45:05.806 INFO:teuthology.orchestra.run.smithi033.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-idna all 3.3-1ubuntu0.1 [52.1 kB] 2024-09-16T23:45:05.812 INFO:teuthology.orchestra.run.smithi103.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-09-16T23:45:05.813 INFO:teuthology.orchestra.run.smithi103.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-09-16T23:45:05.816 INFO:teuthology.orchestra.run.smithi103.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-09-16T23:45:05.819 INFO:teuthology.orchestra.run.smithi103.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-09-16T23:45:05.820 INFO:teuthology.orchestra.run.smithi103.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-09-16T23:45:05.878 INFO:teuthology.orchestra.run.smithi033.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-09-16T23:45:05.878 INFO:teuthology.orchestra.run.smithi103.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-09-16T23:45:05.879 INFO:teuthology.orchestra.run.smithi103.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-09-16T23:45:05.881 INFO:teuthology.orchestra.run.smithi033.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-09-16T23:45:05.881 INFO:teuthology.orchestra.run.smithi103.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-09-16T23:45:05.882 INFO:teuthology.orchestra.run.smithi103.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-09-16T23:45:05.882 INFO:teuthology.orchestra.run.smithi033.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.2 [181 kB] 2024-09-16T23:45:05.887 INFO:teuthology.orchestra.run.smithi033.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-09-16T23:45:05.889 INFO:teuthology.orchestra.run.smithi033.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-09-16T23:45:05.959 INFO:teuthology.orchestra.run.smithi103.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-webob all 1:1.8.6-1.1ubuntu0.1 [86.7 kB] 2024-09-16T23:45:05.959 INFO:teuthology.orchestra.run.smithi033.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-09-16T23:45:05.961 INFO:teuthology.orchestra.run.smithi103.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-09-16T23:45:05.963 INFO:teuthology.orchestra.run.smithi103.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-09-16T23:45:05.965 INFO:teuthology.orchestra.run.smithi103.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-09-16T23:45:05.976 INFO:teuthology.orchestra.run.smithi103.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-09-16T23:45:05.978 INFO:teuthology.orchestra.run.smithi103.stdout:Get:39 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.1.1-330-gc2ddf972-1jammy [3,591 kB] 2024-09-16T23:45:06.034 INFO:teuthology.orchestra.run.smithi033.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-09-16T23:45:06.041 INFO:teuthology.orchestra.run.smithi103.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-09-16T23:45:06.042 INFO:teuthology.orchestra.run.smithi103.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-09-16T23:45:06.044 INFO:teuthology.orchestra.run.smithi103.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-09-16T23:45:06.047 INFO:teuthology.orchestra.run.smithi103.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-09-16T23:45:06.051 INFO:teuthology.orchestra.run.smithi103.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-idna all 3.3-1ubuntu0.1 [52.1 kB] 2024-09-16T23:45:06.083 INFO:teuthology.orchestra.run.smithi033.stdout:Get:63 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.1.1-330-gc2ddf972-1jammy [5,145 kB] 2024-09-16T23:45:06.122 INFO:teuthology.orchestra.run.smithi103.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-09-16T23:45:06.125 INFO:teuthology.orchestra.run.smithi103.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-09-16T23:45:06.126 INFO:teuthology.orchestra.run.smithi103.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.2 [181 kB] 2024-09-16T23:45:06.131 INFO:teuthology.orchestra.run.smithi103.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-09-16T23:45:06.132 INFO:teuthology.orchestra.run.smithi103.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-09-16T23:45:06.166 INFO:teuthology.orchestra.run.smithi033.stdout:Get:64 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.1.1-330-gc2ddf972-1jammy [245 kB] 2024-09-16T23:45:06.175 INFO:teuthology.orchestra.run.smithi033.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-09-16T23:45:06.176 INFO:teuthology.orchestra.run.smithi033.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.2 [108 kB] 2024-09-16T23:45:06.178 INFO:teuthology.orchestra.run.smithi033.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-09-16T23:45:06.179 INFO:teuthology.orchestra.run.smithi033.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-09-16T23:45:06.181 INFO:teuthology.orchestra.run.smithi033.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-09-16T23:45:06.189 INFO:teuthology.orchestra.run.smithi033.stdout:Get:70 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.1.1-330-gc2ddf972-1jammy [124 kB] 2024-09-16T23:45:06.205 INFO:teuthology.orchestra.run.smithi103.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-09-16T23:45:06.209 INFO:teuthology.orchestra.run.smithi103.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-09-16T23:45:06.220 INFO:teuthology.orchestra.run.smithi033.stdout:Get:71 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.1.1-330-gc2ddf972-1jammy [1,555 kB] 2024-09-16T23:45:06.271 INFO:teuthology.orchestra.run.smithi033.stdout:Get:72 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.1.1-330-gc2ddf972-1jammy [6,143 kB] 2024-09-16T23:45:06.325 INFO:teuthology.orchestra.run.smithi033.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-09-16T23:45:06.330 INFO:teuthology.orchestra.run.smithi033.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-09-16T23:45:06.331 INFO:teuthology.orchestra.run.smithi033.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-09-16T23:45:06.371 INFO:teuthology.orchestra.run.smithi033.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-09-16T23:45:06.371 INFO:teuthology.orchestra.run.smithi033.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-09-16T23:45:06.373 INFO:teuthology.orchestra.run.smithi033.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-09-16T23:45:06.374 INFO:teuthology.orchestra.run.smithi033.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-09-16T23:45:06.374 INFO:teuthology.orchestra.run.smithi103.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-09-16T23:45:06.375 INFO:teuthology.orchestra.run.smithi033.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-09-16T23:45:06.376 INFO:teuthology.orchestra.run.smithi033.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-09-16T23:45:06.377 INFO:teuthology.orchestra.run.smithi103.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.2 [108 kB] 2024-09-16T23:45:06.377 INFO:teuthology.orchestra.run.smithi033.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-09-16T23:45:06.379 INFO:teuthology.orchestra.run.smithi103.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-09-16T23:45:06.380 INFO:teuthology.orchestra.run.smithi103.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-09-16T23:45:06.382 INFO:teuthology.orchestra.run.smithi103.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-09-16T23:45:06.399 INFO:teuthology.orchestra.run.smithi033.stdout:Get:83 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.1.1-330-gc2ddf972-1jammy [22.8 MB] 2024-09-16T23:45:06.418 INFO:teuthology.orchestra.run.smithi103.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-09-16T23:45:06.450 INFO:teuthology.orchestra.run.smithi103.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-09-16T23:45:06.451 INFO:teuthology.orchestra.run.smithi103.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-09-16T23:45:06.454 INFO:teuthology.orchestra.run.smithi033.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-09-16T23:45:06.461 INFO:teuthology.orchestra.run.smithi033.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-09-16T23:45:06.480 INFO:teuthology.orchestra.run.smithi103.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-09-16T23:45:06.480 INFO:teuthology.orchestra.run.smithi103.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-09-16T23:45:06.535 INFO:teuthology.orchestra.run.smithi033.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-09-16T23:45:06.539 INFO:teuthology.orchestra.run.smithi033.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-09-16T23:45:06.541 INFO:teuthology.orchestra.run.smithi033.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-09-16T23:45:06.543 INFO:teuthology.orchestra.run.smithi103.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-09-16T23:45:06.544 INFO:teuthology.orchestra.run.smithi103.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-09-16T23:45:06.545 INFO:teuthology.orchestra.run.smithi103.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-09-16T23:45:06.546 INFO:teuthology.orchestra.run.smithi103.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-09-16T23:45:06.547 INFO:teuthology.orchestra.run.smithi103.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-09-16T23:45:06.548 INFO:teuthology.orchestra.run.smithi103.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-09-16T23:45:06.550 INFO:teuthology.orchestra.run.smithi033.stdout:Get:89 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-09-16T23:45:06.554 INFO:teuthology.orchestra.run.smithi103.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-09-16T23:45:06.556 INFO:teuthology.orchestra.run.smithi033.stdout:Get:90 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-09-16T23:45:06.559 INFO:teuthology.orchestra.run.smithi033.stdout:Get:91 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-09-16T23:45:06.560 INFO:teuthology.orchestra.run.smithi033.stdout:Get:92 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.3 [474 kB] 2024-09-16T23:45:06.572 INFO:teuthology.orchestra.run.smithi033.stdout:Get:93 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-09-16T23:45:06.617 INFO:teuthology.orchestra.run.smithi033.stdout:Get:94 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-09-16T23:45:06.624 INFO:teuthology.orchestra.run.smithi033.stdout:Get:95 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-09-16T23:45:06.625 INFO:teuthology.orchestra.run.smithi103.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-09-16T23:45:06.628 INFO:teuthology.orchestra.run.smithi103.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-09-16T23:45:06.630 INFO:teuthology.orchestra.run.smithi103.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-09-16T23:45:06.698 INFO:teuthology.orchestra.run.smithi033.stdout:Get:96 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-09-16T23:45:06.700 INFO:teuthology.orchestra.run.smithi033.stdout:Get:97 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-09-16T23:45:06.701 INFO:teuthology.orchestra.run.smithi033.stdout:Get:98 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-09-16T23:45:06.705 INFO:teuthology.orchestra.run.smithi033.stdout:Get:99 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-09-16T23:45:06.706 INFO:teuthology.orchestra.run.smithi103.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-09-16T23:45:06.707 INFO:teuthology.orchestra.run.smithi033.stdout:Get:100 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-09-16T23:45:06.713 INFO:teuthology.orchestra.run.smithi103.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-09-16T23:45:06.715 INFO:teuthology.orchestra.run.smithi103.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-09-16T23:45:06.717 INFO:teuthology.orchestra.run.smithi103.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.3 [474 kB] 2024-09-16T23:45:06.725 INFO:teuthology.orchestra.run.smithi033.stdout:Get:101 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-09-16T23:45:06.726 INFO:teuthology.orchestra.run.smithi033.stdout:Get:102 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-09-16T23:45:06.727 INFO:teuthology.orchestra.run.smithi033.stdout:Get:103 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-09-16T23:45:06.728 INFO:teuthology.orchestra.run.smithi103.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-09-16T23:45:06.729 INFO:teuthology.orchestra.run.smithi103.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-09-16T23:45:06.737 INFO:teuthology.orchestra.run.smithi103.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-09-16T23:45:06.779 INFO:teuthology.orchestra.run.smithi033.stdout:Get:104 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-09-16T23:45:06.781 INFO:teuthology.orchestra.run.smithi033.stdout:Get:105 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-09-16T23:45:06.788 INFO:teuthology.orchestra.run.smithi103.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-09-16T23:45:06.789 INFO:teuthology.orchestra.run.smithi103.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-09-16T23:45:06.790 INFO:teuthology.orchestra.run.smithi103.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-09-16T23:45:06.870 INFO:teuthology.orchestra.run.smithi103.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-09-16T23:45:06.872 INFO:teuthology.orchestra.run.smithi103.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-09-16T23:45:06.891 INFO:teuthology.orchestra.run.smithi103.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-09-16T23:45:06.892 INFO:teuthology.orchestra.run.smithi103.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-09-16T23:45:06.893 INFO:teuthology.orchestra.run.smithi103.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-09-16T23:45:06.899 INFO:teuthology.orchestra.run.smithi103.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-09-16T23:45:06.900 INFO:teuthology.orchestra.run.smithi103.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-09-16T23:45:07.169 INFO:teuthology.orchestra.run.smithi033.stdout:Get:106 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.1.1-330-gc2ddf972-1jammy [14.1 kB] 2024-09-16T23:45:07.169 INFO:teuthology.orchestra.run.smithi033.stdout:Get:107 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.1.1-330-gc2ddf972-1jammy [877 kB] 2024-09-16T23:45:07.185 INFO:teuthology.orchestra.run.smithi033.stdout:Get:108 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.1.1-330-gc2ddf972-1jammy [2,462 kB] 2024-09-16T23:45:07.261 INFO:teuthology.orchestra.run.smithi033.stdout:Get:109 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.1.1-330-gc2ddf972-1jammy [794 kB] 2024-09-16T23:45:07.333 INFO:teuthology.orchestra.run.smithi033.stdout:Get:110 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.1.1-330-gc2ddf972-1jammy [152 kB] 2024-09-16T23:45:07.347 INFO:teuthology.orchestra.run.smithi033.stdout:Get:111 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.1.1-330-gc2ddf972-1jammy [2,275 kB] 2024-09-16T23:45:07.393 INFO:teuthology.orchestra.run.smithi033.stdout:Get:112 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.1.1-330-gc2ddf972-1jammy [8,625 kB] 2024-09-16T23:45:07.621 INFO:teuthology.orchestra.run.smithi033.stdout:Get:113 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.1.1-330-gc2ddf972-1jammy [14.2 kB] 2024-09-16T23:45:07.641 INFO:teuthology.orchestra.run.smithi089.stdout:Get:89 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.1.1-330-gc2ddf972-1jammy [3,242 kB] 2024-09-16T23:45:07.699 INFO:teuthology.orchestra.run.smithi033.stdout:Get:114 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.1.1-330-gc2ddf972-1jammy [51.4 MB] 2024-09-16T23:45:09.457 INFO:teuthology.orchestra.run.smithi033.stdout:Get:115 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.1.1-330-gc2ddf972-1jammy [130 kB] 2024-09-16T23:45:09.459 INFO:teuthology.orchestra.run.smithi103.stdout:Get:89 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.1.1-330-gc2ddf972-1jammy [3,242 kB] 2024-09-16T23:45:09.460 INFO:teuthology.orchestra.run.smithi033.stdout:Get:116 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.1.1-330-gc2ddf972-1jammy [39.0 kB] 2024-09-16T23:45:09.461 INFO:teuthology.orchestra.run.smithi033.stdout:Get:117 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.1.1-330-gc2ddf972-1jammy [13.6 MB] 2024-09-16T23:45:09.721 INFO:teuthology.orchestra.run.smithi033.stdout:Get:118 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.1.1-330-gc2ddf972-1jammy [91.4 kB] 2024-09-16T23:45:09.743 INFO:teuthology.orchestra.run.smithi103.stdout:Get:90 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.1.1-330-gc2ddf972-1jammy [719 kB] 2024-09-16T23:45:09.757 INFO:teuthology.orchestra.run.smithi103.stdout:Get:91 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.1.1-330-gc2ddf972-1jammy [356 kB] 2024-09-16T23:45:09.764 INFO:teuthology.orchestra.run.smithi103.stdout:Get:92 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.1.1-330-gc2ddf972-1jammy [32.8 kB] 2024-09-16T23:45:09.765 INFO:teuthology.orchestra.run.smithi103.stdout:Get:93 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.1.1-330-gc2ddf972-1jammy [180 kB] 2024-09-16T23:45:09.769 INFO:teuthology.orchestra.run.smithi089.stdout:Get:90 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.1.1-330-gc2ddf972-1jammy [719 kB] 2024-09-16T23:45:09.769 INFO:teuthology.orchestra.run.smithi103.stdout:Get:94 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.1.1-330-gc2ddf972-1jammy [67.8 kB] 2024-09-16T23:45:09.771 INFO:teuthology.orchestra.run.smithi103.stdout:Get:95 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.1.1-330-gc2ddf972-1jammy [333 kB] 2024-09-16T23:45:09.778 INFO:teuthology.orchestra.run.smithi103.stdout:Get:96 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.1.1-330-gc2ddf972-1jammy [6,875 kB] 2024-09-16T23:45:09.851 INFO:teuthology.orchestra.run.smithi089.stdout:Get:91 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.1.1-330-gc2ddf972-1jammy [356 kB] 2024-09-16T23:45:09.873 INFO:teuthology.orchestra.run.smithi103.stdout:Get:97 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.1.1-330-gc2ddf972-1jammy [112 kB] 2024-09-16T23:45:09.876 INFO:teuthology.orchestra.run.smithi103.stdout:Get:98 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.1.1-330-gc2ddf972-1jammy [472 kB] 2024-09-16T23:45:09.884 INFO:teuthology.orchestra.run.smithi103.stdout:Get:99 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.1.1-330-gc2ddf972-1jammy [25.9 MB] 2024-09-16T23:45:09.895 INFO:teuthology.orchestra.run.smithi089.stdout:Get:92 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.1.1-330-gc2ddf972-1jammy [32.8 kB] 2024-09-16T23:45:09.896 INFO:teuthology.orchestra.run.smithi089.stdout:Get:93 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.1.1-330-gc2ddf972-1jammy [180 kB] 2024-09-16T23:45:09.918 INFO:teuthology.orchestra.run.smithi089.stdout:Get:94 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.1.1-330-gc2ddf972-1jammy [67.8 kB] 2024-09-16T23:45:09.920 INFO:teuthology.orchestra.run.smithi089.stdout:Get:95 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.1.1-330-gc2ddf972-1jammy [333 kB] 2024-09-16T23:45:09.965 INFO:teuthology.orchestra.run.smithi089.stdout:Get:96 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.1.1-330-gc2ddf972-1jammy [6,875 kB] 2024-09-16T23:45:10.315 INFO:teuthology.orchestra.run.smithi033.stdout:Fetched 181 MB in 5s (33.9 MB/s) 2024-09-16T23:45:10.460 INFO:teuthology.orchestra.run.smithi103.stdout:Get:100 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.1.1-330-gc2ddf972-1jammy [5,145 kB] 2024-09-16T23:45:10.476 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-09-16T23:45:10.520 INFO:teuthology.orchestra.run.smithi103.stdout:Get:101 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.1.1-330-gc2ddf972-1jammy [245 kB] 2024-09-16T23:45:10.524 INFO:teuthology.orchestra.run.smithi103.stdout:Get:102 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.1.1-330-gc2ddf972-1jammy [124 kB] 2024-09-16T23:45:10.526 INFO:teuthology.orchestra.run.smithi103.stdout:Get:103 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.1.1-330-gc2ddf972-1jammy [1,555 kB] 2024-09-16T23:45:10.556 INFO:teuthology.orchestra.run.smithi103.stdout:Get:104 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.1.1-330-gc2ddf972-1jammy [6,143 kB] 2024-09-16T23:45:10.579 INFO:teuthology.orchestra.run.smithi033.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 ... 165990 files and directories currently installed.) 2024-09-16T23:45:10.585 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-09-16T23:45:10.666 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-16T23:45:10.677 INFO:teuthology.orchestra.run.smithi103.stdout:Get:105 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.1.1-330-gc2ddf972-1jammy [22.8 MB] 2024-09-16T23:45:10.713 INFO:teuthology.orchestra.run.smithi089.stdout:Get:97 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.1.1-330-gc2ddf972-1jammy [112 kB] 2024-09-16T23:45:10.716 INFO:teuthology.orchestra.run.smithi089.stdout:Get:98 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.1.1-330-gc2ddf972-1jammy [472 kB] 2024-09-16T23:45:10.766 INFO:teuthology.orchestra.run.smithi089.stdout:Get:99 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.1.1-330-gc2ddf972-1jammy [25.9 MB] 2024-09-16T23:45:11.020 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-09-16T23:45:11.047 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-09-16T23:45:11.086 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-16T23:45:11.219 INFO:teuthology.orchestra.run.smithi103.stdout:Get:106 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.1.1-330-gc2ddf972-1jammy [14.1 kB] 2024-09-16T23:45:11.219 INFO:teuthology.orchestra.run.smithi103.stdout:Get:107 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.1.1-330-gc2ddf972-1jammy [877 kB] 2024-09-16T23:45:11.233 INFO:teuthology.orchestra.run.smithi103.stdout:Get:108 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.1.1-330-gc2ddf972-1jammy [2,462 kB] 2024-09-16T23:45:11.269 INFO:teuthology.orchestra.run.smithi103.stdout:Get:109 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.1.1-330-gc2ddf972-1jammy [794 kB] 2024-09-16T23:45:11.279 INFO:teuthology.orchestra.run.smithi103.stdout:Get:110 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.1.1-330-gc2ddf972-1jammy [152 kB] 2024-09-16T23:45:11.281 INFO:teuthology.orchestra.run.smithi103.stdout:Get:111 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.1.1-330-gc2ddf972-1jammy [2,275 kB] 2024-09-16T23:45:11.302 INFO:teuthology.orchestra.run.smithi103.stdout:Get:112 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.1.1-330-gc2ddf972-1jammy [8,625 kB] 2024-09-16T23:45:11.372 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-09-16T23:45:11.399 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-09-16T23:45:11.431 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-16T23:45:11.474 INFO:teuthology.orchestra.run.smithi103.stdout:Get:113 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.1.1-330-gc2ddf972-1jammy [14.2 kB] 2024-09-16T23:45:11.474 INFO:teuthology.orchestra.run.smithi103.stdout:Get:114 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.1.1-330-gc2ddf972-1jammy [51.4 MB] 2024-09-16T23:45:11.910 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-09-16T23:45:11.937 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T23:45:11.986 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T23:45:12.348 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-09-16T23:45:12.364 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T23:45:12.398 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T23:45:12.704 INFO:teuthology.orchestra.run.smithi103.stdout:Get:115 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.1.1-330-gc2ddf972-1jammy [130 kB] 2024-09-16T23:45:12.706 INFO:teuthology.orchestra.run.smithi103.stdout:Get:116 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.1.1-330-gc2ddf972-1jammy [39.0 kB] 2024-09-16T23:45:12.707 INFO:teuthology.orchestra.run.smithi103.stdout:Get:117 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.1.1-330-gc2ddf972-1jammy [13.6 MB] 2024-09-16T23:45:12.743 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-09-16T23:45:12.770 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T23:45:12.809 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T23:45:12.918 INFO:teuthology.orchestra.run.smithi103.stdout:Get:118 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.1.1-330-gc2ddf972-1jammy [91.4 kB] 2024-09-16T23:45:13.162 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-09-16T23:45:13.189 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-09-16T23:45:13.229 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-16T23:45:13.271 INFO:teuthology.orchestra.run.smithi089.stdout:Get:100 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.1.1-330-gc2ddf972-1jammy [5,145 kB] 2024-09-16T23:45:13.495 INFO:teuthology.orchestra.run.smithi103.stdout:Fetched 181 MB in 8s (21.8 MB/s) 2024-09-16T23:45:13.515 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package librados2. 2024-09-16T23:45:13.542 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../007-librados2_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:13.581 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking librados2 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:13.587 INFO:teuthology.orchestra.run.smithi089.stdout:Get:101 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.1.1-330-gc2ddf972-1jammy [245 kB] 2024-09-16T23:45:13.605 INFO:teuthology.orchestra.run.smithi089.stdout:Get:102 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.1.1-330-gc2ddf972-1jammy [124 kB] 2024-09-16T23:45:13.607 INFO:teuthology.orchestra.run.smithi089.stdout:Get:103 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.1.1-330-gc2ddf972-1jammy [1,555 kB] 2024-09-16T23:45:13.663 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-09-16T23:45:13.711 INFO:teuthology.orchestra.run.smithi089.stdout:Get:104 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.1.1-330-gc2ddf972-1jammy [6,143 kB] 2024-09-16T23:45:13.756 INFO:teuthology.orchestra.run.smithi103.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 ... 165990 files and directories currently installed.) 2024-09-16T23:45:13.761 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-09-16T23:45:13.845 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-16T23:45:14.009 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package librbd1. 2024-09-16T23:45:14.036 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../008-librbd1_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:14.076 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking librbd1 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:14.103 INFO:teuthology.orchestra.run.smithi089.stdout:Get:105 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.1.1-330-gc2ddf972-1jammy [22.8 MB] 2024-09-16T23:45:14.190 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-09-16T23:45:14.217 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-09-16T23:45:14.257 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-16T23:45:14.520 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package libcephfs2. 2024-09-16T23:45:14.543 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-09-16T23:45:14.547 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../009-libcephfs2_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:14.569 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-09-16T23:45:14.587 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking libcephfs2 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:14.601 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-16T23:45:14.873 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-rados. 2024-09-16T23:45:14.900 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../010-python3-rados_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:14.939 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-rados (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:15.055 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-09-16T23:45:15.081 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T23:45:15.129 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T23:45:15.233 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-09-16T23:45:15.250 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.1.1-330-gc2ddf972-1jammy_all.deb ... 2024-09-16T23:45:15.283 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-ceph-argparse (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:15.494 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-cephfs. 2024-09-16T23:45:15.521 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../012-python3-cephfs_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:15.533 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-09-16T23:45:15.559 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T23:45:15.561 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-cephfs (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:15.564 INFO:teuthology.orchestra.run.smithi089.stdout:Get:106 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.1.1-330-gc2ddf972-1jammy [14.1 kB] 2024-09-16T23:45:15.564 INFO:teuthology.orchestra.run.smithi089.stdout:Get:107 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.1.1-330-gc2ddf972-1jammy [877 kB] 2024-09-16T23:45:15.585 INFO:teuthology.orchestra.run.smithi089.stdout:Get:108 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.1.1-330-gc2ddf972-1jammy [2,462 kB] 2024-09-16T23:45:15.599 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T23:45:15.711 INFO:teuthology.orchestra.run.smithi089.stdout:Get:109 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.1.1-330-gc2ddf972-1jammy [794 kB] 2024-09-16T23:45:15.753 INFO:teuthology.orchestra.run.smithi089.stdout:Get:110 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.1.1-330-gc2ddf972-1jammy [152 kB] 2024-09-16T23:45:15.756 INFO:teuthology.orchestra.run.smithi089.stdout:Get:111 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.1.1-330-gc2ddf972-1jammy [2,275 kB] 2024-09-16T23:45:15.872 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-ceph-common. 2024-09-16T23:45:15.878 INFO:teuthology.orchestra.run.smithi089.stdout:Get:112 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.1.1-330-gc2ddf972-1jammy [8,625 kB] 2024-09-16T23:45:15.899 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../013-python3-ceph-common_19.1.1-330-gc2ddf972-1jammy_all.deb ... 2024-09-16T23:45:15.911 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-09-16T23:45:15.937 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T23:45:15.938 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-ceph-common (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:15.977 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T23:45:16.308 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-wcwidth. 2024-09-16T23:45:16.335 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-09-16T23:45:16.336 INFO:teuthology.orchestra.run.smithi089.stdout:Get:113 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.1.1-330-gc2ddf972-1jammy [14.2 kB] 2024-09-16T23:45:16.337 INFO:teuthology.orchestra.run.smithi089.stdout:Get:114 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.1.1-330-gc2ddf972-1jammy [51.4 MB] 2024-09-16T23:45:16.356 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-09-16T23:45:16.382 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-09-16T23:45:16.383 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-16T23:45:16.422 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-16T23:45:16.742 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package librados2. 2024-09-16T23:45:16.768 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../007-librados2_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:16.786 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-prettytable. 2024-09-16T23:45:16.808 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking librados2 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:16.813 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-09-16T23:45:16.861 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-09-16T23:45:17.130 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-rbd. 2024-09-16T23:45:17.146 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../016-python3-rbd_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:17.189 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-rbd (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:17.611 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package librbd1. 2024-09-16T23:45:17.637 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../008-librbd1_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:17.669 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking librbd1 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:17.767 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-09-16T23:45:17.793 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-09-16T23:45:17.841 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-16T23:45:18.081 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package libcephfs2. 2024-09-16T23:45:18.107 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../009-libcephfs2_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:18.147 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking libcephfs2 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:18.261 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-09-16T23:45:18.288 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-09-16T23:45:18.336 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-09-16T23:45:18.441 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-rados. 2024-09-16T23:45:18.457 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../010-python3-rados_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:18.500 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-rados (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:18.672 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-09-16T23:45:18.688 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-09-16T23:45:18.730 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-16T23:45:18.827 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-09-16T23:45:18.855 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.1.1-330-gc2ddf972-1jammy_all.deb ... 2024-09-16T23:45:18.894 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-ceph-argparse (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:19.012 INFO:teuthology.orchestra.run.smithi089.stdout:Get:115 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.1.1-330-gc2ddf972-1jammy [130 kB] 2024-09-16T23:45:19.014 INFO:teuthology.orchestra.run.smithi089.stdout:Get:116 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.1.1-330-gc2ddf972-1jammy [39.0 kB] 2024-09-16T23:45:19.015 INFO:teuthology.orchestra.run.smithi089.stdout:Get:117 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.1.1-330-gc2ddf972-1jammy [13.6 MB] 2024-09-16T23:45:19.050 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package lua5.1. 2024-09-16T23:45:19.077 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-09-16T23:45:19.116 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-09-16T23:45:19.147 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-cephfs. 2024-09-16T23:45:19.173 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../012-python3-cephfs_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:19.205 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-cephfs (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:19.478 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package lua-any. 2024-09-16T23:45:19.495 INFO:teuthology.orchestra.run.smithi089.stdout:Get:118 https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.1.1-330-gc2ddf972-1jammy [91.4 kB] 2024-09-16T23:45:19.505 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-09-16T23:45:19.516 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-ceph-common. 2024-09-16T23:45:19.543 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../013-python3-ceph-common_19.1.1-330-gc2ddf972-1jammy_all.deb ... 2024-09-16T23:45:19.552 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking lua-any (27ubuntu1) ... 2024-09-16T23:45:19.582 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-ceph-common (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:19.855 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package zip. 2024-09-16T23:45:19.871 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-09-16T23:45:19.902 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-wcwidth. 2024-09-16T23:45:19.922 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking zip (3.0-12build2) ... 2024-09-16T23:45:19.928 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-09-16T23:45:19.969 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-16T23:45:20.065 INFO:teuthology.orchestra.run.smithi089.stdout:Fetched 181 MB in 15s (12.0 MB/s) 2024-09-16T23:45:20.198 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-09-16T23:45:20.267 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package unzip. 2024-09-16T23:45:20.280 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-prettytable. 2024-09-16T23:45:20.294 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-09-16T23:45:20.296 INFO:teuthology.orchestra.run.smithi089.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 ... 165990 files and directories currently installed.) 2024-09-16T23:45:20.301 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-09-16T23:45:20.306 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-09-16T23:45:20.333 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-09-16T23:45:20.347 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-09-16T23:45:20.372 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-16T23:45:20.574 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-rbd. 2024-09-16T23:45:20.590 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../016-python3-rbd_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:20.624 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-rbd (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:20.725 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-09-16T23:45:20.751 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-09-16T23:45:20.754 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package luarocks. 2024-09-16T23:45:20.781 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-09-16T23:45:20.817 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-16T23:45:20.829 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-09-16T23:45:20.969 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-09-16T23:45:20.995 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-09-16T23:45:21.035 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-16T23:45:21.120 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-09-16T23:45:21.146 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-09-16T23:45:21.161 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package librgw2. 2024-09-16T23:45:21.186 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-16T23:45:21.188 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../025-librgw2_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:21.219 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking librgw2 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:21.296 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-09-16T23:45:21.322 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-09-16T23:45:21.364 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-09-16T23:45:21.649 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-09-16T23:45:21.657 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-09-16T23:45:21.674 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T23:45:21.684 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-09-16T23:45:21.723 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T23:45:21.724 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-16T23:45:21.797 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-rgw. 2024-09-16T23:45:21.824 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../026-python3-rgw_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:21.864 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-rgw (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:22.011 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package lua5.1. 2024-09-16T23:45:22.037 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-09-16T23:45:22.077 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-09-16T23:45:22.085 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-09-16T23:45:22.100 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T23:45:22.135 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T23:45:22.216 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package liboath0:amd64. 2024-09-16T23:45:22.244 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-09-16T23:45:22.283 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-09-16T23:45:22.381 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package lua-any. 2024-09-16T23:45:22.407 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-09-16T23:45:22.447 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking lua-any (27ubuntu1) ... 2024-09-16T23:45:22.479 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-09-16T23:45:22.505 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T23:45:22.546 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T23:45:22.611 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package libradosstriper1. 2024-09-16T23:45:22.638 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../028-libradosstriper1_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:22.677 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking libradosstriper1 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:22.925 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package zip. 2024-09-16T23:45:22.952 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-09-16T23:45:22.991 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking zip (3.0-12build2) ... 2024-09-16T23:45:23.071 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-09-16T23:45:23.097 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-09-16T23:45:23.233 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-16T23:45:23.273 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package ceph-common. 2024-09-16T23:45:23.300 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../029-ceph-common_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:23.303 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package unzip. 2024-09-16T23:45:23.330 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-09-16T23:45:23.339 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking ceph-common (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:23.369 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-09-16T23:45:23.552 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package librados2. 2024-09-16T23:45:23.578 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../007-librados2_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:23.619 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking librados2 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:23.774 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package luarocks. 2024-09-16T23:45:23.800 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-09-16T23:45:23.840 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-09-16T23:45:24.063 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package librbd1. 2024-09-16T23:45:24.078 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../008-librbd1_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:24.138 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking librbd1 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:24.223 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package librgw2. 2024-09-16T23:45:24.250 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../025-librgw2_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:24.289 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking librgw2 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:24.566 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package libcephfs2. 2024-09-16T23:45:24.592 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../009-libcephfs2_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:24.632 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking libcephfs2 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:24.744 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package ceph-base. 2024-09-16T23:45:24.771 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../030-ceph-base_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:24.820 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking ceph-base (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:24.833 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-rgw. 2024-09-16T23:45:24.849 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../026-python3-rgw_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:24.892 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-rgw (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:24.918 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-rados. 2024-09-16T23:45:24.933 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../010-python3-rados_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:24.976 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-rados (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:25.195 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package liboath0:amd64. 2024-09-16T23:45:25.222 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-09-16T23:45:25.253 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-09-16T23:45:25.271 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-09-16T23:45:25.286 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.1.1-330-gc2ddf972-1jammy_all.deb ... 2024-09-16T23:45:25.321 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-ceph-argparse (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:25.407 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-09-16T23:45:25.433 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-09-16T23:45:25.473 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-09-16T23:45:25.531 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-cephfs. 2024-09-16T23:45:25.547 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../012-python3-cephfs_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:25.564 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package libradosstriper1. 2024-09-16T23:45:25.582 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-cephfs (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:25.591 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../028-libradosstriper1_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:25.631 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking libradosstriper1 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:25.734 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-cheroot. 2024-09-16T23:45:25.761 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-09-16T23:45:25.801 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-16T23:45:25.909 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-ceph-common. 2024-09-16T23:45:25.935 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../013-python3-ceph-common_19.1.1-330-gc2ddf972-1jammy_all.deb ... 2024-09-16T23:45:25.976 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-ceph-common (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:26.001 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package ceph-common. 2024-09-16T23:45:26.027 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../029-ceph-common_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:26.067 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking ceph-common (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:26.137 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-09-16T23:45:26.164 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-09-16T23:45:26.204 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-09-16T23:45:26.296 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-wcwidth. 2024-09-16T23:45:26.322 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-09-16T23:45:26.362 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-16T23:45:26.523 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-jaraco.text. 2024-09-16T23:45:26.550 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-09-16T23:45:26.590 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-09-16T23:45:26.707 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-prettytable. 2024-09-16T23:45:26.733 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-09-16T23:45:26.774 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-09-16T23:45:26.892 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-09-16T23:45:26.919 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-09-16T23:45:26.959 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-09-16T23:45:27.026 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-rbd. 2024-09-16T23:45:27.041 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../016-python3-rbd_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:27.076 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-rbd (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:27.237 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-tempora. 2024-09-16T23:45:27.253 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-09-16T23:45:27.297 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-09-16T23:45:27.404 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-09-16T23:45:27.430 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-09-16T23:45:27.470 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-16T23:45:27.539 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package ceph-base. 2024-09-16T23:45:27.565 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-portend. 2024-09-16T23:45:27.566 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../030-ceph-base_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:27.592 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-09-16T23:45:27.631 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-09-16T23:45:27.640 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking ceph-base (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:27.742 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-09-16T23:45:27.757 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-09-16T23:45:27.792 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-09-16T23:45:27.934 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-09-16T23:45:27.961 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-09-16T23:45:28.000 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-09-16T23:45:28.078 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-09-16T23:45:28.093 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-09-16T23:45:28.127 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-16T23:45:28.194 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-09-16T23:45:28.221 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-09-16T23:45:28.260 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-09-16T23:45:28.287 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-cherrypy3. 2024-09-16T23:45:28.313 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-09-16T23:45:28.353 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-09-16T23:45:28.563 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-cheroot. 2024-09-16T23:45:28.590 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-09-16T23:45:28.629 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-16T23:45:28.681 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package lua5.1. 2024-09-16T23:45:28.707 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-natsort. 2024-09-16T23:45:28.707 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-09-16T23:45:28.734 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-09-16T23:45:28.747 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-09-16T23:45:28.773 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-09-16T23:45:28.933 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-09-16T23:45:28.960 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-09-16T23:45:28.991 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-09-16T23:45:29.075 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package lua-any. 2024-09-16T23:45:29.084 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-logutils. 2024-09-16T23:45:29.097 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-09-16T23:45:29.111 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-09-16T23:45:29.142 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking lua-any (27ubuntu1) ... 2024-09-16T23:45:29.151 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-09-16T23:45:29.277 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-jaraco.text. 2024-09-16T23:45:29.304 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-09-16T23:45:29.344 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-09-16T23:45:29.369 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package zip. 2024-09-16T23:45:29.385 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-09-16T23:45:29.419 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking zip (3.0-12build2) ... 2024-09-16T23:45:29.462 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-markupsafe. 2024-09-16T23:45:29.489 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-09-16T23:45:29.537 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-09-16T23:45:29.646 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-09-16T23:45:29.673 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-09-16T23:45:29.698 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package unzip. 2024-09-16T23:45:29.713 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-09-16T23:45:29.724 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-09-16T23:45:29.764 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-09-16T23:45:29.790 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-mako. 2024-09-16T23:45:29.806 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-09-16T23:45:29.840 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-16T23:45:30.016 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-tempora. 2024-09-16T23:45:30.043 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-09-16T23:45:30.082 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-09-16T23:45:30.143 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-simplegeneric. 2024-09-16T23:45:30.160 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package luarocks. 2024-09-16T23:45:30.170 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-09-16T23:45:30.187 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-09-16T23:45:30.209 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-09-16T23:45:30.226 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-09-16T23:45:30.344 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-portend. 2024-09-16T23:45:30.370 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-09-16T23:45:30.410 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-09-16T23:45:30.495 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-singledispatch. 2024-09-16T23:45:30.523 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-09-16T23:45:30.562 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-09-16T23:45:30.601 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package librgw2. 2024-09-16T23:45:30.628 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../025-librgw2_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:30.667 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking librgw2 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:30.696 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-09-16T23:45:30.723 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-09-16T23:45:30.763 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-09-16T23:45:30.857 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-webob. 2024-09-16T23:45:30.883 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1ubuntu0.1_all.deb ... 2024-09-16T23:45:30.923 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-16T23:45:31.033 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-cherrypy3. 2024-09-16T23:45:31.059 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-09-16T23:45:31.091 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-09-16T23:45:31.178 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-rgw. 2024-09-16T23:45:31.193 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../026-python3-rgw_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:31.228 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-rgw (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:31.251 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-waitress. 2024-09-16T23:45:31.278 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-09-16T23:45:31.338 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-16T23:45:31.403 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-natsort. 2024-09-16T23:45:31.429 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-09-16T23:45:31.478 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-09-16T23:45:31.564 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package liboath0:amd64. 2024-09-16T23:45:31.591 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-09-16T23:45:31.604 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-tempita. 2024-09-16T23:45:31.631 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-09-16T23:45:31.631 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-09-16T23:45:31.671 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-09-16T23:45:31.747 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-logutils. 2024-09-16T23:45:31.768 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-09-16T23:45:31.814 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-09-16T23:45:31.951 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package libradosstriper1. 2024-09-16T23:45:31.973 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-paste. 2024-09-16T23:45:31.977 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../028-libradosstriper1_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:32.000 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-09-16T23:45:32.017 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking libradosstriper1 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:32.040 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-09-16T23:45:32.117 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-markupsafe. 2024-09-16T23:45:32.143 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-09-16T23:45:32.183 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-09-16T23:45:32.343 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-09-16T23:45:32.359 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-09-16T23:45:32.387 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package ceph-common. 2024-09-16T23:45:32.392 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-09-16T23:45:32.417 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../029-ceph-common_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:32.453 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking ceph-common (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:32.486 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-mako. 2024-09-16T23:45:32.513 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-09-16T23:45:32.553 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-16T23:45:32.695 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-pastedeploy. 2024-09-16T23:45:32.723 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-09-16T23:45:32.771 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-09-16T23:45:32.864 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-simplegeneric. 2024-09-16T23:45:32.890 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-09-16T23:45:32.939 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-09-16T23:45:33.074 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-webtest. 2024-09-16T23:45:33.100 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-09-16T23:45:33.140 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-09-16T23:45:33.417 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-singledispatch. 2024-09-16T23:45:33.444 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-09-16T23:45:33.484 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-09-16T23:45:33.635 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-pecan. 2024-09-16T23:45:33.662 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-09-16T23:45:33.701 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-09-16T23:45:33.745 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-webob. 2024-09-16T23:45:33.771 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1ubuntu0.1_all.deb ... 2024-09-16T23:45:33.811 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-16T23:45:34.059 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package ceph-base. 2024-09-16T23:45:34.081 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-certifi. 2024-09-16T23:45:34.086 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../030-ceph-base_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:34.108 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-09-16T23:45:34.135 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking ceph-base (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:34.139 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-waitress. 2024-09-16T23:45:34.147 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-09-16T23:45:34.166 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-09-16T23:45:34.218 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-16T23:45:34.434 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-idna. 2024-09-16T23:45:34.461 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../055-python3-idna_3.3-1ubuntu0.1_all.deb ... 2024-09-16T23:45:34.492 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-idna (3.3-1ubuntu0.1) ... 2024-09-16T23:45:34.526 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-tempita. 2024-09-16T23:45:34.552 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-09-16T23:45:34.592 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-09-16T23:45:34.672 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-09-16T23:45:34.687 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-09-16T23:45:34.721 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-09-16T23:45:34.803 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-urllib3. 2024-09-16T23:45:34.830 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-09-16T23:45:34.869 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-16T23:45:34.895 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-paste. 2024-09-16T23:45:34.921 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-09-16T23:45:34.953 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-09-16T23:45:34.999 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-cheroot. 2024-09-16T23:45:35.026 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-09-16T23:45:35.066 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-16T23:45:35.181 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-requests. 2024-09-16T23:45:35.208 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-09-16T23:45:35.248 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-16T23:45:35.299 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-09-16T23:45:35.325 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-09-16T23:45:35.365 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-09-16T23:45:35.386 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-09-16T23:45:35.412 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-09-16T23:45:35.452 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-09-16T23:45:35.534 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-werkzeug. 2024-09-16T23:45:35.561 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.2_all.deb ... 2024-09-16T23:45:35.600 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-16T23:45:35.635 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-pastedeploy. 2024-09-16T23:45:35.661 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-09-16T23:45:35.701 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-09-16T23:45:35.763 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-jaraco.text. 2024-09-16T23:45:35.790 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-09-16T23:45:35.830 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-09-16T23:45:35.895 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-09-16T23:45:35.922 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.1.1-330-gc2ddf972-1jammy_all.deb ... 2024-09-16T23:45:35.961 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking ceph-mgr-modules-core (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:36.004 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-webtest. 2024-09-16T23:45:36.030 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-09-16T23:45:36.070 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-09-16T23:45:36.149 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-09-16T23:45:36.176 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-09-16T23:45:36.216 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-09-16T23:45:36.341 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-09-16T23:45:36.357 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:36.390 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-pecan. 2024-09-16T23:45:36.391 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking libsqlite3-mod-ceph (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:36.417 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-09-16T23:45:36.457 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-09-16T23:45:36.494 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-tempora. 2024-09-16T23:45:36.521 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-09-16T23:45:36.560 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-09-16T23:45:36.694 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-bcrypt. 2024-09-16T23:45:36.722 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-09-16T23:45:36.760 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-09-16T23:45:36.820 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-certifi. 2024-09-16T23:45:36.846 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-09-16T23:45:36.863 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-portend. 2024-09-16T23:45:36.886 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-09-16T23:45:36.890 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-09-16T23:45:36.930 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-09-16T23:45:37.072 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-openssl. 2024-09-16T23:45:37.099 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-09-16T23:45:37.138 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-09-16T23:45:37.189 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-idna. 2024-09-16T23:45:37.215 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../055-python3-idna_3.3-1ubuntu0.1_all.deb ... 2024-09-16T23:45:37.233 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-09-16T23:45:37.255 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-idna (3.3-1ubuntu0.1) ... 2024-09-16T23:45:37.259 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-09-16T23:45:37.299 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-09-16T23:45:37.483 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package ceph-mgr. 2024-09-16T23:45:37.510 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../063-ceph-mgr_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:37.549 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking ceph-mgr (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:37.550 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-urllib3. 2024-09-16T23:45:37.577 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-09-16T23:45:37.992 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-16T23:45:38.136 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-cherrypy3. 2024-09-16T23:45:38.164 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-09-16T23:45:38.528 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-09-16T23:45:38.737 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-requests. 2024-09-16T23:45:38.761 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package ceph-mon. 2024-09-16T23:45:38.764 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-09-16T23:45:38.789 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../064-ceph-mon_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:38.803 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-16T23:45:38.819 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking ceph-mon (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:38.881 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-natsort. 2024-09-16T23:45:38.908 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-09-16T23:45:38.948 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-09-16T23:45:39.140 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-werkzeug. 2024-09-16T23:45:39.166 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.2_all.deb ... 2024-09-16T23:45:39.206 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-16T23:45:39.226 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-logutils. 2024-09-16T23:45:39.252 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-09-16T23:45:39.284 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-09-16T23:45:39.465 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package ceph-osd. 2024-09-16T23:45:39.476 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-09-16T23:45:39.492 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../065-ceph-osd_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:39.503 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.1.1-330-gc2ddf972-1jammy_all.deb ... 2024-09-16T23:45:39.531 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking ceph-osd (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:39.542 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking ceph-mgr-modules-core (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:39.596 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-markupsafe. 2024-09-16T23:45:39.622 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-09-16T23:45:39.662 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-09-16T23:45:39.923 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-09-16T23:45:39.949 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:39.965 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-mako. 2024-09-16T23:45:39.989 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking libsqlite3-mod-ceph (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:39.991 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-09-16T23:45:40.031 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-16T23:45:40.267 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-bcrypt. 2024-09-16T23:45:40.294 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-09-16T23:45:40.325 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-09-16T23:45:40.360 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-simplegeneric. 2024-09-16T23:45:40.386 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-09-16T23:45:40.426 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-09-16T23:45:40.628 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-openssl. 2024-09-16T23:45:40.651 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package ceph. 2024-09-16T23:45:40.654 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-09-16T23:45:40.679 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../066-ceph_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:40.687 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-singledispatch. 2024-09-16T23:45:40.694 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-09-16T23:45:40.702 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-09-16T23:45:40.726 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking ceph (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:40.754 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-09-16T23:45:41.031 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package ceph-mgr. 2024-09-16T23:45:41.040 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-webob. 2024-09-16T23:45:41.057 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../063-ceph-mgr_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:41.066 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1ubuntu0.1_all.deb ... 2024-09-16T23:45:41.097 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking ceph-mgr (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:41.107 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-16T23:45:41.137 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package ceph-fuse. 2024-09-16T23:45:41.165 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../067-ceph-fuse_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:41.212 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking ceph-fuse (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:41.460 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-waitress. 2024-09-16T23:45:41.486 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-09-16T23:45:41.501 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package ceph-mon. 2024-09-16T23:45:41.527 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../064-ceph-mon_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:41.530 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-16T23:45:41.567 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking ceph-mon (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:41.599 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package ceph-mds. 2024-09-16T23:45:41.626 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../068-ceph-mds_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:41.665 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking ceph-mds (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:41.822 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-tempita. 2024-09-16T23:45:41.848 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-09-16T23:45:41.888 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-09-16T23:45:42.068 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package cephadm. 2024-09-16T23:45:42.095 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../069-cephadm_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:42.134 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking cephadm (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:42.162 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package ceph-osd. 2024-09-16T23:45:42.189 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../065-ceph-osd_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:42.190 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-paste. 2024-09-16T23:45:42.217 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-09-16T23:45:42.229 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking ceph-osd (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:42.257 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-09-16T23:45:42.512 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-asyncssh. 2024-09-16T23:45:42.539 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-09-16T23:45:42.585 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-09-16T23:45:42.587 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-09-16T23:45:42.612 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-09-16T23:45:42.652 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-09-16T23:45:42.915 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python-babel-localedata. 2024-09-16T23:45:42.931 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-09-16T23:45:42.955 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-pastedeploy. 2024-09-16T23:45:42.981 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-16T23:45:42.982 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-09-16T23:45:43.021 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-09-16T23:45:43.282 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package ceph. 2024-09-16T23:45:43.298 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../066-ceph_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:43.299 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-webtest. 2024-09-16T23:45:43.326 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-09-16T23:45:43.340 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking ceph (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:43.357 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-09-16T23:45:43.635 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-pecan. 2024-09-16T23:45:43.662 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-09-16T23:45:43.702 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-09-16T23:45:43.860 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package ceph-fuse. 2024-09-16T23:45:43.887 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../067-ceph-fuse_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:43.926 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking ceph-fuse (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:43.978 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-babel. 2024-09-16T23:45:44.006 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-09-16T23:45:44.036 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-09-16T23:45:44.040 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-certifi. 2024-09-16T23:45:44.069 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-09-16T23:45:44.107 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-09-16T23:45:44.246 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package ceph-mds. 2024-09-16T23:45:44.262 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../068-ceph-mds_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:44.305 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking ceph-mds (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:44.347 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-jinja2. 2024-09-16T23:45:44.363 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.2_all.deb ... 2024-09-16T23:45:44.397 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-16T23:45:44.443 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-idna. 2024-09-16T23:45:44.470 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../055-python3-idna_3.3-1ubuntu0.1_all.deb ... 2024-09-16T23:45:44.510 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-idna (3.3-1ubuntu0.1) ... 2024-09-16T23:45:44.699 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package cephadm. 2024-09-16T23:45:44.725 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-09-16T23:45:44.726 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../069-cephadm_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:44.753 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.1.1-330-gc2ddf972-1jammy_all.deb ... 2024-09-16T23:45:44.766 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking cephadm (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:44.791 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking ceph-mgr-cephadm (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:44.829 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-urllib3. 2024-09-16T23:45:44.856 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-09-16T23:45:44.896 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-16T23:45:45.060 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-asyncssh. 2024-09-16T23:45:45.086 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-09-16T23:45:45.126 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-09-16T23:45:45.153 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-repoze.lru. 2024-09-16T23:45:45.181 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-09-16T23:45:45.219 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-09-16T23:45:45.224 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-requests. 2024-09-16T23:45:45.251 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-09-16T23:45:45.290 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-16T23:45:45.441 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python-babel-localedata. 2024-09-16T23:45:45.464 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-09-16T23:45:45.472 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-routes. 2024-09-16T23:45:45.500 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-09-16T23:45:45.504 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-16T23:45:45.531 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-09-16T23:45:45.569 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-werkzeug. 2024-09-16T23:45:45.595 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.2_all.deb ... 2024-09-16T23:45:45.635 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-16T23:45:45.817 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-09-16T23:45:45.833 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.1.1-330-gc2ddf972-1jammy_all.deb ... 2024-09-16T23:45:45.867 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking ceph-mgr-dashboard (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:45.904 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-09-16T23:45:45.920 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.1.1-330-gc2ddf972-1jammy_all.deb ... 2024-09-16T23:45:45.963 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking ceph-mgr-modules-core (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:46.310 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-09-16T23:45:46.336 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:46.376 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking libsqlite3-mod-ceph (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:46.476 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-babel. 2024-09-16T23:45:46.503 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-09-16T23:45:46.542 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-09-16T23:45:46.696 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-bcrypt. 2024-09-16T23:45:46.722 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-09-16T23:45:46.762 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-09-16T23:45:46.870 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-jinja2. 2024-09-16T23:45:46.897 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.2_all.deb ... 2024-09-16T23:45:46.937 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-16T23:45:47.065 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-openssl. 2024-09-16T23:45:47.092 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-09-16T23:45:47.131 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-09-16T23:45:47.156 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-09-16T23:45:47.183 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-09-16T23:45:47.230 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-16T23:45:47.265 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-09-16T23:45:47.291 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.1.1-330-gc2ddf972-1jammy_all.deb ... 2024-09-16T23:45:47.331 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking ceph-mgr-cephadm (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:47.510 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package ceph-mgr. 2024-09-16T23:45:47.537 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../063-ceph-mgr_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:47.576 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking ceph-mgr (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:47.668 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-repoze.lru. 2024-09-16T23:45:47.695 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-09-16T23:45:47.734 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-09-16T23:45:47.784 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-joblib. 2024-09-16T23:45:47.811 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-09-16T23:45:47.858 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-09-16T23:45:47.971 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package ceph-mon. 2024-09-16T23:45:47.998 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../064-ceph-mon_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:48.037 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-routes. 2024-09-16T23:45:48.037 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking ceph-mon (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:48.064 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-09-16T23:45:48.103 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-09-16T23:45:48.245 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-09-16T23:45:48.273 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-09-16T23:45:48.312 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-09-16T23:45:48.440 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-09-16T23:45:48.467 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.1.1-330-gc2ddf972-1jammy_all.deb ... 2024-09-16T23:45:48.506 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking ceph-mgr-dashboard (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:48.631 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-sklearn. 2024-09-16T23:45:48.659 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-09-16T23:45:48.708 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package ceph-osd. 2024-09-16T23:45:48.735 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../065-ceph-osd_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:48.783 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking ceph-osd (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:48.807 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-16T23:45:49.665 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-09-16T23:45:49.693 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.1.1-330-gc2ddf972-1jammy_all.deb ... 2024-09-16T23:45:49.762 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-09-16T23:45:49.778 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-09-16T23:45:49.816 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking ceph-mgr-diskprediction-local (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:49.820 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-16T23:45:49.894 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package ceph. 2024-09-16T23:45:49.910 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../066-ceph_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:49.952 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking ceph (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:50.272 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package ceph-fuse. 2024-09-16T23:45:50.290 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-joblib. 2024-09-16T23:45:50.299 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../067-ceph-fuse_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:50.317 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-09-16T23:45:50.338 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking ceph-fuse (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:50.356 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-09-16T23:45:50.729 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-09-16T23:45:50.756 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-09-16T23:45:50.767 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package ceph-mds. 2024-09-16T23:45:50.794 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../068-ceph-mds_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:50.795 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-09-16T23:45:50.841 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking ceph-mds (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:50.861 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-cachetools. 2024-09-16T23:45:50.889 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-09-16T23:45:50.928 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-09-16T23:45:51.098 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-sklearn. 2024-09-16T23:45:51.125 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-09-16T23:45:51.165 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-16T23:45:51.231 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-pyasn1. 2024-09-16T23:45:51.259 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-09-16T23:45:51.297 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-09-16T23:45:51.303 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package cephadm. 2024-09-16T23:45:51.329 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../069-cephadm_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:51.378 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking cephadm (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:51.626 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-09-16T23:45:51.647 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-asyncssh. 2024-09-16T23:45:51.654 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-09-16T23:45:51.663 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-09-16T23:45:51.692 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-09-16T23:45:51.697 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-09-16T23:45:51.832 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-09-16T23:45:51.860 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.1.1-330-gc2ddf972-1jammy_all.deb ... 2024-09-16T23:45:51.976 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking ceph-mgr-diskprediction-local (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:52.008 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python-babel-localedata. 2024-09-16T23:45:52.020 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-rsa. 2024-09-16T23:45:52.024 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-09-16T23:45:52.048 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-09-16T23:45:52.066 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-16T23:45:52.087 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-rsa (4.8-1) ... 2024-09-16T23:45:52.409 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-google-auth. 2024-09-16T23:45:52.437 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-09-16T23:45:52.475 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-09-16T23:45:52.762 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-09-16T23:45:52.790 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-09-16T23:45:52.820 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-16T23:45:52.880 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-cachetools. 2024-09-16T23:45:52.907 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-09-16T23:45:52.938 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-09-16T23:45:53.071 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-babel. 2024-09-16T23:45:53.098 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-websocket. 2024-09-16T23:45:53.099 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-09-16T23:45:53.126 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-09-16T23:45:53.138 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-09-16T23:45:53.164 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-09-16T23:45:53.208 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-pyasn1. 2024-09-16T23:45:53.235 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-09-16T23:45:53.274 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-09-16T23:45:53.449 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-jinja2. 2024-09-16T23:45:53.476 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.2_all.deb ... 2024-09-16T23:45:53.484 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-kubernetes. 2024-09-16T23:45:53.513 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-09-16T23:45:53.515 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-16T23:45:53.551 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-16T23:45:53.604 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-09-16T23:45:53.631 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-09-16T23:45:53.670 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-09-16T23:45:53.894 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-09-16T23:45:53.921 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.1.1-330-gc2ddf972-1jammy_all.deb ... 2024-09-16T23:45:53.960 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking ceph-mgr-cephadm (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:54.207 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-rsa. 2024-09-16T23:45:54.234 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-09-16T23:45:54.273 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-rsa (4.8-1) ... 2024-09-16T23:45:54.322 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-repoze.lru. 2024-09-16T23:45:54.349 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-09-16T23:45:54.389 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-09-16T23:45:54.448 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-09-16T23:45:54.476 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.1.1-330-gc2ddf972-1jammy_all.deb ... 2024-09-16T23:45:54.515 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking ceph-mgr-k8sevents (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:54.628 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-google-auth. 2024-09-16T23:45:54.655 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-09-16T23:45:54.691 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-routes. 2024-09-16T23:45:54.694 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-09-16T23:45:54.718 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-09-16T23:45:54.758 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-09-16T23:45:54.834 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package libonig5:amd64. 2024-09-16T23:45:54.862 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-09-16T23:45:54.901 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-16T23:45:55.014 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-09-16T23:45:55.041 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-09-16T23:45:55.081 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-16T23:45:55.120 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-09-16T23:45:55.146 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.1.1-330-gc2ddf972-1jammy_all.deb ... 2024-09-16T23:45:55.186 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking ceph-mgr-dashboard (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:55.195 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package libjq1:amd64. 2024-09-16T23:45:55.223 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-09-16T23:45:55.253 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-16T23:45:55.359 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-websocket. 2024-09-16T23:45:55.374 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-09-16T23:45:55.409 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-09-16T23:45:55.497 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package jq. 2024-09-16T23:45:55.514 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-09-16T23:45:55.556 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-09-16T23:45:55.713 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-kubernetes. 2024-09-16T23:45:55.740 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-09-16T23:45:55.779 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-16T23:45:55.834 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package socat. 2024-09-16T23:45:55.861 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-09-16T23:45:55.900 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-09-16T23:45:56.245 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package xmlstarlet. 2024-09-16T23:45:56.261 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-09-16T23:45:56.303 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-09-16T23:45:56.460 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-09-16T23:45:56.488 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.1.1-330-gc2ddf972-1jammy_all.deb ... 2024-09-16T23:45:56.491 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-09-16T23:45:56.519 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-09-16T23:45:56.526 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking ceph-mgr-k8sevents (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:56.558 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-16T23:45:56.674 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package ceph-test. 2024-09-16T23:45:56.702 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../097-ceph-test_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:56.740 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking ceph-test (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:56.838 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package libonig5:amd64. 2024-09-16T23:45:56.865 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-09-16T23:45:56.904 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-16T23:45:57.003 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-joblib. 2024-09-16T23:45:57.018 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-09-16T23:45:57.053 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-09-16T23:45:57.241 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package libjq1:amd64. 2024-09-16T23:45:57.268 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-09-16T23:45:57.307 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-16T23:45:57.423 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-09-16T23:45:57.450 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-09-16T23:45:57.489 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-09-16T23:45:57.561 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package jq. 2024-09-16T23:45:57.576 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-09-16T23:45:57.611 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-09-16T23:45:57.801 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-sklearn. 2024-09-16T23:45:57.813 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package socat. 2024-09-16T23:45:57.828 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-09-16T23:45:57.829 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-09-16T23:45:57.867 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-16T23:45:57.871 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-09-16T23:45:58.167 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package xmlstarlet. 2024-09-16T23:45:58.194 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-09-16T23:45:58.233 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-09-16T23:45:58.567 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-09-16T23:45:58.595 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.1.1-330-gc2ddf972-1jammy_all.deb ... 2024-09-16T23:45:58.613 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package ceph-test. 2024-09-16T23:45:58.640 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../097-ceph-test_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:58.679 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking ceph-test (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:58.728 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking ceph-mgr-diskprediction-local (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:59.287 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package ceph-volume. 2024-09-16T23:45:59.315 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../098-ceph-volume_19.1.1-330-gc2ddf972-1jammy_all.deb ... 2024-09-16T23:45:59.353 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking ceph-volume (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:45:59.682 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package libcephfs-dev. 2024-09-16T23:45:59.707 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../099-libcephfs-dev_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:45:59.748 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking libcephfs-dev (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:00.040 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-cachetools. 2024-09-16T23:46:00.055 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-09-16T23:46:00.068 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package lua-socket:amd64. 2024-09-16T23:46:00.089 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-09-16T23:46:00.095 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-09-16T23:46:00.134 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-16T23:46:00.385 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-pyasn1. 2024-09-16T23:46:00.412 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-09-16T23:46:00.451 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-09-16T23:46:00.547 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package lua-sec:amd64. 2024-09-16T23:46:00.575 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-09-16T23:46:00.622 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-09-16T23:46:00.805 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-09-16T23:46:00.832 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-09-16T23:46:00.862 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-09-16T23:46:00.943 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package ceph-volume. 2024-09-16T23:46:00.970 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../098-ceph-volume_19.1.1-330-gc2ddf972-1jammy_all.deb ... 2024-09-16T23:46:01.009 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking ceph-volume (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:01.018 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package nvme-cli. 2024-09-16T23:46:01.040 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.3_amd64.deb ... 2024-09-16T23:46:01.084 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking nvme-cli (1.16-3ubuntu0.3) ... 2024-09-16T23:46:01.140 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-rsa. 2024-09-16T23:46:01.156 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-09-16T23:46:01.190 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-rsa (4.8-1) ... 2024-09-16T23:46:01.313 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package libcephfs-dev. 2024-09-16T23:46:01.341 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../099-libcephfs-dev_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:46:01.380 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking libcephfs-dev (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:01.511 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-google-auth. 2024-09-16T23:46:01.522 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package pkg-config. 2024-09-16T23:46:01.539 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-09-16T23:46:01.550 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-09-16T23:46:01.577 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-09-16T23:46:01.588 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-09-16T23:46:01.666 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package lua-socket:amd64. 2024-09-16T23:46:01.693 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-09-16T23:46:01.724 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-16T23:46:01.850 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-09-16T23:46:01.878 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-09-16T23:46:01.889 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-09-16T23:46:01.916 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-09-16T23:46:01.917 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-09-16T23:46:01.955 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-16T23:46:02.088 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package lua-sec:amd64. 2024-09-16T23:46:02.115 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-09-16T23:46:02.179 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-09-16T23:46:02.233 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-websocket. 2024-09-16T23:46:02.261 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-09-16T23:46:02.291 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-09-16T23:46:02.353 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-iniconfig. 2024-09-16T23:46:02.381 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-09-16T23:46:02.419 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-09-16T23:46:02.550 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package nvme-cli. 2024-09-16T23:46:02.578 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.3_amd64.deb ... 2024-09-16T23:46:02.612 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-kubernetes. 2024-09-16T23:46:02.616 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking nvme-cli (1.16-3ubuntu0.3) ... 2024-09-16T23:46:02.628 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-09-16T23:46:02.661 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-16T23:46:02.772 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-pastescript. 2024-09-16T23:46:02.800 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-09-16T23:46:02.847 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-09-16T23:46:03.031 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package pkg-config. 2024-09-16T23:46:03.058 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-09-16T23:46:03.097 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-09-16T23:46:03.234 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-pluggy. 2024-09-16T23:46:03.262 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-09-16T23:46:03.309 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-09-16T23:46:03.334 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-09-16T23:46:03.342 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-09-16T23:46:03.358 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.1.1-330-gc2ddf972-1jammy_all.deb ... 2024-09-16T23:46:03.361 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-09-16T23:46:03.392 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-09-16T23:46:03.400 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking ceph-mgr-k8sevents (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:03.587 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-psutil. 2024-09-16T23:46:03.615 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-09-16T23:46:03.645 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-09-16T23:46:03.686 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package libonig5:amd64. 2024-09-16T23:46:03.714 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-09-16T23:46:03.744 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-16T23:46:03.779 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-iniconfig. 2024-09-16T23:46:03.806 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-09-16T23:46:03.837 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-09-16T23:46:03.972 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-py. 2024-09-16T23:46:03.989 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-09-16T23:46:04.022 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-py (1.10.0-1) ... 2024-09-16T23:46:04.106 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package libjq1:amd64. 2024-09-16T23:46:04.134 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-09-16T23:46:04.140 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-pastescript. 2024-09-16T23:46:04.167 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-09-16T23:46:04.172 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-16T23:46:04.206 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-09-16T23:46:04.301 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-pygments. 2024-09-16T23:46:04.317 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-09-16T23:46:04.351 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-09-16T23:46:04.433 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package jq. 2024-09-16T23:46:04.449 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-09-16T23:46:04.492 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-09-16T23:46:04.743 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-pluggy. 2024-09-16T23:46:04.744 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package socat. 2024-09-16T23:46:04.756 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-pyinotify. 2024-09-16T23:46:04.760 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-09-16T23:46:04.771 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-09-16T23:46:04.771 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-09-16T23:46:04.803 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-09-16T23:46:04.804 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-09-16T23:46:04.809 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-09-16T23:46:05.106 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package xmlstarlet. 2024-09-16T23:46:05.107 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-toml. 2024-09-16T23:46:05.121 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-psutil. 2024-09-16T23:46:05.122 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-09-16T23:46:05.135 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-09-16T23:46:05.149 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-09-16T23:46:05.155 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-09-16T23:46:05.174 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-09-16T23:46:05.188 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-09-16T23:46:05.510 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-pytest. 2024-09-16T23:46:05.518 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package ceph-test. 2024-09-16T23:46:05.524 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-py. 2024-09-16T23:46:05.538 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-09-16T23:46:05.546 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../097-ceph-test_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:46:05.552 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-09-16T23:46:05.576 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-09-16T23:46:05.584 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking ceph-test (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:05.599 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-py (1.10.0-1) ... 2024-09-16T23:46:05.896 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package python3-simplejson. 2024-09-16T23:46:05.925 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-09-16T23:46:05.928 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-pygments. 2024-09-16T23:46:05.955 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-09-16T23:46:05.963 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-09-16T23:46:06.019 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-09-16T23:46:06.232 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-09-16T23:46:06.261 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-09-16T23:46:06.299 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-09-16T23:46:06.490 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-pyinotify. 2024-09-16T23:46:06.518 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-09-16T23:46:06.557 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-09-16T23:46:06.827 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-toml. 2024-09-16T23:46:06.854 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-09-16T23:46:06.885 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-09-16T23:46:07.036 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package radosgw. 2024-09-16T23:46:07.065 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../116-radosgw_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:46:07.102 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking radosgw (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:07.196 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-pytest. 2024-09-16T23:46:07.224 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-09-16T23:46:07.263 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-09-16T23:46:07.566 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package python3-simplejson. 2024-09-16T23:46:07.594 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-09-16T23:46:07.625 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-09-16T23:46:07.865 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package ceph-volume. 2024-09-16T23:46:07.869 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-09-16T23:46:07.885 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-09-16T23:46:07.892 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../098-ceph-volume_19.1.1-330-gc2ddf972-1jammy_all.deb ... 2024-09-16T23:46:07.931 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking ceph-volume (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:07.936 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-09-16T23:46:07.964 INFO:teuthology.orchestra.run.smithi033.stdout:Selecting previously unselected package rbd-fuse. 2024-09-16T23:46:07.992 INFO:teuthology.orchestra.run.smithi033.stdout:Preparing to unpack .../117-rbd-fuse_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:46:08.030 INFO:teuthology.orchestra.run.smithi033.stdout:Unpacking rbd-fuse (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:08.243 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package libcephfs-dev. 2024-09-16T23:46:08.270 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../099-libcephfs-dev_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:46:08.309 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking libcephfs-dev (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:08.310 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-09-16T23:46:08.568 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-16T23:46:08.589 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package lua-socket:amd64. 2024-09-16T23:46:08.616 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-09-16T23:46:08.647 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-16T23:46:08.649 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package radosgw. 2024-09-16T23:46:08.676 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../116-radosgw_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:46:08.694 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up nvme-cli (1.16-3ubuntu0.3) ... 2024-09-16T23:46:08.706 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking radosgw (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:08.970 INFO:teuthology.orchestra.run.smithi033.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-09-16T23:46:08.977 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package lua-sec:amd64. 2024-09-16T23:46:09.004 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-09-16T23:46:09.044 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-09-16T23:46:09.288 INFO:teuthology.orchestra.run.smithi033.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-09-16T23:46:09.414 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package nvme-cli. 2024-09-16T23:46:09.442 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.3_amd64.deb ... 2024-09-16T23:46:09.481 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking nvme-cli (1.16-3ubuntu0.3) ... 2024-09-16T23:46:09.485 INFO:teuthology.orchestra.run.smithi103.stdout:Selecting previously unselected package rbd-fuse. 2024-09-16T23:46:09.501 INFO:teuthology.orchestra.run.smithi103.stdout:Preparing to unpack .../117-rbd-fuse_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:46:09.535 INFO:teuthology.orchestra.run.smithi103.stdout:Unpacking rbd-fuse (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:09.693 INFO:teuthology.orchestra.run.smithi033.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-09-16T23:46:09.755 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up cephadm (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:09.823 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-09-16T23:46:09.894 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package pkg-config. 2024-09-16T23:46:09.922 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-09-16T23:46:10.107 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-16T23:46:10.177 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-09-16T23:46:10.233 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up nvme-cli (1.16-3ubuntu0.3) ... 2024-09-16T23:46:10.322 INFO:teuthology.orchestra.run.smithi033.stdout:Adding system user cephadm....done 2024-09-16T23:46:10.439 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-09-16T23:46:10.444 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-16T23:46:10.467 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-09-16T23:46:10.493 INFO:teuthology.orchestra.run.smithi103.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-09-16T23:46:10.505 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-09-16T23:46:10.729 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-09-16T23:46:10.805 INFO:teuthology.orchestra.run.smithi103.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-09-16T23:46:10.942 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-iniconfig. 2024-09-16T23:46:10.970 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-09-16T23:46:10.980 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-09-16T23:46:11.008 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-09-16T23:46:11.106 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-09-16T23:46:11.203 INFO:teuthology.orchestra.run.smithi103.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-09-16T23:46:11.268 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up cephadm (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:11.311 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-pastescript. 2024-09-16T23:46:11.339 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-09-16T23:46:11.366 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-09-16T23:46:11.377 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-09-16T23:46:11.634 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-09-16T23:46:11.665 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-pluggy. 2024-09-16T23:46:11.692 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-09-16T23:46:11.722 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-09-16T23:46:11.743 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-py (1.10.0-1) ... 2024-09-16T23:46:11.827 INFO:teuthology.orchestra.run.smithi103.stdout:Adding system user cephadm....done 2024-09-16T23:46:11.983 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-16T23:46:12.034 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-psutil. 2024-09-16T23:46:12.036 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-09-16T23:46:12.062 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-09-16T23:46:12.100 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-09-16T23:46:12.252 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-09-16T23:46:12.404 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-09-16T23:46:12.428 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-py. 2024-09-16T23:46:12.456 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-09-16T23:46:12.495 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-py (1.10.0-1) ... 2024-09-16T23:46:12.512 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-09-16T23:46:12.638 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-09-16T23:46:12.664 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-09-16T23:46:12.807 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-pygments. 2024-09-16T23:46:12.834 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-09-16T23:46:12.873 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-09-16T23:46:12.897 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-09-16T23:46:12.932 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-09-16T23:46:13.165 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-09-16T23:46:13.192 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-09-16T23:46:13.283 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-py (1.10.0-1) ... 2024-09-16T23:46:13.327 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-pyinotify. 2024-09-16T23:46:13.355 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-09-16T23:46:13.393 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-09-16T23:46:13.460 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-09-16T23:46:13.593 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-09-16T23:46:13.711 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-09-16T23:46:13.713 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-toml. 2024-09-16T23:46:13.741 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-09-16T23:46:13.779 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-09-16T23:46:13.962 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-ceph-argparse (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:13.962 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-09-16T23:46:14.107 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-pytest. 2024-09-16T23:46:14.136 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-09-16T23:46:14.174 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-09-16T23:46:14.213 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-09-16T23:46:14.304 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-16T23:46:14.464 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-16T23:46:14.489 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-09-16T23:46:14.519 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package python3-simplejson. 2024-09-16T23:46:14.546 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-09-16T23:46:14.585 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-09-16T23:46:14.615 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-09-16T23:46:14.758 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-09-16T23:46:14.774 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-09-16T23:46:14.863 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-09-16T23:46:14.879 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-09-16T23:46:14.921 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-09-16T23:46:15.009 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-09-16T23:46:15.092 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-09-16T23:46:15.269 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-09-16T23:46:15.497 INFO:teuthology.orchestra.run.smithi033.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-09-16T23:46:15.519 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-ceph-argparse (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:15.523 INFO:teuthology.orchestra.run.smithi033.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-09-16T23:46:15.587 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-16T23:46:15.626 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package radosgw. 2024-09-16T23:46:15.654 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../116-radosgw_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:46:15.692 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking radosgw (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:15.713 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-09-16T23:46:15.837 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-16T23:46:15.963 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-16T23:46:16.089 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-16T23:46:16.090 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-09-16T23:46:16.216 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-09-16T23:46:16.240 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-09-16T23:46:16.475 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-09-16T23:46:16.503 INFO:teuthology.orchestra.run.smithi089.stdout:Selecting previously unselected package rbd-fuse. 2024-09-16T23:46:16.527 INFO:teuthology.orchestra.run.smithi089.stdout:Preparing to unpack .../117-rbd-fuse_19.1.1-330-gc2ddf972-1jammy_amd64.deb ... 2024-09-16T23:46:16.533 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-09-16T23:46:16.570 INFO:teuthology.orchestra.run.smithi089.stdout:Unpacking rbd-fuse (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:16.809 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-09-16T23:46:16.882 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-09-16T23:46:16.914 INFO:teuthology.orchestra.run.smithi103.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-09-16T23:46:16.948 INFO:teuthology.orchestra.run.smithi103.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-09-16T23:46:17.012 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-16T23:46:17.119 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up zip (3.0-12build2) ... 2024-09-16T23:46:17.133 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-16T23:46:17.138 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-09-16T23:46:17.228 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-09-16T23:46:17.251 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up nvme-cli (1.16-3ubuntu0.3) ... 2024-09-16T23:46:17.489 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-16T23:46:17.526 INFO:teuthology.orchestra.run.smithi089.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-09-16T23:46:17.632 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-09-16T23:46:17.856 INFO:teuthology.orchestra.run.smithi089.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-09-16T23:46:17.892 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-09-16T23:46:17.938 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-09-16T23:46:18.159 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-09-16T23:46:18.222 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-09-16T23:46:18.276 INFO:teuthology.orchestra.run.smithi089.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-09-16T23:46:18.357 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-09-16T23:46:18.361 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up cephadm (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:18.461 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up zip (3.0-12build2) ... 2024-09-16T23:46:18.483 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-16T23:46:18.587 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-09-16T23:46:18.801 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-09-16T23:46:18.938 INFO:teuthology.orchestra.run.smithi089.stdout:Adding system user cephadm....done 2024-09-16T23:46:19.094 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-16T23:46:19.210 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-09-16T23:46:19.281 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-09-16T23:46:19.461 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-09-16T23:46:19.541 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-09-16T23:46:19.667 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-09-16T23:46:19.754 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-09-16T23:46:19.793 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-16T23:46:19.863 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-16T23:46:20.013 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-09-16T23:46:20.140 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-09-16T23:46:20.169 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-09-16T23:46:20.197 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-16T23:46:20.390 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-09-16T23:46:20.582 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-09-16T23:46:20.642 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-09-16T23:46:20.779 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-09-16T23:46:20.793 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-py (1.10.0-1) ... 2024-09-16T23:46:20.850 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-09-16T23:46:21.001 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-ceph-common (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:21.030 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-09-16T23:46:21.086 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-09-16T23:46:21.302 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-idna (3.3-1ubuntu0.1) ... 2024-09-16T23:46:21.415 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-16T23:46:21.438 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-09-16T23:46:21.628 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-16T23:46:21.689 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-09-16T23:46:21.691 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-16T23:46:21.957 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-09-16T23:46:22.010 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-09-16T23:46:22.175 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-09-16T23:46:22.261 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-09-16T23:46:22.396 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-ceph-common (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:22.426 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-09-16T23:46:22.680 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-idna (3.3-1ubuntu0.1) ... 2024-09-16T23:46:22.685 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-09-16T23:46:22.842 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-09-16T23:46:23.007 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-16T23:46:23.078 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-ceph-argparse (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:23.102 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T23:46:23.237 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-toml (0.10.2-1) ... 2024-09-16T23:46:23.346 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-16T23:46:23.472 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-16T23:46:23.513 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-16T23:46:23.598 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-09-16T23:46:23.647 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-09-16T23:46:23.724 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-09-16T23:46:23.798 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-16T23:46:23.976 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-09-16T23:46:24.124 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-09-16T23:46:24.205 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-09-16T23:46:24.381 INFO:teuthology.orchestra.run.smithi089.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-09-16T23:46:24.407 INFO:teuthology.orchestra.run.smithi089.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-09-16T23:46:24.426 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-09-16T23:46:24.456 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T23:46:24.462 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-16T23:46:24.592 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-toml (0.10.2-1) ... 2024-09-16T23:46:24.613 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-09-16T23:46:24.693 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T23:46:24.861 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-09-16T23:46:24.867 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-16T23:46:24.985 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-09-16T23:46:25.014 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-16T23:46:25.102 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-16T23:46:25.140 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-09-16T23:46:25.162 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-09-16T23:46:25.412 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-09-16T23:46:25.416 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-09-16T23:46:25.430 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-09-16T23:46:25.681 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-09-16T23:46:25.723 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-09-16T23:46:25.859 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-09-16T23:46:25.931 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T23:46:25.991 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-09-16T23:46:26.049 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-09-16T23:46:26.152 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up zip (3.0-12build2) ... 2024-09-16T23:46:26.253 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-09-16T23:46:26.258 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-09-16T23:46:26.342 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-09-16T23:46:26.552 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-16T23:46:26.602 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-09-16T23:46:26.677 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-09-16T23:46:26.862 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-09-16T23:46:26.922 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-09-16T23:46:26.978 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-16T23:46:27.105 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-16T23:46:27.113 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-09-16T23:46:27.189 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-09-16T23:46:27.336 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-09-16T23:46:27.364 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-09-16T23:46:27.405 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-16T23:46:27.466 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-16T23:46:27.640 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-16T23:46:27.724 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-09-16T23:46:27.750 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-09-16T23:46:27.758 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-09-16T23:46:28.000 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-16T23:46:28.034 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-16T23:46:28.101 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-09-16T23:46:28.118 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-09-16T23:46:28.144 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-16T23:46:28.202 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-09-16T23:46:28.282 INFO:teuthology.orchestra.run.smithi033.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-09-16T23:46:28.352 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-09-16T23:46:28.454 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-16T23:46:28.536 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-16T23:46:28.662 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-09-16T23:46:28.730 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-16T23:46:28.763 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-09-16T23:46:29.014 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-16T23:46:29.040 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-16T23:46:29.056 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-09-16T23:46:29.166 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-09-16T23:46:29.283 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-09-16T23:46:29.332 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-09-16T23:46:29.349 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up lua-any (27ubuntu1) ... 2024-09-16T23:46:29.355 INFO:teuthology.orchestra.run.smithi103.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-09-16T23:46:29.500 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-portend (3.0.0-1) ... 2024-09-16T23:46:29.558 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-09-16T23:46:29.585 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-16T23:46:29.684 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-ceph-common (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:29.686 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-09-16T23:46:29.776 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T23:46:29.876 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-16T23:46:29.960 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-idna (3.3-1ubuntu0.1) ... 2024-09-16T23:46:30.130 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-09-16T23:46:30.236 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-09-16T23:46:30.261 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-16T23:46:30.389 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up lua-any (27ubuntu1) ... 2024-09-16T23:46:30.516 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-portend (3.0.0-1) ... 2024-09-16T23:46:30.554 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-16T23:46:30.758 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T23:46:30.838 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-09-16T23:46:30.859 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-16T23:46:30.964 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-rsa (4.8-1) ... 2024-09-16T23:46:31.169 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-09-16T23:46:31.249 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-09-16T23:46:31.426 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-09-16T23:46:31.487 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-16T23:46:31.558 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-16T23:46:31.669 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T23:46:31.772 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-09-16T23:46:31.803 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-toml (0.10.2-1) ... 2024-09-16T23:46:31.895 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-09-16T23:46:31.898 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-rsa (4.8-1) ... 2024-09-16T23:46:32.088 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-16T23:46:32.174 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-09-16T23:46:32.214 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-09-16T23:46:32.288 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-09-16T23:46:32.323 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-16T23:46:32.433 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-16T23:46:32.581 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-09-16T23:46:32.616 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-09-16T23:46:32.771 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-09-16T23:46:32.867 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-09-16T23:46:32.942 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-16T23:46:33.043 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up librados2 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:33.093 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T23:46:33.147 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-09-16T23:46:33.169 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up libsqlite3-mod-ceph (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:33.194 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-09-16T23:46:33.295 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-09-16T23:46:33.432 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-09-16T23:46:33.479 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-09-16T23:46:33.632 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up libcephfs2 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:33.730 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-09-16T23:46:33.757 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up libradosstriper1 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:33.777 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-16T23:46:33.867 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-09-16T23:46:33.878 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up librados2 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:34.006 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up libsqlite3-mod-ceph (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:34.023 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-09-16T23:46:34.127 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up librbd1 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:34.141 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-09-16T23:46:34.253 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up ceph-mgr-modules-core (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:34.274 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-09-16T23:46:34.379 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up ceph-fuse (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:34.477 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up libcephfs2 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:34.525 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-09-16T23:46:34.595 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up libradosstriper1 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:34.598 INFO:teuthology.orchestra.run.smithi033.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-16T23:46:34.598 INFO:teuthology.orchestra.run.smithi033.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-16T23:46:34.704 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-09-16T23:46:34.784 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-16T23:46:34.910 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-09-16T23:46:34.973 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up librbd1 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:35.099 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up ceph-mgr-modules-core (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:35.105 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up libcephfs-dev (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:35.186 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-16T23:46:35.242 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up ceph-fuse (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:35.281 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-rados (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:35.321 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-16T23:46:35.441 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up librgw2 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:35.452 INFO:teuthology.orchestra.run.smithi103.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-16T23:46:35.453 INFO:teuthology.orchestra.run.smithi103.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-16T23:46:35.592 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-16T23:46:35.614 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-16T23:46:35.902 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up libcephfs-dev (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:35.906 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-09-16T23:46:36.020 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-rados (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:36.121 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up librgw2 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:36.157 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-16T23:46:36.247 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-16T23:46:36.275 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-09-16T23:46:36.401 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-09-16T23:46:36.507 INFO:teuthology.orchestra.run.smithi089.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-09-16T23:46:36.744 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-16T23:46:36.863 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-rbd (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:36.879 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-09-16T23:46:37.006 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up rbd-fuse (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:37.174 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-rgw (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:37.264 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-09-16T23:46:37.324 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up python3-cephfs (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:37.459 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-rbd (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:37.475 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up ceph-common (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:37.540 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up lua-any (27ubuntu1) ... 2024-09-16T23:46:37.577 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up rbd-fuse (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:37.666 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-portend (3.0.0-1) ... 2024-09-16T23:46:37.686 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-rgw (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:37.804 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up python3-cephfs (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:37.925 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T23:46:37.930 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up ceph-common (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:38.051 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-16T23:46:38.052 INFO:teuthology.orchestra.run.smithi033.stdout:Adding group ceph....done 2024-09-16T23:46:38.363 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-09-16T23:46:38.438 INFO:teuthology.orchestra.run.smithi033.stdout:Adding system user ceph....done 2024-09-16T23:46:38.498 INFO:teuthology.orchestra.run.smithi103.stdout:Adding group ceph....done 2024-09-16T23:46:38.563 INFO:teuthology.orchestra.run.smithi033.stdout:Setting system user ceph properties....done 2024-09-16T23:46:38.583 INFO:teuthology.orchestra.run.smithi033.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-09-16T23:46:38.653 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-16T23:46:38.738 INFO:teuthology.orchestra.run.smithi033.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-09-16T23:46:38.817 INFO:teuthology.orchestra.run.smithi103.stdout:Adding system user ceph....done 2024-09-16T23:46:38.930 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-09-16T23:46:38.986 INFO:teuthology.orchestra.run.smithi103.stdout:Setting system user ceph properties....done 2024-09-16T23:46:39.005 INFO:teuthology.orchestra.run.smithi103.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-09-16T23:46:39.055 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-rsa (4.8-1) ... 2024-09-16T23:46:39.138 INFO:teuthology.orchestra.run.smithi103.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-09-16T23:46:39.147 INFO:teuthology.orchestra.run.smithi033.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-09-16T23:46:39.315 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-09-16T23:46:39.490 INFO:teuthology.orchestra.run.smithi103.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-09-16T23:46:39.566 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-16T23:46:39.618 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up ceph-test (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:39.911 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-09-16T23:46:39.928 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up radosgw (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:39.941 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up ceph-test (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:40.067 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up radosgw (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:40.288 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-09-16T23:46:40.417 INFO:teuthology.orchestra.run.smithi033.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-16T23:46:40.417 INFO:teuthology.orchestra.run.smithi033.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-16T23:46:40.520 INFO:teuthology.orchestra.run.smithi103.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-16T23:46:40.521 INFO:teuthology.orchestra.run.smithi103.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-16T23:46:40.573 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-09-16T23:46:40.871 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up ceph-base (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:40.936 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up ceph-base (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:40.942 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-16T23:46:41.051 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up librados2 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:41.152 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up libsqlite3-mod-ceph (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:41.234 INFO:teuthology.orchestra.run.smithi033.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-09-16T23:46:41.261 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-09-16T23:46:41.278 INFO:teuthology.orchestra.run.smithi103.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-09-16T23:46:41.598 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up libcephfs2 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:41.690 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up ceph-mds (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:41.732 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up libradosstriper1 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:41.765 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up ceph-mds (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:41.858 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-09-16T23:46:41.944 INFO:teuthology.orchestra.run.smithi033.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-16T23:46:41.944 INFO:teuthology.orchestra.run.smithi033.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-16T23:46:41.987 INFO:teuthology.orchestra.run.smithi103.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-16T23:46:41.987 INFO:teuthology.orchestra.run.smithi103.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-16T23:46:42.135 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up librbd1 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:42.261 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up ceph-mgr-modules-core (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:42.387 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up ceph-fuse (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:42.391 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up ceph-mgr (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:42.514 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up ceph-mgr (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:42.601 INFO:teuthology.orchestra.run.smithi089.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-16T23:46:42.601 INFO:teuthology.orchestra.run.smithi089.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-16T23:46:42.602 INFO:teuthology.orchestra.run.smithi033.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-16T23:46:42.602 INFO:teuthology.orchestra.run.smithi033.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-16T23:46:42.796 INFO:teuthology.orchestra.run.smithi103.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-16T23:46:42.796 INFO:teuthology.orchestra.run.smithi103.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-16T23:46:43.038 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up libcephfs-dev (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:43.067 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up ceph-osd (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:43.164 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-rados (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:43.237 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up ceph-osd (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:43.290 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up librgw2 (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:43.355 INFO:teuthology.orchestra.run.smithi033.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-16T23:46:43.355 INFO:teuthology.orchestra.run.smithi033.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-16T23:46:43.416 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-16T23:46:43.507 INFO:teuthology.orchestra.run.smithi103.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-16T23:46:43.508 INFO:teuthology.orchestra.run.smithi103.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-16T23:46:43.819 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up ceph-mgr-k8sevents (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:43.939 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up ceph-mgr-k8sevents (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:43.945 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up ceph-mgr-diskprediction-local (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:44.065 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up ceph-mgr-diskprediction-local (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:44.096 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up ceph-mon (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:44.216 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up ceph-mon (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:44.326 INFO:teuthology.orchestra.run.smithi033.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-16T23:46:44.326 INFO:teuthology.orchestra.run.smithi033.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-16T23:46:44.429 INFO:teuthology.orchestra.run.smithi103.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-16T23:46:44.430 INFO:teuthology.orchestra.run.smithi103.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-16T23:46:44.628 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-rbd (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:44.763 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up rbd-fuse (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:44.816 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up ceph-mgr-cephadm (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:44.889 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-rgw (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:44.917 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up ceph-mgr-cephadm (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:44.959 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up ceph (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:44.990 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up python3-cephfs (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:45.068 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up ceph (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:45.085 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up ceph-mgr-dashboard (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:45.090 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up ceph-common (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:45.178 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up ceph-mgr-dashboard (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:45.236 INFO:teuthology.orchestra.run.smithi033.stdout:Setting up ceph-volume (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:45.312 INFO:teuthology.orchestra.run.smithi103.stdout:Setting up ceph-volume (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:45.633 INFO:teuthology.orchestra.run.smithi089.stdout:Adding group ceph....done 2024-09-16T23:46:45.641 INFO:teuthology.orchestra.run.smithi033.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-09-16T23:46:45.666 INFO:teuthology.orchestra.run.smithi103.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-09-16T23:46:45.775 INFO:teuthology.orchestra.run.smithi033.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-09-16T23:46:45.775 INFO:teuthology.orchestra.run.smithi103.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-09-16T23:46:45.928 INFO:teuthology.orchestra.run.smithi033.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-09-16T23:46:45.985 INFO:teuthology.orchestra.run.smithi089.stdout:Adding system user ceph....done 2024-09-16T23:46:46.004 INFO:teuthology.orchestra.run.smithi103.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-09-16T23:46:46.161 INFO:teuthology.orchestra.run.smithi089.stdout:Setting system user ceph properties....done 2024-09-16T23:46:46.178 INFO:teuthology.orchestra.run.smithi089.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-09-16T23:46:46.314 INFO:teuthology.orchestra.run.smithi089.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-09-16T23:46:46.617 INFO:teuthology.orchestra.run.smithi089.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-09-16T23:46:47.005 INFO:teuthology.orchestra.run.smithi103.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-09-16T23:46:47.067 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up ceph-test (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:47.112 INFO:teuthology.orchestra.run.smithi033.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-09-16T23:46:47.209 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up radosgw (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:47.645 INFO:teuthology.orchestra.run.smithi103.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-09-16T23:46:47.651 DEBUG:teuthology.parallel:result is None 2024-09-16T23:46:47.689 INFO:teuthology.orchestra.run.smithi089.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-16T23:46:47.689 INFO:teuthology.orchestra.run.smithi089.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-16T23:46:47.798 INFO:teuthology.orchestra.run.smithi033.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-09-16T23:46:47.803 DEBUG:teuthology.parallel:result is None 2024-09-16T23:46:48.111 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up ceph-base (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:48.469 INFO:teuthology.orchestra.run.smithi089.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-09-16T23:46:48.930 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up ceph-mds (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:49.149 INFO:teuthology.orchestra.run.smithi089.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-16T23:46:49.149 INFO:teuthology.orchestra.run.smithi089.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-16T23:46:49.600 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up ceph-mgr (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:49.811 INFO:teuthology.orchestra.run.smithi089.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-16T23:46:49.811 INFO:teuthology.orchestra.run.smithi089.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-16T23:46:50.283 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up ceph-osd (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:50.550 INFO:teuthology.orchestra.run.smithi089.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-16T23:46:50.551 INFO:teuthology.orchestra.run.smithi089.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-16T23:46:51.034 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up ceph-mgr-k8sevents (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:51.161 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up ceph-mgr-diskprediction-local (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:51.303 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up ceph-mon (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:51.548 INFO:teuthology.orchestra.run.smithi089.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-16T23:46:51.549 INFO:teuthology.orchestra.run.smithi089.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-16T23:46:52.022 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up ceph-mgr-cephadm (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:52.182 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up ceph (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:52.283 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up ceph-mgr-dashboard (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:52.434 INFO:teuthology.orchestra.run.smithi089.stdout:Setting up ceph-volume (19.1.1-330-gc2ddf972-1jammy) ... 2024-09-16T23:46:52.786 INFO:teuthology.orchestra.run.smithi089.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-09-16T23:46:52.896 INFO:teuthology.orchestra.run.smithi089.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-09-16T23:46:53.057 INFO:teuthology.orchestra.run.smithi089.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-09-16T23:46:54.191 INFO:teuthology.orchestra.run.smithi089.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-09-16T23:46:54.858 INFO:teuthology.orchestra.run.smithi089.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-09-16T23:46:54.863 DEBUG:teuthology.parallel:result is None 2024-09-16T23:46:54.863 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-16T23:46:55.013 DEBUG:teuthology.orchestra.run.smithi033:> dpkg-query -W -f '${Version}' ceph 2024-09-16T23:46:55.033 INFO:teuthology.orchestra.run.smithi033.stdout:19.1.1-330-gc2ddf972-1jammy 2024-09-16T23:46:55.033 INFO:teuthology.packaging:The installed version of ceph is 19.1.1-330-gc2ddf972-1jammy 2024-09-16T23:46:55.033 INFO:teuthology.task.install:The correct ceph version 19.1.1-330-gc2ddf972-1jammy is installed. 2024-09-16T23:46:55.035 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-16T23:46:55.173 DEBUG:teuthology.orchestra.run.smithi089:> dpkg-query -W -f '${Version}' ceph 2024-09-16T23:46:55.193 INFO:teuthology.orchestra.run.smithi089.stdout:19.1.1-330-gc2ddf972-1jammy 2024-09-16T23:46:55.193 INFO:teuthology.packaging:The installed version of ceph is 19.1.1-330-gc2ddf972-1jammy 2024-09-16T23:46:55.193 INFO:teuthology.task.install:The correct ceph version 19.1.1-330-gc2ddf972-1jammy is installed. 2024-09-16T23:46:55.195 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-16T23:46:55.336 DEBUG:teuthology.orchestra.run.smithi103:> dpkg-query -W -f '${Version}' ceph 2024-09-16T23:46:55.356 INFO:teuthology.orchestra.run.smithi103.stdout:19.1.1-330-gc2ddf972-1jammy 2024-09-16T23:46:55.356 INFO:teuthology.packaging:The installed version of ceph is 19.1.1-330-gc2ddf972-1jammy 2024-09-16T23:46:55.356 INFO:teuthology.task.install:The correct ceph version 19.1.1-330-gc2ddf972-1jammy is installed. 2024-09-16T23:46:55.358 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-09-16T23:46:55.358 DEBUG:teuthology.orchestra.run.smithi033:> set -ex 2024-09-16T23:46:55.358 DEBUG:teuthology.orchestra.run.smithi033:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-16T23:46:55.373 DEBUG:teuthology.orchestra.run.smithi089:> set -ex 2024-09-16T23:46:55.373 DEBUG:teuthology.orchestra.run.smithi089:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-16T23:46:55.387 DEBUG:teuthology.orchestra.run.smithi103:> set -ex 2024-09-16T23:46:55.387 DEBUG:teuthology.orchestra.run.smithi103:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-16T23:46:55.411 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-09-16T23:46:55.411 DEBUG:teuthology.orchestra.run.smithi033:> set -ex 2024-09-16T23:46:55.411 DEBUG:teuthology.orchestra.run.smithi033:> sudo dd of=/usr/bin/daemon-helper 2024-09-16T23:46:55.428 DEBUG:teuthology.orchestra.run.smithi033:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-16T23:46:55.483 DEBUG:teuthology.orchestra.run.smithi089:> set -ex 2024-09-16T23:46:55.484 DEBUG:teuthology.orchestra.run.smithi089:> sudo dd of=/usr/bin/daemon-helper 2024-09-16T23:46:55.497 DEBUG:teuthology.orchestra.run.smithi089:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-16T23:46:55.553 DEBUG:teuthology.orchestra.run.smithi103:> set -ex 2024-09-16T23:46:55.553 DEBUG:teuthology.orchestra.run.smithi103:> sudo dd of=/usr/bin/daemon-helper 2024-09-16T23:46:55.569 DEBUG:teuthology.orchestra.run.smithi103:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-16T23:46:55.626 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-09-16T23:46:55.626 DEBUG:teuthology.orchestra.run.smithi033:> set -ex 2024-09-16T23:46:55.626 DEBUG:teuthology.orchestra.run.smithi033:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-16T23:46:55.640 DEBUG:teuthology.orchestra.run.smithi033:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-16T23:46:55.696 DEBUG:teuthology.orchestra.run.smithi089:> set -ex 2024-09-16T23:46:55.696 DEBUG:teuthology.orchestra.run.smithi089:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-16T23:46:55.710 DEBUG:teuthology.orchestra.run.smithi089:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-16T23:46:55.765 DEBUG:teuthology.orchestra.run.smithi103:> set -ex 2024-09-16T23:46:55.765 DEBUG:teuthology.orchestra.run.smithi103:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-16T23:46:55.779 DEBUG:teuthology.orchestra.run.smithi103:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-16T23:46:55.834 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-09-16T23:46:55.834 DEBUG:teuthology.orchestra.run.smithi033:> set -ex 2024-09-16T23:46:55.834 DEBUG:teuthology.orchestra.run.smithi033:> sudo dd of=/usr/bin/stdin-killer 2024-09-16T23:46:55.849 DEBUG:teuthology.orchestra.run.smithi033:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-16T23:46:55.904 DEBUG:teuthology.orchestra.run.smithi089:> set -ex 2024-09-16T23:46:55.905 DEBUG:teuthology.orchestra.run.smithi089:> sudo dd of=/usr/bin/stdin-killer 2024-09-16T23:46:55.918 DEBUG:teuthology.orchestra.run.smithi089:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-16T23:46:55.973 DEBUG:teuthology.orchestra.run.smithi103:> set -ex 2024-09-16T23:46:55.974 DEBUG:teuthology.orchestra.run.smithi103:> sudo dd of=/usr/bin/stdin-killer 2024-09-16T23:46:55.987 DEBUG:teuthology.orchestra.run.smithi103:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-16T23:46:56.042 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-16T23:46:56.133 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', 'CEPHADM_STRAY_HOST', 'CEPHADM_STRAY_DAEMON', 'CEPHADM_FAILED_DAEMON'], 'log-only-match': ['CEPHADM_'], 'sha1': 'c2ddf9721ef254645201cdbabd9c8f49c30a586f'} 2024-09-16T23:46:56.133 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-16T23:46:56.134 INFO:tasks.cephadm:Cluster fsid is f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:46:56.134 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-16T23:46:56.134 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.33', 'mon.b': '172.21.15.89', 'mon.c': '172.21.15.103'} 2024-09-16T23:46:56.134 INFO:tasks.cephadm:First mon is mon.a on smithi033 2024-09-16T23:46:56.134 INFO:tasks.cephadm:First mgr is a 2024-09-16T23:46:56.134 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-16T23:46:56.134 DEBUG:teuthology.orchestra.run.smithi033:> sudo hostname $(hostname -s) 2024-09-16T23:46:56.149 DEBUG:teuthology.orchestra.run.smithi089:> sudo hostname $(hostname -s) 2024-09-16T23:46:56.163 DEBUG:teuthology.orchestra.run.smithi103:> sudo hostname $(hostname -s) 2024-09-16T23:46:56.178 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-09-16T23:46:56.178 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-16T23:46:56.321 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': 'c2ddf9721ef254645201cdbabd9c8f49c30a586f', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic/56092/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.1.1-330-gc2ddf972', 'node_name': '172.21.5.33+adami03', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic', 'package_manager_version': '19.1.1-330-gc2ddf972-1jammy'}, 'url': 'https://3.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-09-16 16:18:56.295530', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'squid', 'chacra_url': 'https://3.chacra.ceph.com/repos/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}] 2024-09-16T23:46:56.464 INFO:tasks.util.chacra:got chacra host 3.chacra.ceph.com, ref squid, sha1 c2ddf9721ef254645201cdbabd9c8f49c30a586f from https://shaman.ceph.com/api/search/?project=ceph&distros=ubuntu%2F22.04%2Fx86_64&flavor=default&sha1=c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-16T23:46:56.466 INFO:tasks.cephadm:Discovered cachra url: https://3.chacra.ceph.com/binaries/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-09-16T23:46:56.466 INFO:tasks.cephadm:Downloading cephadm from url: https://3.chacra.ceph.com/binaries/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-09-16T23:46:56.466 DEBUG:teuthology.orchestra.run.smithi033:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-16T23:46:57.107 INFO:teuthology.orchestra.run.smithi033.stdout:-rw-rw-r-- 1 ubuntu ubuntu 791817 Sep 16 23:46 /home/ubuntu/cephtest/cephadm 2024-09-16T23:46:57.107 DEBUG:teuthology.orchestra.run.smithi089:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-16T23:46:57.739 INFO:teuthology.orchestra.run.smithi089.stdout:-rw-rw-r-- 1 ubuntu ubuntu 791817 Sep 16 23:46 /home/ubuntu/cephtest/cephadm 2024-09-16T23:46:57.740 DEBUG:teuthology.orchestra.run.smithi103:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-16T23:46:58.379 INFO:teuthology.orchestra.run.smithi103.stdout:-rw-rw-r-- 1 ubuntu ubuntu 791817 Sep 16 23:46 /home/ubuntu/cephtest/cephadm 2024-09-16T23:46:58.380 DEBUG:teuthology.orchestra.run.smithi033:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-16T23:46:58.388 DEBUG:teuthology.orchestra.run.smithi089:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-16T23:46:58.395 DEBUG:teuthology.orchestra.run.smithi103:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-16T23:46:58.413 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f on all hosts... 2024-09-16T23:46:58.413 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f pull 2024-09-16T23:46:58.433 DEBUG:teuthology.orchestra.run.smithi089:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f pull 2024-09-16T23:46:58.439 DEBUG:teuthology.orchestra.run.smithi103:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f pull 2024-09-16T23:46:58.621 INFO:teuthology.orchestra.run.smithi089.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f... 2024-09-16T23:46:58.622 INFO:teuthology.orchestra.run.smithi033.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f... 2024-09-16T23:46:58.629 INFO:teuthology.orchestra.run.smithi103.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f... 2024-09-16T23:47:53.676 INFO:teuthology.orchestra.run.smithi089.stdout:{ 2024-09-16T23:47:53.677 INFO:teuthology.orchestra.run.smithi089.stdout: "ceph_version": "ceph version 19.1.1-330-gc2ddf972 (c2ddf9721ef254645201cdbabd9c8f49c30a586f) squid (stable)", 2024-09-16T23:47:53.677 INFO:teuthology.orchestra.run.smithi089.stdout: "image_id": "ebb0615149def4a3179c82c0cc47af75808300abb9f1142788e5e605a7ac0e5b", 2024-09-16T23:47:53.677 INFO:teuthology.orchestra.run.smithi089.stdout: "repo_digests": [ 2024-09-16T23:47:53.677 INFO:teuthology.orchestra.run.smithi089.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3" 2024-09-16T23:47:53.677 INFO:teuthology.orchestra.run.smithi089.stdout: ] 2024-09-16T23:47:53.677 INFO:teuthology.orchestra.run.smithi089.stdout:} 2024-09-16T23:48:12.942 INFO:teuthology.orchestra.run.smithi103.stdout:{ 2024-09-16T23:48:12.943 INFO:teuthology.orchestra.run.smithi103.stdout: "ceph_version": "ceph version 19.1.1-330-gc2ddf972 (c2ddf9721ef254645201cdbabd9c8f49c30a586f) squid (stable)", 2024-09-16T23:48:12.943 INFO:teuthology.orchestra.run.smithi103.stdout: "image_id": "ebb0615149def4a3179c82c0cc47af75808300abb9f1142788e5e605a7ac0e5b", 2024-09-16T23:48:12.943 INFO:teuthology.orchestra.run.smithi103.stdout: "repo_digests": [ 2024-09-16T23:48:12.943 INFO:teuthology.orchestra.run.smithi103.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3" 2024-09-16T23:48:12.943 INFO:teuthology.orchestra.run.smithi103.stdout: ] 2024-09-16T23:48:12.943 INFO:teuthology.orchestra.run.smithi103.stdout:} 2024-09-16T23:48:14.834 INFO:teuthology.orchestra.run.smithi033.stdout:{ 2024-09-16T23:48:14.834 INFO:teuthology.orchestra.run.smithi033.stdout: "ceph_version": "ceph version 19.1.1-330-gc2ddf972 (c2ddf9721ef254645201cdbabd9c8f49c30a586f) squid (stable)", 2024-09-16T23:48:14.834 INFO:teuthology.orchestra.run.smithi033.stdout: "image_id": "ebb0615149def4a3179c82c0cc47af75808300abb9f1142788e5e605a7ac0e5b", 2024-09-16T23:48:14.834 INFO:teuthology.orchestra.run.smithi033.stdout: "repo_digests": [ 2024-09-16T23:48:14.834 INFO:teuthology.orchestra.run.smithi033.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3" 2024-09-16T23:48:14.834 INFO:teuthology.orchestra.run.smithi033.stdout: ] 2024-09-16T23:48:14.835 INFO:teuthology.orchestra.run.smithi033.stdout:} 2024-09-16T23:48:14.877 DEBUG:teuthology.orchestra.run.smithi033:> sudo mkdir -p /etc/ceph 2024-09-16T23:48:14.891 DEBUG:teuthology.orchestra.run.smithi089:> sudo mkdir -p /etc/ceph 2024-09-16T23:48:14.905 DEBUG:teuthology.orchestra.run.smithi103:> sudo mkdir -p /etc/ceph 2024-09-16T23:48:14.921 DEBUG:teuthology.orchestra.run.smithi033:> sudo chmod 777 /etc/ceph 2024-09-16T23:48:14.947 DEBUG:teuthology.orchestra.run.smithi089:> sudo chmod 777 /etc/ceph 2024-09-16T23:48:14.960 DEBUG:teuthology.orchestra.run.smithi103:> sudo chmod 777 /etc/ceph 2024-09-16T23:48:14.977 INFO:tasks.cephadm:Writing seed config... 2024-09-16T23:48:14.978 INFO:tasks.cephadm: override: [global] mon election default strategy = 1 2024-09-16T23:48:14.978 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-16T23:48:14.978 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-16T23:48:14.978 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = False 2024-09-16T23:48:14.979 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-16T23:48:14.979 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-16T23:48:14.979 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-16T23:48:14.979 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-16T23:48:14.979 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-16T23:48:14.979 DEBUG:teuthology.orchestra.run.smithi033:> set -ex 2024-09-16T23:48:14.979 DEBUG:teuthology.orchestra.run.smithi033:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-16T23:48:14.996 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 to file = true 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 = f4fb0768-7485-11ef-bceb-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-16T23:48:14.997 DEBUG:teuthology.orchestra.run.smithi033:mon.a> sudo journalctl -f -n 0 -u ceph-f4fb0768-7485-11ef-bceb-c7b262605968@mon.a.service 2024-09-16T23:48:15.041 DEBUG:teuthology.orchestra.run.smithi033:mgr.a> sudo journalctl -f -n 0 -u ceph-f4fb0768-7485-11ef-bceb-c7b262605968@mgr.a.service 2024-09-16T23:48:15.084 INFO:tasks.cephadm:Bootstrapping... 2024-09-16T23:48:15.085 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f -v bootstrap --fsid f4fb0768-7485-11ef-bceb-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.33 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-16T23:48:15.307 INFO:teuthology.orchestra.run.smithi033.stdout:-------------------------------------------------------------------------------- 2024-09-16T23:48:15.308 INFO:teuthology.orchestra.run.smithi033.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f', '-v', 'bootstrap', '--fsid', 'f4fb0768-7485-11ef-bceb-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.33', '--skip-admin-label'] 2024-09-16T23:48:15.308 INFO:teuthology.orchestra.run.smithi033.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-16T23:48:15.308 INFO:teuthology.orchestra.run.smithi033.stdout:Verifying podman|docker is present... 2024-09-16T23:48:15.309 INFO:teuthology.orchestra.run.smithi033.stdout:Verifying lvm2 is present... 2024-09-16T23:48:15.309 INFO:teuthology.orchestra.run.smithi033.stdout:Verifying time synchronization is in place... 2024-09-16T23:48:15.314 INFO:teuthology.orchestra.run.smithi033.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-16T23:48:15.314 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-16T23:48:15.319 INFO:teuthology.orchestra.run.smithi033.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-16T23:48:15.319 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stdout inactive 2024-09-16T23:48:15.323 INFO:teuthology.orchestra.run.smithi033.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-16T23:48:15.324 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-16T23:48:15.328 INFO:teuthology.orchestra.run.smithi033.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-16T23:48:15.328 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stdout inactive 2024-09-16T23:48:15.331 INFO:teuthology.orchestra.run.smithi033.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-16T23:48:15.331 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stdout masked 2024-09-16T23:48:15.335 INFO:teuthology.orchestra.run.smithi033.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-16T23:48:15.335 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stdout inactive 2024-09-16T23:48:15.339 INFO:teuthology.orchestra.run.smithi033.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-16T23:48:15.339 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-16T23:48:15.342 INFO:teuthology.orchestra.run.smithi033.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-16T23:48:15.343 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stdout inactive 2024-09-16T23:48:15.346 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stdout enabled 2024-09-16T23:48:15.350 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stdout active 2024-09-16T23:48:15.350 INFO:teuthology.orchestra.run.smithi033.stdout:Unit ntp.service is enabled and running 2024-09-16T23:48:15.351 INFO:teuthology.orchestra.run.smithi033.stdout:Repeating the final host check... 2024-09-16T23:48:15.351 INFO:teuthology.orchestra.run.smithi033.stdout:docker (/usr/bin/docker) is present 2024-09-16T23:48:15.351 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl is present 2024-09-16T23:48:15.351 INFO:teuthology.orchestra.run.smithi033.stdout:lvcreate is present 2024-09-16T23:48:15.354 INFO:teuthology.orchestra.run.smithi033.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-16T23:48:15.354 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-16T23:48:15.358 INFO:teuthology.orchestra.run.smithi033.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-16T23:48:15.358 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stdout inactive 2024-09-16T23:48:15.361 INFO:teuthology.orchestra.run.smithi033.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-16T23:48:15.362 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-16T23:48:15.365 INFO:teuthology.orchestra.run.smithi033.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-16T23:48:15.365 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stdout inactive 2024-09-16T23:48:15.369 INFO:teuthology.orchestra.run.smithi033.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-16T23:48:15.369 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stdout masked 2024-09-16T23:48:15.372 INFO:teuthology.orchestra.run.smithi033.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-16T23:48:15.373 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stdout inactive 2024-09-16T23:48:15.376 INFO:teuthology.orchestra.run.smithi033.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-16T23:48:15.376 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-16T23:48:15.380 INFO:teuthology.orchestra.run.smithi033.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-16T23:48:15.380 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stdout inactive 2024-09-16T23:48:15.384 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stdout enabled 2024-09-16T23:48:15.388 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stdout active 2024-09-16T23:48:15.388 INFO:teuthology.orchestra.run.smithi033.stdout:Unit ntp.service is enabled and running 2024-09-16T23:48:15.388 INFO:teuthology.orchestra.run.smithi033.stdout:Host looks OK 2024-09-16T23:48:15.388 INFO:teuthology.orchestra.run.smithi033.stdout:Cluster fsid: f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:48:15.389 INFO:teuthology.orchestra.run.smithi033.stdout:Acquiring lock 139896332614480 on /run/cephadm/f4fb0768-7485-11ef-bceb-c7b262605968.lock 2024-09-16T23:48:15.389 INFO:teuthology.orchestra.run.smithi033.stdout:Lock 139896332614480 acquired on /run/cephadm/f4fb0768-7485-11ef-bceb-c7b262605968.lock 2024-09-16T23:48:15.389 INFO:teuthology.orchestra.run.smithi033.stdout:Verifying IP 172.21.15.33 port 3300 ... 2024-09-16T23:48:15.389 INFO:teuthology.orchestra.run.smithi033.stdout:Verifying IP 172.21.15.33 port 6789 ... 2024-09-16T23:48:15.389 INFO:teuthology.orchestra.run.smithi033.stdout:Base mon IP(s) is [172.21.15.33:3300, 172.21.15.33:6789], mon addrv is [v2:172.21.15.33:3300,v1:172.21.15.33:6789] 2024-09-16T23:48:15.391 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 2024-09-16T23:48:15.391 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/sbin/ip: stdout 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-09-16T23:48:15.391 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.33 2024-09-16T23:48:15.393 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-16T23:48:15.393 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2024-09-16T23:48:15.393 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1774sec hoplimit 64 pref medium 2024-09-16T23:48:15.395 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-16T23:48:15.395 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-16T23:48:15.395 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-16T23:48:15.395 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/sbin/ip: stdout 4: ens1f0: mtu 1500 state UP qlen 1000 2024-09-16T23:48:15.396 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/sbin/ip: stdout inet6 fe80::ae1f:6bff:fea5:d294/64 scope link 2024-09-16T23:48:15.396 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-16T23:48:15.396 INFO:teuthology.orchestra.run.smithi033.stdout:Mon IP `172.21.15.33` is in CIDR network `172.21.0.0/20` 2024-09-16T23:48:15.396 INFO:teuthology.orchestra.run.smithi033.stdout:Mon IP `172.21.15.33` is in CIDR network `172.21.0.0/20` 2024-09-16T23:48:15.397 INFO:teuthology.orchestra.run.smithi033.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-09-16T23:48:15.397 INFO:teuthology.orchestra.run.smithi033.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-16T23:48:15.397 INFO:teuthology.orchestra.run.smithi033.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f... 2024-09-16T23:48:15.628 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/docker: stdout c2ddf9721ef254645201cdbabd9c8f49c30a586f: Pulling from ceph-ci/ceph 2024-09-16T23:48:15.629 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/docker: stdout Digest: sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3 2024-09-16T23:48:15.629 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/docker: stdout Status: Image is up to date for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-16T23:48:15.629 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/docker: stdout quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-16T23:48:17.316 INFO:teuthology.orchestra.run.smithi033.stdout:ceph: stdout ceph version 19.1.1-330-gc2ddf972 (c2ddf9721ef254645201cdbabd9c8f49c30a586f) squid (stable) 2024-09-16T23:48:17.316 INFO:teuthology.orchestra.run.smithi033.stdout:Ceph version: ceph version 19.1.1-330-gc2ddf972 (c2ddf9721ef254645201cdbabd9c8f49c30a586f) squid (stable) 2024-09-16T23:48:17.316 INFO:teuthology.orchestra.run.smithi033.stdout:Extracting ceph user uid/gid from container image... 2024-09-16T23:48:18.738 INFO:teuthology.orchestra.run.smithi033.stdout:stat: stdout 167 167 2024-09-16T23:48:18.738 INFO:teuthology.orchestra.run.smithi033.stdout:Creating initial keys... 2024-09-16T23:48:20.228 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-authtool: stdout AQDDw+hm6jhRJRAAhEt1+8UAOmqkMcfyggRu+w== 2024-09-16T23:48:21.686 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-authtool: stdout AQDFw+hmX+6lCRAAc1Owb1HjONWP8/QaofavWQ== 2024-09-16T23:48:23.158 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-authtool: stdout AQDGw+hmNxsgJBAA7/yuoXXabKI7tQKjQdJ0rQ== 2024-09-16T23:48:23.158 INFO:teuthology.orchestra.run.smithi033.stdout:Creating initial monmap... 2024-09-16T23:48:24.615 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-16T23:48:24.615 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-09-16T23:48:24.615 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:48:24.615 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-16T23:48:24.615 INFO:teuthology.orchestra.run.smithi033.stdout:monmaptool for a [v2:172.21.15.33:3300,v1:172.21.15.33:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-16T23:48:24.616 INFO:teuthology.orchestra.run.smithi033.stdout:setting min_mon_release = quincy 2024-09-16T23:48:24.616 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/monmaptool: set fsid to f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:48:24.616 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-16T23:48:24.616 INFO:teuthology.orchestra.run.smithi033.stdout: 2024-09-16T23:48:24.616 INFO:teuthology.orchestra.run.smithi033.stdout:Creating mon... 2024-09-16T23:48:26.148 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.550+0000 7f9bd2241c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-16T23:48:26.148 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 1 imported monmap: 2024-09-16T23:48:26.148 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr epoch 0 2024-09-16T23:48:26.148 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr fsid f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:48:26.148 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr last_changed 2024-09-16T23:48:24.081012+0000 2024-09-16T23:48:26.148 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr created 2024-09-16T23:48:24.081012+0000 2024-09-16T23:48:26.148 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr min_mon_release 17 (quincy) 2024-09-16T23:48:26.148 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr election_strategy: 1 2024-09-16T23:48:26.149 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr 0: [v2:172.21.15.33:3300/0,v1:172.21.15.33:6789/0] mon.a 2024-09-16T23:48:26.149 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T23:48:26.149 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 0 /usr/bin/ceph-mon: set fsid to f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:48:26.149 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: RocksDB version: 7.9.2 2024-09-16T23:48:26.149 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T23:48:26.149 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Git sha 0 2024-09-16T23:48:26.149 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Compile date 2024-09-16 15:09:42 2024-09-16T23:48:26.149 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: DB SUMMARY 2024-09-16T23:48:26.149 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T23:48:26.149 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: DB Session ID: 9ZD3BQTDV2TZACRCWYAT 2024-09-16T23:48:26.149 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T23:48:26.149 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 0, files: 2024-09-16T23:48:26.149 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T23:48:26.150 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 2024-09-16T23:48:26.150 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T23:48:26.150 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.error_if_exists: 0 2024-09-16T23:48:26.150 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.create_if_missing: 1 2024-09-16T23:48:26.150 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.paranoid_checks: 1 2024-09-16T23:48:26.150 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-16T23:48:26.150 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-16T23:48:26.150 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-16T23:48:26.150 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.env: 0x562f749dd940 2024-09-16T23:48:26.150 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-16T23:48:26.150 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.info_log: 0x562f756e6bc0 2024-09-16T23:48:26.150 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-16T23:48:26.151 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.statistics: (nil) 2024-09-16T23:48:26.151 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.use_fsync: 0 2024-09-16T23:48:26.151 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.max_log_file_size: 0 2024-09-16T23:48:26.151 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-16T23:48:26.151 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-16T23:48:26.151 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-16T23:48:26.151 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-16T23:48:26.151 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.allow_fallocate: 1 2024-09-16T23:48:26.151 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-16T23:48:26.151 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-16T23:48:26.151 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.use_direct_reads: 0 2024-09-16T23:48:26.151 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-16T23:48:26.151 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-16T23:48:26.152 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.db_log_dir: 2024-09-16T23:48:26.152 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.wal_dir: 2024-09-16T23:48:26.152 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-16T23:48:26.152 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-16T23:48:26.152 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-16T23:48:26.152 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-16T23:48:26.152 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-16T23:48:26.152 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-16T23:48:26.152 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-16T23:48:26.152 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-16T23:48:26.152 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.write_buffer_manager: 0x562f756ed4a0 2024-09-16T23:48:26.152 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-16T23:48:26.152 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-16T23:48:26.153 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-16T23:48:26.153 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-16T23:48:26.153 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-16T23:48:26.153 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-16T23:48:26.153 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-16T23:48:26.153 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-16T23:48:26.153 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.unordered_write: 0 2024-09-16T23:48:26.153 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-16T23:48:26.153 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-16T23:48:26.153 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-16T23:48:26.153 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-16T23:48:26.154 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.row_cache: None 2024-09-16T23:48:26.154 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.wal_filter: None 2024-09-16T23:48:26.154 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-16T23:48:26.154 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-16T23:48:26.154 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.two_write_queues: 0 2024-09-16T23:48:26.154 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-16T23:48:26.154 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.wal_compression: 0 2024-09-16T23:48:26.154 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.atomic_flush: 0 2024-09-16T23:48:26.154 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-16T23:48:26.154 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-16T23:48:26.154 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-16T23:48:26.154 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.log_readahead_size: 0 2024-09-16T23:48:26.154 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-16T23:48:26.155 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-16T23:48:26.155 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-16T23:48:26.155 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-16T23:48:26.155 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-16T23:48:26.155 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-16T23:48:26.155 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-16T23:48:26.155 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.max_background_jobs: 2 2024-09-16T23:48:26.155 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.max_background_compactions: -1 2024-09-16T23:48:26.155 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.max_subcompactions: 1 2024-09-16T23:48:26.155 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-16T23:48:26.155 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-16T23:48:26.155 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-16T23:48:26.155 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-16T23:48:26.156 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-16T23:48:26.156 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-16T23:48:26.156 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-16T23:48:26.156 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-16T23:48:26.156 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.max_open_files: -1 2024-09-16T23:48:26.156 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-16T23:48:26.156 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-16T23:48:26.156 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-16T23:48:26.156 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-16T23:48:26.156 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.max_background_flushes: -1 2024-09-16T23:48:26.156 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Compression algorithms supported: 2024-09-16T23:48:26.156 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: kZSTD supported: 0 2024-09-16T23:48:26.157 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: kXpressCompression supported: 0 2024-09-16T23:48:26.157 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: kBZip2Compression supported: 0 2024-09-16T23:48:26.157 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-16T23:48:26.157 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: kLZ4Compression supported: 1 2024-09-16T23:48:26.157 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: kZlibCompression supported: 1 2024-09-16T23:48:26.157 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-16T23:48:26.157 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: kSnappyCompression supported: 1 2024-09-16T23:48:26.157 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-16T23:48:26.157 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-16T23:48:26.157 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: [db/db_impl/db_impl_open.cc:317] Creating manifest 1 2024-09-16T23:48:26.157 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T23:48:26.157 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000001 2024-09-16T23:48:26.157 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T23:48:26.157 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-16T23:48:26.158 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T23:48:26.158 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-16T23:48:26.158 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.merge_operator: 2024-09-16T23:48:26.158 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.compaction_filter: None 2024-09-16T23:48:26.158 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-16T23:48:26.158 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-16T23:48:26.158 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-16T23:48:26.158 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-16T23:48:26.158 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x562f756e6800) 2024-09-16T23:48:26.158 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks: 1 2024-09-16T23:48:26.158 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks_with_high_priority: 0 2024-09-16T23:48:26.158 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-16T23:48:26.158 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr pin_top_level_index_and_filter: 1 2024-09-16T23:48:26.159 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr index_type: 0 2024-09-16T23:48:26.159 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr data_block_index_type: 0 2024-09-16T23:48:26.159 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr index_shortening: 1 2024-09-16T23:48:26.159 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr data_block_hash_table_util_ratio: 0.750000 2024-09-16T23:48:26.159 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr checksum: 4 2024-09-16T23:48:26.159 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr no_block_cache: 0 2024-09-16T23:48:26.159 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr block_cache: 0x562f756d11f0 2024-09-16T23:48:26.159 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr block_cache_name: BinnedLRUCache 2024-09-16T23:48:26.159 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr block_cache_options: 2024-09-16T23:48:26.159 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr capacity : 536870912 2024-09-16T23:48:26.159 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr num_shard_bits : 4 2024-09-16T23:48:26.159 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr strict_capacity_limit : 0 2024-09-16T23:48:26.159 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr high_pri_pool_ratio: 0.000 2024-09-16T23:48:26.159 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr block_cache_compressed: (nil) 2024-09-16T23:48:26.160 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr persistent_cache: (nil) 2024-09-16T23:48:26.160 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr block_size: 4096 2024-09-16T23:48:26.160 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr block_size_deviation: 10 2024-09-16T23:48:26.160 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr block_restart_interval: 16 2024-09-16T23:48:26.160 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr index_block_restart_interval: 1 2024-09-16T23:48:26.160 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr metadata_block_size: 4096 2024-09-16T23:48:26.160 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr partition_filters: 0 2024-09-16T23:48:26.160 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr use_delta_encoding: 1 2024-09-16T23:48:26.160 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr filter_policy: bloomfilter 2024-09-16T23:48:26.160 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr whole_key_filtering: 1 2024-09-16T23:48:26.160 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr verify_compression: 0 2024-09-16T23:48:26.160 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr read_amp_bytes_per_bit: 0 2024-09-16T23:48:26.160 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr format_version: 5 2024-09-16T23:48:26.161 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr enable_index_compression: 1 2024-09-16T23:48:26.161 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr block_align: 0 2024-09-16T23:48:26.161 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr max_auto_readahead_size: 262144 2024-09-16T23:48:26.161 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr prepopulate_block_cache: 0 2024-09-16T23:48:26.161 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr initial_auto_readahead_size: 8192 2024-09-16T23:48:26.161 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr num_file_reads_for_auto_readahead: 2 2024-09-16T23:48:26.161 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T23:48:26.161 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-16T23:48:26.161 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-16T23:48:26.161 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.compression: NoCompression 2024-09-16T23:48:26.161 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-16T23:48:26.161 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-16T23:48:26.161 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-16T23:48:26.161 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.num_levels: 7 2024-09-16T23:48:26.162 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-16T23:48:26.162 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-16T23:48:26.162 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-16T23:48:26.162 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-16T23:48:26.162 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-16T23:48:26.162 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-16T23:48:26.162 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-16T23:48:26.162 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-16T23:48:26.162 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-16T23:48:26.162 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-16T23:48:26.162 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-16T23:48:26.162 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-16T23:48:26.162 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-16T23:48:26.163 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-16T23:48:26.163 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-16T23:48:26.163 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-16T23:48:26.163 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-16T23:48:26.163 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-16T23:48:26.163 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-16T23:48:26.163 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-16T23:48:26.163 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-16T23:48:26.163 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-16T23:48:26.163 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-16T23:48:26.163 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-16T23:48:26.163 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-16T23:48:26.163 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-16T23:48:26.164 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-16T23:48:26.164 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-16T23:48:26.164 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-16T23:48:26.164 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-16T23:48:26.164 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-16T23:48:26.164 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-16T23:48:26.164 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-16T23:48:26.164 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-16T23:48:26.164 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-16T23:48:26.164 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-16T23:48:26.164 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-16T23:48:26.164 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-16T23:48:26.164 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-16T23:48:26.164 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-16T23:48:26.165 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-16T23:48:26.165 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-16T23:48:26.165 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-16T23:48:26.165 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-16T23:48:26.165 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-16T23:48:26.165 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-16T23:48:26.165 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-16T23:48:26.165 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-16T23:48:26.165 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-16T23:48:26.165 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-16T23:48:26.165 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-16T23:48:26.165 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-16T23:48:26.165 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-16T23:48:26.166 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-16T23:48:26.166 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.inplace_update_support: 0 2024-09-16T23:48:26.166 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-16T23:48:26.166 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-16T23:48:26.166 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-16T23:48:26.166 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-16T23:48:26.166 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.bloom_locality: 0 2024-09-16T23:48:26.166 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.max_successive_merges: 0 2024-09-16T23:48:26.166 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-16T23:48:26.166 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-16T23:48:26.166 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-16T23:48:26.166 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-16T23:48:26.166 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.ttl: 2592000 2024-09-16T23:48:26.167 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-16T23:48:26.167 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-16T23:48:26.167 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-16T23:48:26.167 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.enable_blob_files: false 2024-09-16T23:48:26.167 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.min_blob_size: 0 2024-09-16T23:48:26.167 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-16T23:48:26.167 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-16T23:48:26.167 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-16T23:48:26.167 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-16T23:48:26.167 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-16T23:48:26.167 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-16T23:48:26.167 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-16T23:48:26.167 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.554+0000 7f9bd2241c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-16T23:48:26.167 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.558+0000 7f9bd2241c80 4 rocksdb: [db/version_set.cc:5566] 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-16T23:48:26.168 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T23:48:26.168 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.558+0000 7f9bd2241c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-16T23:48:26.168 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T23:48:26.168 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.558+0000 7f9bd2241c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 74c4f855-7882-443a-a643-c77d54f47fc4 2024-09-16T23:48:26.168 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T23:48:26.168 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.558+0000 7f9bd2241c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 5 2024-09-16T23:48:26.168 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T23:48:26.168 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.558+0000 7f9bd2241c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x562f756fee00 2024-09-16T23:48:26.168 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.558+0000 7f9bd2241c80 4 rocksdb: DB pointer 0x562f757d8000 2024-09-16T23:48:26.168 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.558+0000 7f9bc99cc640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-16T23:48:26.168 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.558+0000 7f9bc99cc640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-16T23:48:26.168 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr ** DB Stats ** 2024-09-16T23:48:26.168 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-16T23:48:26.169 INFO:teuthology.orchestra.run.smithi033.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-16T23:48:26.169 INFO:teuthology.orchestra.run.smithi033.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-16T23:48:26.169 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-16T23:48:26.169 INFO:teuthology.orchestra.run.smithi033.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-16T23:48:26.169 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-16T23:48:26.169 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-16T23:48:26.169 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T23:48:26.169 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-16T23:48:26.169 INFO:teuthology.orchestra.run.smithi033.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 Rblob(GB) Wblob(GB) 2024-09-16T23:48:26.170 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-16T23:48:26.170 INFO:teuthology.orchestra.run.smithi033.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 0.0 0.0 2024-09-16T23:48:26.170 INFO:teuthology.orchestra.run.smithi033.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 0.0 0.0 2024-09-16T23:48:26.170 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T23:48:26.170 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-16T23:48:26.170 INFO:teuthology.orchestra.run.smithi033.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 Rblob(GB) Wblob(GB) 2024-09-16T23:48:26.170 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-16T23:48:26.170 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T23:48:26.170 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-16T23:48:26.170 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T23:48:26.170 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-16T23:48:26.170 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr Flush(GB): cumulative 0.000, interval 0.000 2024-09-16T23:48:26.170 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr AddFile(GB): cumulative 0.000, interval 0.000 2024-09-16T23:48:26.170 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr AddFile(Total Files): cumulative 0, interval 0 2024-09-16T23:48:26.171 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr AddFile(L0 Files): cumulative 0, interval 0 2024-09-16T23:48:26.171 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr AddFile(Keys): cumulative 0, interval 0 2024-09-16T23:48:26.171 INFO:teuthology.orchestra.run.smithi033.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-16T23:48:26.171 INFO:teuthology.orchestra.run.smithi033.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-16T23:48:26.171 INFO:teuthology.orchestra.run.smithi033.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-16T23:48:26.171 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr Block cache BinnedLRUCache@0x562f756d11f0#7 capacity: 512.00 MB usage: 0.00 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.6e-05 secs_since: 0 2024-09-16T23:48:26.171 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) 2024-09-16T23:48:26.171 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T23:48:26.171 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr ** File Read Latency Histogram By Level [default] ** 2024-09-16T23:48:26.171 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T23:48:26.171 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.558+0000 7f9bd2241c80 4 rocksdb: [db/db_impl/db_impl.cc:496] Shutdown: canceling all background work 2024-09-16T23:48:26.171 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.562+0000 7f9bd2241c80 4 rocksdb: [db/db_impl/db_impl.cc:704] Shutdown complete 2024-09-16T23:48:26.171 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T23:48:25.562+0000 7f9bd2241c80 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-a for mon.a 2024-09-16T23:48:26.171 INFO:teuthology.orchestra.run.smithi033.stdout:create mon.a on 2024-09-16T23:48:26.402 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stderr Removed /etc/systemd/system/multi-user.target.wants/ceph.target. 2024-09-16T23:48:26.599 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-09-16T23:48:26.836 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-f4fb0768-7485-11ef-bceb-c7b262605968.target -> /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968.target. 2024-09-16T23:48:26.836 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-f4fb0768-7485-11ef-bceb-c7b262605968.target -> /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968.target. 2024-09-16T23:48:27.149 INFO:teuthology.orchestra.run.smithi033.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-f4fb0768-7485-11ef-bceb-c7b262605968@mon.a 2024-09-16T23:48:27.149 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stderr Failed to reset failed state of unit ceph-f4fb0768-7485-11ef-bceb-c7b262605968@mon.a.service: Unit ceph-f4fb0768-7485-11ef-bceb-c7b262605968@mon.a.service not loaded. 2024-09-16T23:48:27.337 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968.target.wants/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@mon.a.service -> /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service. 2024-09-16T23:48:27.346 INFO:teuthology.orchestra.run.smithi033.stdout:firewalld does not appear to be present 2024-09-16T23:48:27.346 INFO:teuthology.orchestra.run.smithi033.stdout:Not possible to enable service . firewalld.service is not available 2024-09-16T23:48:27.346 INFO:teuthology.orchestra.run.smithi033.stdout:Waiting for mon to start... 2024-09-16T23:48:27.346 INFO:teuthology.orchestra.run.smithi033.stdout:Waiting for mon... 2024-09-16T23:48:29.177 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:29 smithi033 bash[22211]: cluster 2024-09-16T23:48:29.025021+0000 mon.a (mon.0) 1 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-16T23:48:29.744 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout cluster: 2024-09-16T23:48:29.744 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout id: f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:48:29.744 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-16T23:48:29.744 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout 2024-09-16T23:48:29.744 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout services: 2024-09-16T23:48:29.744 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.143381s) 2024-09-16T23:48:29.744 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-16T23:48:29.744 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-16T23:48:29.744 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout 2024-09-16T23:48:29.744 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout data: 2024-09-16T23:48:29.744 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-16T23:48:29.744 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-16T23:48:29.744 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-16T23:48:29.745 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout pgs: 2024-09-16T23:48:29.745 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout 2024-09-16T23:48:29.745 INFO:teuthology.orchestra.run.smithi033.stdout:mon is available 2024-09-16T23:48:29.745 INFO:teuthology.orchestra.run.smithi033.stdout:Assimilating anything we can from ceph.conf... 2024-09-16T23:48:30.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:30 smithi033 bash[22211]: cluster 2024-09-16T23:48:29.029367+0000 mon.a (mon.0) 2 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-16T23:48:30.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:30 smithi033 bash[22211]: cluster 2024-09-16T23:48:29.029539+0000 mon.a (mon.0) 3 : cluster [DBG] monmap epoch 1 2024-09-16T23:48:30.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:30 smithi033 bash[22211]: cluster 2024-09-16T23:48:29.029549+0000 mon.a (mon.0) 4 : cluster [DBG] fsid f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:48:30.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:30 smithi033 bash[22211]: cluster 2024-09-16T23:48:29.029555+0000 mon.a (mon.0) 5 : cluster [DBG] last_changed 2024-09-16T23:48:24.081012+0000 2024-09-16T23:48:30.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:30 smithi033 bash[22211]: cluster 2024-09-16T23:48:29.029562+0000 mon.a (mon.0) 6 : cluster [DBG] created 2024-09-16T23:48:24.081012+0000 2024-09-16T23:48:30.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:30 smithi033 bash[22211]: cluster 2024-09-16T23:48:29.029570+0000 mon.a (mon.0) 7 : cluster [DBG] min_mon_release 19 (squid) 2024-09-16T23:48:30.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:30 smithi033 bash[22211]: cluster 2024-09-16T23:48:29.029577+0000 mon.a (mon.0) 8 : cluster [DBG] election_strategy: 1 2024-09-16T23:48:30.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:30 smithi033 bash[22211]: cluster 2024-09-16T23:48:29.029584+0000 mon.a (mon.0) 9 : cluster [DBG] 0: [v2:172.21.15.33:3300/0,v1:172.21.15.33:6789/0] mon.a 2024-09-16T23:48:30.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:30 smithi033 bash[22211]: cluster 2024-09-16T23:48:29.031763+0000 mon.a (mon.0) 10 : cluster [DBG] fsmap 2024-09-16T23:48:30.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:30 smithi033 bash[22211]: cluster 2024-09-16T23:48:29.034787+0000 mon.a (mon.0) 11 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-16T23:48:30.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:30 smithi033 bash[22211]: cluster 2024-09-16T23:48:29.035579+0000 mon.a (mon.0) 12 : cluster [DBG] mgrmap e1: no daemons active 2024-09-16T23:48:30.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:30 smithi033 bash[22211]: audit 2024-09-16T23:48:29.172719+0000 mon.a (mon.0) 13 : audit [DBG] from='client.? 172.21.15.33:0/3563063783' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-09-16T23:48:31.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:31 smithi033 bash[22211]: audit 2024-09-16T23:48:30.807685+0000 mon.a (mon.0) 14 : audit [INF] from='client.? 172.21.15.33:0/2660163459' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-16T23:48:31.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:31 smithi033 bash[22211]: audit 2024-09-16T23:48:30.811369+0000 mon.a (mon.0) 15 : audit [INF] from='client.? 172.21.15.33:0/2660163459' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-16T23:48:31.316 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout 2024-09-16T23:48:31.316 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout [global] 2024-09-16T23:48:31.316 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout fsid = f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:48:31.316 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.33:3300,v1:172.21.15.33:6789] 2024-09-16T23:48:31.317 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-16T23:48:31.317 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-16T23:48:31.317 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-16T23:48:31.318 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-16T23:48:31.318 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout 2024-09-16T23:48:31.318 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-16T23:48:31.318 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = False 2024-09-16T23:48:31.318 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-16T23:48:31.319 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout 2024-09-16T23:48:31.319 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout [osd] 2024-09-16T23:48:31.319 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-16T23:48:31.319 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-16T23:48:31.319 INFO:teuthology.orchestra.run.smithi033.stdout:Generating new minimal ceph.conf... 2024-09-16T23:48:33.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:32 smithi033 bash[22211]: audit 2024-09-16T23:48:32.521833+0000 mon.a (mon.0) 16 : audit [DBG] from='client.? 172.21.15.33:0/3321085806' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:48:33.096 INFO:teuthology.orchestra.run.smithi033.stdout:Restarting the monitor... 2024-09-16T23:48:33.440 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:33 smithi033 systemd[1]: Stopping Ceph mon.a for f4fb0768-7485-11ef-bceb-c7b262605968... 2024-09-16T23:48:33.441 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:33 smithi033 bash[22211]: debug 2024-09-16T23:48:33.217+0000 7f9491cef640 -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-16T23:48:33.441 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:33 smithi033 bash[22211]: debug 2024-09-16T23:48:33.217+0000 7f9491cef640 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-09-16T23:48:34.081 INFO:teuthology.orchestra.run.smithi033.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-09-16T23:48:34.179 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:33 smithi033 bash[22593]: ceph-f4fb0768-7485-11ef-bceb-c7b262605968-mon-a 2024-09-16T23:48:34.179 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:34 smithi033 bash[22654]: Error response from daemon: No such container: ceph-f4fb0768-7485-11ef-bceb-c7b262605968-mon-a 2024-09-16T23:48:34.180 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:34 smithi033 systemd[1]: ceph-f4fb0768-7485-11ef-bceb-c7b262605968@mon.a.service: Deactivated successfully. 2024-09-16T23:48:34.180 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:34 smithi033 systemd[1]: Stopped Ceph mon.a for f4fb0768-7485-11ef-bceb-c7b262605968. 2024-09-16T23:48:34.180 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:34 smithi033 systemd[1]: Started Ceph mon.a for f4fb0768-7485-11ef-bceb-c7b262605968. 2024-09-16T23:48:35.573 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.484+0000 7f5ed2672c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-16T23:48:35.573 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.484+0000 7f5ed2672c80 0 ceph version 19.1.1-330-gc2ddf972 (c2ddf9721ef254645201cdbabd9c8f49c30a586f) squid (stable), process ceph-mon, pid 7 2024-09-16T23:48:35.573 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.484+0000 7f5ed2672c80 0 pidfile_write: ignore empty --pid-file 2024-09-16T23:48:35.573 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 0 load: jerasure load: lrc 2024-09-16T23:48:35.573 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: RocksDB version: 7.9.2 2024-09-16T23:48:35.573 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Git sha 0 2024-09-16T23:48:35.573 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Compile date 2024-09-16 15:09:42 2024-09-16T23:48:35.573 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: DB SUMMARY 2024-09-16T23:48:35.573 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: DB Session ID: AIPOSIEEUFQA01IMDEHZ 2024-09-16T23:48:35.573 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: CURRENT file: CURRENT 2024-09-16T23:48:35.574 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: IDENTITY file: IDENTITY 2024-09-16T23:48:35.574 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-09-16T23:48:35.574 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2024-09-16T23:48:35.574 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 88783 ; 2024-09-16T23:48:35.574 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.error_if_exists: 0 2024-09-16T23:48:35.574 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.create_if_missing: 0 2024-09-16T23:48:35.574 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.paranoid_checks: 1 2024-09-16T23:48:35.574 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-16T23:48:35.574 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-16T23:48:35.574 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-16T23:48:35.574 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.env: 0x56513b86e940 2024-09-16T23:48:35.574 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-16T23:48:35.574 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.info_log: 0x56513d8656e0 2024-09-16T23:48:35.575 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-16T23:48:35.575 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.statistics: (nil) 2024-09-16T23:48:35.575 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.use_fsync: 0 2024-09-16T23:48:35.575 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.max_log_file_size: 0 2024-09-16T23:48:35.575 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-16T23:48:35.575 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-16T23:48:35.575 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-16T23:48:35.575 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-16T23:48:35.575 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.allow_fallocate: 1 2024-09-16T23:48:35.575 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-16T23:48:35.575 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-16T23:48:35.575 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.use_direct_reads: 0 2024-09-16T23:48:35.576 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-16T23:48:35.576 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-16T23:48:35.576 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.db_log_dir: 2024-09-16T23:48:35.576 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.wal_dir: 2024-09-16T23:48:35.576 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-16T23:48:35.576 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-16T23:48:35.576 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-16T23:48:35.576 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-16T23:48:35.576 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-16T23:48:35.576 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-16T23:48:35.576 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-16T23:48:35.576 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-16T23:48:35.577 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.write_buffer_manager: 0x56513d874dc0 2024-09-16T23:48:35.577 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-16T23:48:35.577 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-16T23:48:35.577 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-16T23:48:35.577 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-16T23:48:35.577 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-16T23:48:35.577 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-16T23:48:35.579 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-16T23:48:35.579 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-16T23:48:35.579 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.unordered_write: 0 2024-09-16T23:48:35.579 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-16T23:48:35.579 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-16T23:48:35.579 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-16T23:48:35.579 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-16T23:48:35.579 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.row_cache: None 2024-09-16T23:48:35.579 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.wal_filter: None 2024-09-16T23:48:35.579 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-16T23:48:35.579 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-16T23:48:35.579 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.two_write_queues: 0 2024-09-16T23:48:35.579 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-16T23:48:35.579 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.wal_compression: 0 2024-09-16T23:48:35.580 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.atomic_flush: 0 2024-09-16T23:48:35.580 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-16T23:48:35.580 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-16T23:48:35.580 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-16T23:48:35.580 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.log_readahead_size: 0 2024-09-16T23:48:35.580 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-16T23:48:35.580 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-16T23:48:35.580 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-16T23:48:35.580 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-16T23:48:35.580 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-16T23:48:35.580 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-16T23:48:35.580 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-16T23:48:35.580 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.max_background_jobs: 2 2024-09-16T23:48:35.581 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.max_background_compactions: -1 2024-09-16T23:48:35.581 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.max_subcompactions: 1 2024-09-16T23:48:35.581 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-16T23:48:35.581 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-16T23:48:35.581 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-16T23:48:35.581 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-16T23:48:35.581 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-16T23:48:35.581 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-16T23:48:35.581 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-16T23:48:35.581 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-16T23:48:35.581 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.max_open_files: -1 2024-09-16T23:48:35.581 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-16T23:48:35.581 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-16T23:48:35.581 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-16T23:48:35.581 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-16T23:48:35.582 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Options.max_background_flushes: -1 2024-09-16T23:48:35.582 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Compression algorithms supported: 2024-09-16T23:48:35.582 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: kZSTD supported: 0 2024-09-16T23:48:35.582 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: kXpressCompression supported: 0 2024-09-16T23:48:35.582 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: kBZip2Compression supported: 0 2024-09-16T23:48:35.582 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-16T23:48:35.582 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: kLZ4Compression supported: 1 2024-09-16T23:48:35.582 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: kZlibCompression supported: 1 2024-09-16T23:48:35.582 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-16T23:48:35.582 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: kSnappyCompression supported: 1 2024-09-16T23:48:35.582 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-16T23:48:35.582 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-16T23:48:35.582 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.488+0000 7f5ed2672c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2024-09-16T23:48:35.582 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-16T23:48:35.582 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-16T23:48:35.582 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.merge_operator: 2024-09-16T23:48:35.583 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.compaction_filter: None 2024-09-16T23:48:35.583 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-16T23:48:35.583 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-16T23:48:35.583 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-16T23:48:35.583 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-16T23:48:35.583 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x56513d865320) 2024-09-16T23:48:35.583 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: cache_index_and_filter_blocks: 1 2024-09-16T23:48:35.583 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-16T23:48:35.583 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-16T23:48:35.583 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: pin_top_level_index_and_filter: 1 2024-09-16T23:48:35.583 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: index_type: 0 2024-09-16T23:48:35.583 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: data_block_index_type: 0 2024-09-16T23:48:35.583 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: index_shortening: 1 2024-09-16T23:48:35.583 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: data_block_hash_table_util_ratio: 0.750000 2024-09-16T23:48:35.583 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: checksum: 4 2024-09-16T23:48:35.584 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: no_block_cache: 0 2024-09-16T23:48:35.584 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: block_cache: 0x56513d85b1f0 2024-09-16T23:48:35.584 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: block_cache_name: BinnedLRUCache 2024-09-16T23:48:35.584 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: block_cache_options: 2024-09-16T23:48:35.584 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: capacity : 536870912 2024-09-16T23:48:35.584 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: num_shard_bits : 4 2024-09-16T23:48:35.584 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: strict_capacity_limit : 0 2024-09-16T23:48:35.584 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: high_pri_pool_ratio: 0.000 2024-09-16T23:48:35.584 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: block_cache_compressed: (nil) 2024-09-16T23:48:35.584 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: persistent_cache: (nil) 2024-09-16T23:48:35.584 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: block_size: 4096 2024-09-16T23:48:35.584 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: block_size_deviation: 10 2024-09-16T23:48:35.584 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: block_restart_interval: 16 2024-09-16T23:48:35.584 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: index_block_restart_interval: 1 2024-09-16T23:48:35.585 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: metadata_block_size: 4096 2024-09-16T23:48:35.585 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: partition_filters: 0 2024-09-16T23:48:35.585 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: use_delta_encoding: 1 2024-09-16T23:48:35.585 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: filter_policy: bloomfilter 2024-09-16T23:48:35.585 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: whole_key_filtering: 1 2024-09-16T23:48:35.585 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: verify_compression: 0 2024-09-16T23:48:35.585 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: read_amp_bytes_per_bit: 0 2024-09-16T23:48:35.585 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: format_version: 5 2024-09-16T23:48:35.585 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: enable_index_compression: 1 2024-09-16T23:48:35.585 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: block_align: 0 2024-09-16T23:48:35.585 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: max_auto_readahead_size: 262144 2024-09-16T23:48:35.585 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: prepopulate_block_cache: 0 2024-09-16T23:48:35.585 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: initial_auto_readahead_size: 8192 2024-09-16T23:48:35.585 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: num_file_reads_for_auto_readahead: 2 2024-09-16T23:48:35.585 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-16T23:48:35.586 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-16T23:48:35.586 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.compression: NoCompression 2024-09-16T23:48:35.586 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-16T23:48:35.586 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-16T23:48:35.586 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-16T23:48:35.586 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.num_levels: 7 2024-09-16T23:48:35.586 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-16T23:48:35.586 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-16T23:48:35.586 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-16T23:48:35.586 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-16T23:48:35.586 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-16T23:48:35.586 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-16T23:48:35.586 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-16T23:48:35.586 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-16T23:48:35.587 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-16T23:48:35.587 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-16T23:48:35.587 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-16T23:48:35.587 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-16T23:48:35.587 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-16T23:48:35.587 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-16T23:48:35.587 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-16T23:48:35.587 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-16T23:48:35.587 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-16T23:48:35.587 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-16T23:48:35.587 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-16T23:48:35.587 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-16T23:48:35.587 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-16T23:48:35.587 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-16T23:48:35.588 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-16T23:48:35.588 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-16T23:48:35.588 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-16T23:48:35.588 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-16T23:48:35.588 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-16T23:48:35.588 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-16T23:48:35.588 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-16T23:48:35.588 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-16T23:48:35.588 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-16T23:48:35.588 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-16T23:48:35.588 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-16T23:48:35.588 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-16T23:48:35.588 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-16T23:48:35.589 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-16T23:48:35.589 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-16T23:48:35.589 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-16T23:48:35.589 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-16T23:48:35.589 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-16T23:48:35.589 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-16T23:48:35.589 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-16T23:48:35.589 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-16T23:48:35.589 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-16T23:48:35.589 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-16T23:48:35.589 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-16T23:48:35.589 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-16T23:48:35.590 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-16T23:48:35.590 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-16T23:48:35.590 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-16T23:48:35.590 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-16T23:48:35.590 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-16T23:48:35.590 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-16T23:48:35.590 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-16T23:48:35.590 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.inplace_update_support: 0 2024-09-16T23:48:35.590 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-16T23:48:35.590 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-16T23:48:35.590 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-16T23:48:35.590 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-16T23:48:35.590 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.bloom_locality: 0 2024-09-16T23:48:35.590 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.max_successive_merges: 0 2024-09-16T23:48:35.591 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-16T23:48:35.591 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-16T23:48:35.591 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-16T23:48:35.591 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-16T23:48:35.591 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.ttl: 2592000 2024-09-16T23:48:35.591 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-16T23:48:35.591 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-16T23:48:35.591 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-16T23:48:35.591 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.enable_blob_files: false 2024-09-16T23:48:35.591 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.min_blob_size: 0 2024-09-16T23:48:35.591 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-16T23:48:35.591 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-16T23:48:35.591 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-16T23:48:35.591 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-16T23:48:35.592 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-16T23:48:35.592 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-16T23:48:35.592 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-16T23:48:35.592 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-16T23:48:35.592 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 succeeded,manifest_file_number is 10, next_file_number is 12, last_sequence is 5, log_number is 5,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 5 2024-09-16T23:48:35.592 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-09-16T23:48:35.592 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 74c4f855-7882-443a-a643-c77d54f47fc4 2024-09-16T23:48:35.592 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726530515497625, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-09-16T23:48:35.592 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-09-16T23:48:35.592 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726530515498780, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85400, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 258, "table_properties": {"data_size": 83547, "index_size": 237, "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": 10201, "raw_average_key_size": 47, "raw_value_size": 77754, "raw_average_value_size": 358, "num_data_blocks": 11, "num_entries": 217, "num_filter_entries": 217, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "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; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1726530515, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "74c4f855-7882-443a-a643-c77d54f47fc4", "db_session_id": "AIPOSIEEUFQA01IMDEHZ", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-09-16T23:48:35.592 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726530515498920, "job": 1, "event": "recovery_finished"} 2024-09-16T23:48:35.592 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-09-16T23:48:35.592 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-a/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-16T23:48:35.593 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.492+0000 7f5ed2672c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x56513d886e00 2024-09-16T23:48:35.593 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.496+0000 7f5ed2672c80 4 rocksdb: DB pointer 0x56513d986000 2024-09-16T23:48:35.593 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.496+0000 7f5ec843b640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-16T23:48:35.593 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.496+0000 7f5ec843b640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-16T23:48:35.593 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: ** DB Stats ** 2024-09-16T23:48:35.593 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-16T23:48:35.593 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: 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-16T23:48:35.593 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-16T23:48:35.593 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-16T23:48:35.593 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: 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-16T23:48:35.593 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-16T23:48:35.593 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-16T23:48:35.593 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: ** Compaction Stats [default] ** 2024-09-16T23:48:35.593 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: 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 Rblob(GB) Wblob(GB) 2024-09-16T23:48:35.594 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-16T23:48:35.594 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: L0 2/0 85.26 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 115.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-16T23:48:35.594 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: Sum 2/0 85.26 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 115.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-16T23:48:35.594 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 115.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-16T23:48:35.594 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: ** Compaction Stats [default] ** 2024-09-16T23:48:35.594 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: 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 Rblob(GB) Wblob(GB) 2024-09-16T23:48:35.594 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-16T23:48:35.594 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 115.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-16T23:48:35.594 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-16T23:48:35.594 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-16T23:48:35.594 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-16T23:48:35.594 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-16T23:48:35.594 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: AddFile(Total Files): cumulative 0, interval 0 2024-09-16T23:48:35.594 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-16T23:48:35.594 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: AddFile(Keys): cumulative 0, interval 0 2024-09-16T23:48:35.594 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: Cumulative compaction: 0.00 GB write, 20.03 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-16T23:48:35.595 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: Interval compaction: 0.00 GB write, 20.03 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-16T23:48:35.595 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: 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-16T23:48:35.595 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: Block cache BinnedLRUCache@0x56513d85b1f0#7 capacity: 512.00 MB usage: 1.19 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 2.1e-05 secs_since: 0 2024-09-16T23:48:35.595 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.42 KB,8.04663e-05%) Misc(1,0.00 KB,0%) 2024-09-16T23:48:35.595 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: ** File Read Latency Histogram By Level [default] ** 2024-09-16T23:48:35.595 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.496+0000 7f5ed2672c80 0 starting mon.a rank 0 at public addrs [v2:172.21.15.33:3300/0,v1:172.21.15.33:6789/0] at bind addrs [v2:172.21.15.33:3300/0,v1:172.21.15.33:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:48:35.595 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.496+0000 7f5ed2672c80 1 mon.a@-1(???) e1 preinit fsid f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:48:35.595 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.496+0000 7f5ed2672c80 0 mon.a@-1(???).mds e1 new map 2024-09-16T23:48:35.595 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.496+0000 7f5ed2672c80 0 mon.a@-1(???).mds e1 print_map 2024-09-16T23:48:35.595 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: e1 2024-09-16T23:48:35.595 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: btime 2024-09-16T23:48:29:029944+0000 2024-09-16T23:48:35.595 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-16T23:48:35.596 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: 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,11=minor log segments,12=quiesce subvolumes} 2024-09-16T23:48:35.596 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: legacy client fscid: -1 2024-09-16T23:48:35.596 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: 2024-09-16T23:48:35.596 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: No filesystems configured 2024-09-16T23:48:35.596 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.496+0000 7f5ed2672c80 0 mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-16T23:48:35.596 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.496+0000 7f5ed2672c80 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-16T23:48:35.596 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.496+0000 7f5ed2672c80 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-16T23:48:35.596 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.496+0000 7f5ed2672c80 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-16T23:48:35.596 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: debug 2024-09-16T23:48:35.496+0000 7f5ed2672c80 1 mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-16T23:48:35.596 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: cluster 2024-09-16T23:48:35.524878+0000 mon.a (mon.0) 1 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-16T23:48:35.596 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: cluster 2024-09-16T23:48:35.524961+0000 mon.a (mon.0) 2 : cluster [DBG] monmap epoch 1 2024-09-16T23:48:35.596 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: cluster 2024-09-16T23:48:35.524976+0000 mon.a (mon.0) 3 : cluster [DBG] fsid f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:48:35.596 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: cluster 2024-09-16T23:48:35.524992+0000 mon.a (mon.0) 4 : cluster [DBG] last_changed 2024-09-16T23:48:24.081012+0000 2024-09-16T23:48:35.597 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: cluster 2024-09-16T23:48:35.525011+0000 mon.a (mon.0) 5 : cluster [DBG] created 2024-09-16T23:48:24.081012+0000 2024-09-16T23:48:35.597 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: cluster 2024-09-16T23:48:35.525020+0000 mon.a (mon.0) 6 : cluster [DBG] min_mon_release 19 (squid) 2024-09-16T23:48:35.597 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: cluster 2024-09-16T23:48:35.525027+0000 mon.a (mon.0) 7 : cluster [DBG] election_strategy: 1 2024-09-16T23:48:35.597 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: cluster 2024-09-16T23:48:35.525035+0000 mon.a (mon.0) 8 : cluster [DBG] 0: [v2:172.21.15.33:3300/0,v1:172.21.15.33:6789/0] mon.a 2024-09-16T23:48:35.597 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: cluster 2024-09-16T23:48:35.525468+0000 mon.a (mon.0) 9 : cluster [DBG] fsmap 2024-09-16T23:48:35.597 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: cluster 2024-09-16T23:48:35.525493+0000 mon.a (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-16T23:48:35.597 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:35 smithi033 bash[22694]: cluster 2024-09-16T23:48:35.525913+0000 mon.a (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2024-09-16T23:48:36.425 INFO:teuthology.orchestra.run.smithi033.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-16T23:48:36.460 INFO:teuthology.orchestra.run.smithi033.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-16T23:48:36.461 INFO:teuthology.orchestra.run.smithi033.stdout:Creating mgr... 2024-09-16T23:48:36.461 INFO:teuthology.orchestra.run.smithi033.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-16T23:48:36.461 INFO:teuthology.orchestra.run.smithi033.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-16T23:48:36.779 INFO:teuthology.orchestra.run.smithi033.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-f4fb0768-7485-11ef-bceb-c7b262605968@mgr.a 2024-09-16T23:48:36.779 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stderr Failed to reset failed state of unit ceph-f4fb0768-7485-11ef-bceb-c7b262605968@mgr.a.service: Unit ceph-f4fb0768-7485-11ef-bceb-c7b262605968@mgr.a.service not loaded. 2024-09-16T23:48:36.783 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:36 smithi033 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:48:36.783 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:36 smithi033 bash[22694]: audit 2024-09-16T23:48:35.738675+0000 mon.a (mon.0) 12 : audit [INF] from='client.? 172.21.15.33:0/1316392841' entity='client.admin' 2024-09-16T23:48:36.981 INFO:teuthology.orchestra.run.smithi033.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968.target.wants/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@mgr.a.service -> /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service. 2024-09-16T23:48:36.991 INFO:teuthology.orchestra.run.smithi033.stdout:firewalld does not appear to be present 2024-09-16T23:48:36.991 INFO:teuthology.orchestra.run.smithi033.stdout:Not possible to enable service . firewalld.service is not available 2024-09-16T23:48:36.991 INFO:teuthology.orchestra.run.smithi033.stdout:firewalld does not appear to be present 2024-09-16T23:48:36.991 INFO:teuthology.orchestra.run.smithi033.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2024-09-16T23:48:36.991 INFO:teuthology.orchestra.run.smithi033.stdout:Waiting for mgr to start... 2024-09-16T23:48:36.992 INFO:teuthology.orchestra.run.smithi033.stdout:Waiting for mgr... 2024-09-16T23:48:37.099 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:36 smithi033 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:48:37.099 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:36 smithi033 systemd[1]: Started Ceph mgr.a for f4fb0768-7485-11ef-bceb-c7b262605968. 2024-09-16T23:48:39.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:38 smithi033 bash[22694]: audit 2024-09-16T23:48:38.824659+0000 mon.a (mon.0) 13 : audit [DBG] from='client.? 172.21.15.33:0/1849169569' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-16T23:48:39.251 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:38 smithi033 bash[22949]: debug 2024-09-16T23:48:38.808+0000 7f5dc7266040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-16T23:48:39.499 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout 2024-09-16T23:48:39.499 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout { 2024-09-16T23:48:39.499 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "fsid": "f4fb0768-7485-11ef-bceb-c7b262605968", 2024-09-16T23:48:39.500 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "health": { 2024-09-16T23:48:39.500 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-16T23:48:39.500 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-16T23:48:39.500 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-16T23:48:39.500 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout }, 2024-09-16T23:48:39.500 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-16T23:48:39.500 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-16T23:48:39.500 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout 0 2024-09-16T23:48:39.500 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout ], 2024-09-16T23:48:39.501 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-16T23:48:39.501 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "a" 2024-09-16T23:48:39.501 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout ], 2024-09-16T23:48:39.501 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "quorum_age": 3, 2024-09-16T23:48:39.501 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-16T23:48:39.501 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T23:48:39.501 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-16T23:48:39.501 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-16T23:48:39.501 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout }, 2024-09-16T23:48:39.501 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-16T23:48:39.501 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T23:48:39.501 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-16T23:48:39.501 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-16T23:48:39.501 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-16T23:48:39.502 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-16T23:48:39.502 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-16T23:48:39.502 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-16T23:48:39.505 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout }, 2024-09-16T23:48:39.505 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-16T23:48:39.505 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-16T23:48:39.505 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-16T23:48:39.505 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-16T23:48:39.506 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-16T23:48:39.506 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-16T23:48:39.506 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-16T23:48:39.506 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-16T23:48:39.506 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-16T23:48:39.506 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout }, 2024-09-16T23:48:39.506 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-16T23:48:39.506 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T23:48:39.506 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "btime": "2024-09-16T23:48:29:029944+0000", 2024-09-16T23:48:39.506 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-16T23:48:39.506 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-16T23:48:39.506 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout }, 2024-09-16T23:48:39.506 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-16T23:48:39.506 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-16T23:48:39.507 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-16T23:48:39.507 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-16T23:48:39.507 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-16T23:48:39.507 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-16T23:48:39.507 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "restful" 2024-09-16T23:48:39.507 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout ], 2024-09-16T23:48:39.507 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-16T23:48:39.507 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout }, 2024-09-16T23:48:39.507 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-16T23:48:39.507 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T23:48:39.507 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "modified": "2024-09-16T23:48:29.030737+0000", 2024-09-16T23:48:39.507 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-16T23:48:39.507 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout }, 2024-09-16T23:48:39.507 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-16T23:48:39.508 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout } 2024-09-16T23:48:39.508 INFO:teuthology.orchestra.run.smithi033.stdout:mgr not available, waiting (1/15)... 2024-09-16T23:48:40.501 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:40 smithi033 bash[22949]: debug 2024-09-16T23:48:40.060+0000 7f5dc7266040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-16T23:48:40.501 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:40 smithi033 bash[22949]: debug 2024-09-16T23:48:40.128+0000 7f5dc7266040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-16T23:48:40.501 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:40 smithi033 bash[22949]: debug 2024-09-16T23:48:40.284+0000 7f5dc7266040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-16T23:48:41.251 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:40 smithi033 bash[22949]: debug 2024-09-16T23:48:40.964+0000 7f5dc7266040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-16T23:48:41.251 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:41 smithi033 bash[22949]: debug 2024-09-16T23:48:41.036+0000 7f5dc7266040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-16T23:48:41.251 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:41 smithi033 bash[22949]: debug 2024-09-16T23:48:41.108+0000 7f5dc7266040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-16T23:48:41.595 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:41 smithi033 bash[22949]: debug 2024-09-16T23:48:41.304+0000 7f5dc7266040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-16T23:48:41.595 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:41 smithi033 bash[22949]: debug 2024-09-16T23:48:41.384+0000 7f5dc7266040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-16T23:48:41.595 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:41 smithi033 bash[22949]: debug 2024-09-16T23:48:41.452+0000 7f5dc7266040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-16T23:48:41.996 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:41 smithi033 bash[22949]: debug 2024-09-16T23:48:41.724+0000 7f5dc7266040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-16T23:48:41.996 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:41 smithi033 bash[22949]: debug 2024-09-16T23:48:41.796+0000 7f5dc7266040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-16T23:48:42.251 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:42 smithi033 bash[22949]: debug 2024-09-16T23:48:42.000+0000 7f5dc7266040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-16T23:48:42.251 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:42 smithi033 bash[22949]: debug 2024-09-16T23:48:42.080+0000 7f5dc7266040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-16T23:48:42.645 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:42 smithi033 bash[22949]: debug 2024-09-16T23:48:42.340+0000 7f5dc7266040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-16T23:48:42.645 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:42 smithi033 bash[22949]: debug 2024-09-16T23:48:42.528+0000 7f5dc7266040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-16T23:48:42.944 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:42 smithi033 bash[22949]: debug 2024-09-16T23:48:42.700+0000 7f5dc7266040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-16T23:48:42.944 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:42 smithi033 bash[22949]: debug 2024-09-16T23:48:42.784+0000 7f5dc7266040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-16T23:48:43.251 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:42 smithi033 bash[22949]: debug 2024-09-16T23:48:42.976+0000 7f5dc7266040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-16T23:48:43.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:42 smithi033 bash[22694]: audit 2024-09-16T23:48:42.938375+0000 mon.a (mon.0) 14 : audit [DBG] from='client.? 172.21.15.33:0/631950861' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-16T23:48:43.556 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout 2024-09-16T23:48:43.556 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout { 2024-09-16T23:48:43.556 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "fsid": "f4fb0768-7485-11ef-bceb-c7b262605968", 2024-09-16T23:48:43.556 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "health": { 2024-09-16T23:48:43.556 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-16T23:48:43.556 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-16T23:48:43.556 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-16T23:48:43.557 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout }, 2024-09-16T23:48:43.557 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-16T23:48:43.557 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-16T23:48:43.557 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout 0 2024-09-16T23:48:43.557 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout ], 2024-09-16T23:48:43.557 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-16T23:48:43.557 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "a" 2024-09-16T23:48:43.557 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout ], 2024-09-16T23:48:43.557 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "quorum_age": 7, 2024-09-16T23:48:43.557 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-16T23:48:43.557 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T23:48:43.557 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-16T23:48:43.557 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-16T23:48:43.558 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout }, 2024-09-16T23:48:43.558 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-16T23:48:43.558 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T23:48:43.558 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-16T23:48:43.558 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-16T23:48:43.558 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-16T23:48:43.558 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-16T23:48:43.558 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-16T23:48:43.558 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-16T23:48:43.562 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout }, 2024-09-16T23:48:43.562 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-16T23:48:43.562 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-16T23:48:43.562 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-16T23:48:43.562 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-16T23:48:43.562 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-16T23:48:43.562 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-16T23:48:43.562 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-16T23:48:43.562 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-16T23:48:43.562 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-16T23:48:43.562 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout }, 2024-09-16T23:48:43.563 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-16T23:48:43.563 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T23:48:43.563 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "btime": "2024-09-16T23:48:29:029944+0000", 2024-09-16T23:48:43.563 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-16T23:48:43.563 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-16T23:48:43.563 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout }, 2024-09-16T23:48:43.563 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-16T23:48:43.563 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-16T23:48:43.563 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-16T23:48:43.563 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-16T23:48:43.563 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-16T23:48:43.563 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-16T23:48:43.563 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "restful" 2024-09-16T23:48:43.563 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout ], 2024-09-16T23:48:43.564 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-16T23:48:43.564 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout }, 2024-09-16T23:48:43.564 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-16T23:48:43.564 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T23:48:43.564 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "modified": "2024-09-16T23:48:29.030737+0000", 2024-09-16T23:48:43.564 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-16T23:48:43.564 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout }, 2024-09-16T23:48:43.564 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-16T23:48:43.564 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout } 2024-09-16T23:48:43.564 INFO:teuthology.orchestra.run.smithi033.stdout:mgr not available, waiting (2/15)... 2024-09-16T23:48:44.130 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:43 smithi033 bash[22949]: debug 2024-09-16T23:48:43.819+0000 7f5dc7266040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-16T23:48:44.131 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:43 smithi033 bash[22949]: debug 2024-09-16T23:48:43.899+0000 7f5dc7266040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-16T23:48:44.501 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:44 smithi033 bash[22949]: debug 2024-09-16T23:48:44.131+0000 7f5dc7266040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-16T23:48:44.501 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:44 smithi033 bash[22949]: debug 2024-09-16T23:48:44.207+0000 7f5dc7266040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-16T23:48:45.001 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:44 smithi033 bash[22949]: debug 2024-09-16T23:48:44.619+0000 7f5dc7266040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-16T23:48:45.001 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:44 smithi033 bash[22949]: debug 2024-09-16T23:48:44.699+0000 7f5dc7266040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-16T23:48:45.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:44 smithi033 bash[22694]: cluster 2024-09-16T23:48:44.721907+0000 mon.a (mon.0) 15 : cluster [INF] Activating manager daemon a 2024-09-16T23:48:45.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:44 smithi033 bash[22694]: cluster 2024-09-16T23:48:44.728912+0000 mon.a (mon.0) 16 : cluster [DBG] mgrmap e2: a(active, starting, since 0.00719569s) 2024-09-16T23:48:45.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:44 smithi033 bash[22694]: audit 2024-09-16T23:48:44.730768+0000 mon.a (mon.0) 17 : audit [DBG] from='mgr.14102 172.21.15.33:0/2214419714' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-16T23:48:45.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:44 smithi033 bash[22694]: audit 2024-09-16T23:48:44.731029+0000 mon.a (mon.0) 18 : audit [DBG] from='mgr.14102 172.21.15.33:0/2214419714' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-16T23:48:45.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:44 smithi033 bash[22694]: audit 2024-09-16T23:48:44.731257+0000 mon.a (mon.0) 19 : audit [DBG] from='mgr.14102 172.21.15.33:0/2214419714' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-16T23:48:45.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:44 smithi033 bash[22694]: audit 2024-09-16T23:48:44.731515+0000 mon.a (mon.0) 20 : audit [DBG] from='mgr.14102 172.21.15.33:0/2214419714' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T23:48:45.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:44 smithi033 bash[22694]: audit 2024-09-16T23:48:44.731923+0000 mon.a (mon.0) 21 : audit [DBG] from='mgr.14102 172.21.15.33:0/2214419714' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-16T23:48:45.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:44 smithi033 bash[22694]: cluster 2024-09-16T23:48:44.758135+0000 mon.a (mon.0) 22 : cluster [INF] Manager daemon a is now available 2024-09-16T23:48:45.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:44 smithi033 bash[22694]: audit 2024-09-16T23:48:44.769362+0000 mon.a (mon.0) 23 : audit [INF] from='mgr.14102 172.21.15.33:0/2214419714' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-16T23:48:45.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:44 smithi033 bash[22694]: audit 2024-09-16T23:48:44.771406+0000 mon.a (mon.0) 24 : audit [INF] from='mgr.14102 172.21.15.33:0/2214419714' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-16T23:48:46.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:45 smithi033 bash[22694]: audit 2024-09-16T23:48:44.773718+0000 mon.a (mon.0) 25 : audit [INF] from='mgr.14102 172.21.15.33:0/2214419714' entity='mgr.a' 2024-09-16T23:48:46.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:45 smithi033 bash[22694]: audit 2024-09-16T23:48:44.782699+0000 mon.a (mon.0) 26 : audit [INF] from='mgr.14102 172.21.15.33:0/2214419714' entity='mgr.a' 2024-09-16T23:48:46.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:45 smithi033 bash[22694]: audit 2024-09-16T23:48:44.788138+0000 mon.a (mon.0) 27 : audit [INF] from='mgr.14102 172.21.15.33:0/2214419714' entity='mgr.a' 2024-09-16T23:48:46.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:45 smithi033 bash[22694]: cluster 2024-09-16T23:48:45.736479+0000 mon.a (mon.0) 28 : cluster [DBG] mgrmap e3: a(active, since 1.01476s) 2024-09-16T23:48:47.862 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout 2024-09-16T23:48:47.862 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout { 2024-09-16T23:48:47.862 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "fsid": "f4fb0768-7485-11ef-bceb-c7b262605968", 2024-09-16T23:48:47.862 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "health": { 2024-09-16T23:48:47.862 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-16T23:48:47.863 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-16T23:48:47.863 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-16T23:48:47.863 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout }, 2024-09-16T23:48:47.863 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-16T23:48:47.863 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-16T23:48:47.863 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout 0 2024-09-16T23:48:47.863 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout ], 2024-09-16T23:48:47.863 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-16T23:48:47.863 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "a" 2024-09-16T23:48:47.863 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout ], 2024-09-16T23:48:47.863 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "quorum_age": 11, 2024-09-16T23:48:47.863 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-16T23:48:47.863 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T23:48:47.863 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-16T23:48:47.863 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-16T23:48:47.864 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout }, 2024-09-16T23:48:47.864 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-16T23:48:47.864 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T23:48:47.864 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-16T23:48:47.864 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-16T23:48:47.864 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-16T23:48:47.864 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-16T23:48:47.864 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-16T23:48:47.864 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-16T23:48:47.867 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout }, 2024-09-16T23:48:47.867 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-16T23:48:47.867 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-16T23:48:47.867 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-16T23:48:47.868 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-16T23:48:47.868 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-16T23:48:47.868 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-16T23:48:47.868 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-16T23:48:47.868 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-16T23:48:47.868 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-16T23:48:47.868 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout }, 2024-09-16T23:48:47.868 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-16T23:48:47.868 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T23:48:47.868 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "btime": "2024-09-16T23:48:29:029944+0000", 2024-09-16T23:48:47.868 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-16T23:48:47.868 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-16T23:48:47.868 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout }, 2024-09-16T23:48:47.868 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-16T23:48:47.869 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-16T23:48:47.869 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-16T23:48:47.869 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-16T23:48:47.869 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-16T23:48:47.869 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-16T23:48:47.869 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "restful" 2024-09-16T23:48:47.869 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout ], 2024-09-16T23:48:47.869 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-16T23:48:47.869 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout }, 2024-09-16T23:48:47.869 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-16T23:48:47.869 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T23:48:47.869 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "modified": "2024-09-16T23:48:29.030737+0000", 2024-09-16T23:48:47.869 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-16T23:48:47.869 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout }, 2024-09-16T23:48:47.870 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-16T23:48:47.870 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout } 2024-09-16T23:48:47.870 INFO:teuthology.orchestra.run.smithi033.stdout:mgr is available 2024-09-16T23:48:48.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:47 smithi033 bash[22694]: cluster 2024-09-16T23:48:46.783611+0000 mon.a (mon.0) 29 : cluster [DBG] mgrmap e4: a(active, since 2s) 2024-09-16T23:48:48.252 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:47 smithi033 bash[22694]: audit 2024-09-16T23:48:47.314955+0000 mon.a (mon.0) 30 : audit [DBG] from='client.? 172.21.15.33:0/1750984448' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-16T23:48:49.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:49 smithi033 bash[22694]: audit 2024-09-16T23:48:49.415273+0000 mon.a (mon.0) 31 : audit [INF] from='client.? 172.21.15.33:0/1868013241' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-16T23:48:49.752 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:49 smithi033 bash[22694]: audit 2024-09-16T23:48:49.420074+0000 mon.a (mon.0) 32 : audit [INF] from='client.? 172.21.15.33:0/1868013241' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-16T23:48:50.010 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout 2024-09-16T23:48:50.010 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout [global] 2024-09-16T23:48:50.010 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout fsid = f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:48:50.010 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.33:3300,v1:172.21.15.33:6789] 2024-09-16T23:48:50.011 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-16T23:48:50.011 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-16T23:48:50.011 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-16T23:48:50.011 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-16T23:48:50.011 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout 2024-09-16T23:48:50.011 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-16T23:48:50.011 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-16T23:48:50.011 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout 2024-09-16T23:48:50.011 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout [osd] 2024-09-16T23:48:50.011 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-16T23:48:50.012 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-16T23:48:50.012 INFO:teuthology.orchestra.run.smithi033.stdout:Enabling cephadm module... 2024-09-16T23:48:51.752 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:51 smithi033 bash[22694]: audit 2024-09-16T23:48:51.447165+0000 mon.a (mon.0) 33 : audit [INF] from='client.? 172.21.15.33:0/95611876' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-09-16T23:48:51.752 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:51 smithi033 bash[22949]: ignoring --setuser ceph since I am not root 2024-09-16T23:48:51.752 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:51 smithi033 bash[22949]: ignoring --setgroup ceph since I am not root 2024-09-16T23:48:51.752 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:51 smithi033 bash[22949]: debug 2024-09-16T23:48:51.651+0000 7f6fc1cf5040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-16T23:48:52.752 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:52 smithi033 bash[22694]: audit 2024-09-16T23:48:51.498876+0000 mon.a (mon.0) 34 : audit [INF] from='client.? 172.21.15.33:0/95611876' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-16T23:48:52.752 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:52 smithi033 bash[22694]: cluster 2024-09-16T23:48:51.503795+0000 mon.a (mon.0) 35 : cluster [DBG] mgrmap e5: a(active, since 6s) 2024-09-16T23:48:53.252 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:52 smithi033 bash[22949]: debug 2024-09-16T23:48:52.891+0000 7f6fc1cf5040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-16T23:48:53.252 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:52 smithi033 bash[22949]: debug 2024-09-16T23:48:52.959+0000 7f6fc1cf5040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-16T23:48:53.252 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:53 smithi033 bash[22949]: debug 2024-09-16T23:48:53.119+0000 7f6fc1cf5040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-16T23:48:54.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:53 smithi033 bash[22694]: audit 2024-09-16T23:48:53.709934+0000 mon.a (mon.0) 36 : audit [DBG] from='client.? 172.21.15.33:0/2710631971' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-16T23:48:54.002 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:53 smithi033 bash[22949]: debug 2024-09-16T23:48:53.811+0000 7f6fc1cf5040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-16T23:48:54.002 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:53 smithi033 bash[22949]: debug 2024-09-16T23:48:53.883+0000 7f6fc1cf5040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-16T23:48:54.002 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:53 smithi033 bash[22949]: debug 2024-09-16T23:48:53.955+0000 7f6fc1cf5040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-16T23:48:54.274 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout { 2024-09-16T23:48:54.274 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-09-16T23:48:54.274 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-16T23:48:54.274 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-16T23:48:54.274 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-16T23:48:54.274 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout } 2024-09-16T23:48:54.274 INFO:teuthology.orchestra.run.smithi033.stdout:Waiting for the mgr to restart... 2024-09-16T23:48:54.274 INFO:teuthology.orchestra.run.smithi033.stdout:Waiting for mgr epoch 5... 2024-09-16T23:48:54.502 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:54 smithi033 bash[22949]: debug 2024-09-16T23:48:54.147+0000 7f6fc1cf5040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-16T23:48:54.502 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:54 smithi033 bash[22949]: debug 2024-09-16T23:48:54.231+0000 7f6fc1cf5040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-16T23:48:54.502 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:54 smithi033 bash[22949]: debug 2024-09-16T23:48:54.303+0000 7f6fc1cf5040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-16T23:48:54.844 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:54 smithi033 bash[22949]: debug 2024-09-16T23:48:54.570+0000 7f6fc1cf5040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-16T23:48:54.844 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:54 smithi033 bash[22949]: debug 2024-09-16T23:48:54.638+0000 7f6fc1cf5040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-16T23:48:55.188 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:54 smithi033 bash[22949]: debug 2024-09-16T23:48:54.846+0000 7f6fc1cf5040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-16T23:48:55.188 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:54 smithi033 bash[22949]: debug 2024-09-16T23:48:54.926+0000 7f6fc1cf5040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-16T23:48:55.502 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:55 smithi033 bash[22949]: debug 2024-09-16T23:48:55.186+0000 7f6fc1cf5040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-16T23:48:55.502 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:55 smithi033 bash[22949]: debug 2024-09-16T23:48:55.378+0000 7f6fc1cf5040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-16T23:48:55.824 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:55 smithi033 bash[22949]: debug 2024-09-16T23:48:55.550+0000 7f6fc1cf5040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-16T23:48:55.824 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:55 smithi033 bash[22949]: debug 2024-09-16T23:48:55.634+0000 7f6fc1cf5040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-16T23:48:56.252 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:55 smithi033 bash[22949]: debug 2024-09-16T23:48:55.822+0000 7f6fc1cf5040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-16T23:48:56.981 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:56 smithi033 bash[22949]: debug 2024-09-16T23:48:56.666+0000 7f6fc1cf5040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-16T23:48:56.981 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:56 smithi033 bash[22949]: debug 2024-09-16T23:48:56.746+0000 7f6fc1cf5040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-16T23:48:57.252 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:56 smithi033 bash[22949]: debug 2024-09-16T23:48:56.982+0000 7f6fc1cf5040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-16T23:48:57.252 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:57 smithi033 bash[22949]: debug 2024-09-16T23:48:57.058+0000 7f6fc1cf5040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-16T23:48:57.752 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:57 smithi033 bash[22949]: debug 2024-09-16T23:48:57.462+0000 7f6fc1cf5040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-16T23:48:57.752 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:48:57 smithi033 bash[22949]: debug 2024-09-16T23:48:57.546+0000 7f6fc1cf5040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-16T23:48:57.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:57 smithi033 bash[22694]: cluster 2024-09-16T23:48:57.570313+0000 mon.a (mon.0) 37 : cluster [INF] Active manager daemon a restarted 2024-09-16T23:48:57.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:57 smithi033 bash[22694]: cluster 2024-09-16T23:48:57.570867+0000 mon.a (mon.0) 38 : cluster [INF] Activating manager daemon a 2024-09-16T23:48:57.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:57 smithi033 bash[22694]: cluster 2024-09-16T23:48:57.576711+0000 mon.a (mon.0) 39 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-09-16T23:48:57.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:57 smithi033 bash[22694]: cluster 2024-09-16T23:48:57.576887+0000 mon.a (mon.0) 40 : cluster [DBG] mgrmap e6: a(active, starting, since 0.00619398s) 2024-09-16T23:48:57.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:57 smithi033 bash[22694]: audit 2024-09-16T23:48:57.580010+0000 mon.a (mon.0) 41 : audit [DBG] from='mgr.14118 172.21.15.33:0/3684973178' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T23:48:57.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:57 smithi033 bash[22694]: audit 2024-09-16T23:48:57.581280+0000 mon.a (mon.0) 42 : audit [DBG] from='mgr.14118 172.21.15.33:0/3684973178' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-16T23:48:57.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:57 smithi033 bash[22694]: audit 2024-09-16T23:48:57.582140+0000 mon.a (mon.0) 43 : audit [DBG] from='mgr.14118 172.21.15.33:0/3684973178' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-16T23:48:57.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:57 smithi033 bash[22694]: audit 2024-09-16T23:48:57.582453+0000 mon.a (mon.0) 44 : audit [DBG] from='mgr.14118 172.21.15.33:0/3684973178' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-16T23:48:57.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:57 smithi033 bash[22694]: audit 2024-09-16T23:48:57.582729+0000 mon.a (mon.0) 45 : audit [DBG] from='mgr.14118 172.21.15.33:0/3684973178' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-16T23:48:57.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:57 smithi033 bash[22694]: cluster 2024-09-16T23:48:57.607358+0000 mon.a (mon.0) 46 : cluster [INF] Manager daemon a is now available 2024-09-16T23:48:59.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:58 smithi033 bash[22694]: cephadm 2024-09-16T23:48:57.626312+0000 mgr.a (mgr.14118) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-09-16T23:48:59.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:58 smithi033 bash[22694]: audit 2024-09-16T23:48:57.631128+0000 mon.a (mon.0) 47 : audit [INF] from='mgr.14118 172.21.15.33:0/3684973178' entity='mgr.a' 2024-09-16T23:48:59.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:58 smithi033 bash[22694]: audit 2024-09-16T23:48:57.635342+0000 mon.a (mon.0) 48 : audit [INF] from='mgr.14118 172.21.15.33:0/3684973178' entity='mgr.a' 2024-09-16T23:48:59.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:58 smithi033 bash[22694]: audit 2024-09-16T23:48:57.639308+0000 mon.a (mon.0) 49 : audit [DBG] from='mgr.14118 172.21.15.33:0/3684973178' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:48:59.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:58 smithi033 bash[22694]: audit 2024-09-16T23:48:57.642366+0000 mon.a (mon.0) 50 : audit [DBG] from='mgr.14118 172.21.15.33:0/3684973178' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:48:59.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:58 smithi033 bash[22694]: audit 2024-09-16T23:48:57.653125+0000 mon.a (mon.0) 51 : audit [INF] from='mgr.14118 172.21.15.33:0/3684973178' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-16T23:48:59.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:58 smithi033 bash[22694]: audit 2024-09-16T23:48:57.655063+0000 mon.a (mon.0) 52 : audit [INF] from='mgr.14118 172.21.15.33:0/3684973178' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-16T23:48:59.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:58 smithi033 bash[22694]: cluster 2024-09-16T23:48:58.583016+0000 mon.a (mon.0) 53 : cluster [DBG] mgrmap e7: a(active, since 1.01232s) 2024-09-16T23:48:59.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:58 smithi033 bash[22694]: audit 2024-09-16T23:48:58.625287+0000 mon.a (mon.0) 54 : audit [INF] from='mgr.14118 172.21.15.33:0/3684973178' entity='mgr.a' 2024-09-16T23:48:59.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:58 smithi033 bash[22694]: audit 2024-09-16T23:48:58.629122+0000 mon.a (mon.0) 55 : audit [INF] from='mgr.14118 172.21.15.33:0/3684973178' entity='mgr.a' 2024-09-16T23:48:59.197 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout { 2024-09-16T23:48:59.197 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-16T23:48:59.197 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-16T23:48:59.197 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout } 2024-09-16T23:48:59.197 INFO:teuthology.orchestra.run.smithi033.stdout:mgr epoch 5 is available 2024-09-16T23:48:59.197 INFO:teuthology.orchestra.run.smithi033.stdout:Setting orchestrator backend to cephadm... 2024-09-16T23:48:59.968 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:59 smithi033 bash[22694]: audit 2024-09-16T23:48:58.581613+0000 mgr.a (mgr.14118) 2 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-16T23:48:59.968 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:48:59 smithi033 bash[22694]: audit 2024-09-16T23:48:58.597031+0000 mgr.a (mgr.14118) 3 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-16T23:49:00.885 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:00 smithi033 bash[22694]: cluster 2024-09-16T23:48:59.634288+0000 mon.a (mon.0) 56 : cluster [DBG] mgrmap e8: a(active, since 2s) 2024-09-16T23:49:00.885 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:00 smithi033 bash[22694]: audit 2024-09-16T23:49:00.515110+0000 mgr.a (mgr.14118) 4 : audit [DBG] from='client.14130 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:49:00.885 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:00 smithi033 bash[22694]: audit 2024-09-16T23:49:00.523431+0000 mon.a (mon.0) 57 : audit [INF] from='mgr.14118 172.21.15.33:0/3684973178' entity='mgr.a' 2024-09-16T23:49:00.885 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:00 smithi033 bash[22694]: audit 2024-09-16T23:49:00.539731+0000 mon.a (mon.0) 58 : audit [DBG] from='mgr.14118 172.21.15.33:0/3684973178' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:49:01.211 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:00 smithi033 bash[22949]: debug 2024-09-16T23:49:00.886+0000 7f6f2e7ff640 -1 log_channel(cephadm) log [ERR] : [16/Sep/2024:23:49:00] ENGINE Error in HTTPServer.serve 2024-09-16T23:49:01.211 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:00 smithi033 bash[22949]: Traceback (most recent call last): 2024-09-16T23:49:01.211 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:00 smithi033 bash[22949]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-16T23:49:01.211 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:00 smithi033 bash[22949]: self._connections.run(self.expiration_interval) 2024-09-16T23:49:01.211 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:00 smithi033 bash[22949]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-16T23:49:01.212 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:00 smithi033 bash[22949]: self._run(expiration_interval) 2024-09-16T23:49:01.212 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:00 smithi033 bash[22949]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-16T23:49:01.212 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:00 smithi033 bash[22949]: new_conn = self._from_server_socket(self.server.socket) 2024-09-16T23:49:01.212 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:00 smithi033 bash[22949]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-16T23:49:01.212 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:00 smithi033 bash[22949]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-16T23:49:01.212 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:00 smithi033 bash[22949]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-16T23:49:01.212 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:00 smithi033 bash[22949]: s = self.context.wrap_socket( 2024-09-16T23:49:01.212 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:00 smithi033 bash[22949]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-16T23:49:01.212 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:00 smithi033 bash[22949]: return self.sslsocket_class._create( 2024-09-16T23:49:01.212 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:00 smithi033 bash[22949]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-16T23:49:01.212 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:00 smithi033 bash[22949]: self.do_handshake() 2024-09-16T23:49:01.212 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:00 smithi033 bash[22949]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-16T23:49:01.212 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:00 smithi033 bash[22949]: self._sslobj.do_handshake() 2024-09-16T23:49:01.213 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:00 smithi033 bash[22949]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-16T23:49:02.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:01 smithi033 bash[22694]: cephadm 2024-09-16T23:49:00.760770+0000 mgr.a (mgr.14118) 5 : cephadm [INF] [16/Sep/2024:23:49:00] ENGINE Bus STARTING 2024-09-16T23:49:02.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:01 smithi033 bash[22694]: cephadm 2024-09-16T23:49:00.886335+0000 mgr.a (mgr.14118) 6 : cephadm [INF] [16/Sep/2024:23:49:00] ENGINE Serving on https://172.21.15.33:7150 2024-09-16T23:49:02.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:01 smithi033 bash[22694]: cephadm 2024-09-16T23:49:00.888894+0000 mgr.a (mgr.14118) 7 : cephadm [ERR] [16/Sep/2024:23:49:00] ENGINE Error in HTTPServer.serve 2024-09-16T23:49:02.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:01 smithi033 bash[22694]: Traceback (most recent call last): 2024-09-16T23:49:02.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:01 smithi033 bash[22694]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-16T23:49:02.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:01 smithi033 bash[22694]: self._connections.run(self.expiration_interval) 2024-09-16T23:49:02.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:01 smithi033 bash[22694]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-16T23:49:02.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:01 smithi033 bash[22694]: self._run(expiration_interval) 2024-09-16T23:49:02.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:01 smithi033 bash[22694]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-16T23:49:02.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:01 smithi033 bash[22694]: new_conn = self._from_server_socket(self.server.socket) 2024-09-16T23:49:02.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:01 smithi033 bash[22694]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-16T23:49:02.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:01 smithi033 bash[22694]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-16T23:49:02.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:01 smithi033 bash[22694]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-16T23:49:02.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:01 smithi033 bash[22694]: s = self.context.wrap_socket( 2024-09-16T23:49:02.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:01 smithi033 bash[22694]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-16T23:49:02.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:01 smithi033 bash[22694]: return self.sslsocket_class._create( 2024-09-16T23:49:02.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:01 smithi033 bash[22694]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-16T23:49:02.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:01 smithi033 bash[22694]: self.do_handshake() 2024-09-16T23:49:02.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:01 smithi033 bash[22694]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-16T23:49:02.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:01 smithi033 bash[22694]: self._sslobj.do_handshake() 2024-09-16T23:49:02.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:01 smithi033 bash[22694]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-16T23:49:02.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:01 smithi033 bash[22694]: cephadm 2024-09-16T23:49:00.987372+0000 mgr.a (mgr.14118) 8 : cephadm [INF] [16/Sep/2024:23:49:00] ENGINE Serving on http://172.21.15.33:8765 2024-09-16T23:49:02.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:01 smithi033 bash[22694]: cephadm 2024-09-16T23:49:00.987472+0000 mgr.a (mgr.14118) 9 : cephadm [INF] [16/Sep/2024:23:49:00] ENGINE Bus STARTED 2024-09-16T23:49:02.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:01 smithi033 bash[22694]: audit 2024-09-16T23:49:00.988069+0000 mon.a (mon.0) 59 : audit [DBG] from='mgr.14118 172.21.15.33:0/3684973178' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:49:03.219 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-16T23:49:03.219 INFO:teuthology.orchestra.run.smithi033.stdout:Generating ssh key... 2024-09-16T23:49:04.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:03 smithi033 bash[22694]: audit 2024-09-16T23:49:02.665427+0000 mgr.a (mgr.14118) 10 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:49:05.253 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:04 smithi033 bash[22949]: Generating public/private rsa key pair. 2024-09-16T23:49:05.253 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:04 smithi033 bash[22949]: Your identification has been saved in /tmp/tmpx4lshwhh/key 2024-09-16T23:49:05.253 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:04 smithi033 bash[22949]: Your public key has been saved in /tmp/tmpx4lshwhh/key.pub 2024-09-16T23:49:05.253 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:04 smithi033 bash[22949]: The key fingerprint is: 2024-09-16T23:49:05.253 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:04 smithi033 bash[22949]: SHA256:v6ZNJQIpd46nCFM81jxJCuNSzaE/lXk2FxvvSjCMKF8 ceph-f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:49:05.253 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:04 smithi033 bash[22949]: The key's randomart image is: 2024-09-16T23:49:05.253 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:04 smithi033 bash[22949]: +---[RSA 3072]----+ 2024-09-16T23:49:05.253 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:04 smithi033 bash[22949]: | +o... o | 2024-09-16T23:49:05.253 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:04 smithi033 bash[22949]: | o =o* B = | 2024-09-16T23:49:05.254 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:04 smithi033 bash[22949]: |. + O E O o . | 2024-09-16T23:49:05.254 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:04 smithi033 bash[22949]: | . * * O = . | 2024-09-16T23:49:05.254 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:04 smithi033 bash[22949]: | o + . S o o | 2024-09-16T23:49:05.254 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:04 smithi033 bash[22949]: | o o o + + | 2024-09-16T23:49:05.254 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:04 smithi033 bash[22949]: | . . + | 2024-09-16T23:49:05.254 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:04 smithi033 bash[22949]: | o.. | 2024-09-16T23:49:05.254 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:04 smithi033 bash[22949]: | .oo | 2024-09-16T23:49:05.254 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:04 smithi033 bash[22949]: +----[SHA256]-----+ 2024-09-16T23:49:06.252 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:05 smithi033 bash[22694]: audit 2024-09-16T23:49:04.598611+0000 mgr.a (mgr.14118) 11 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:49:06.253 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:05 smithi033 bash[22694]: cephadm 2024-09-16T23:49:04.598860+0000 mgr.a (mgr.14118) 12 : cephadm [INF] Generating ssh key... 2024-09-16T23:49:06.253 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:05 smithi033 bash[22694]: audit 2024-09-16T23:49:04.970259+0000 mon.a (mon.0) 60 : audit [INF] from='mgr.14118 172.21.15.33:0/3684973178' entity='mgr.a' 2024-09-16T23:49:06.253 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:05 smithi033 bash[22694]: audit 2024-09-16T23:49:04.974765+0000 mon.a (mon.0) 61 : audit [INF] from='mgr.14118 172.21.15.33:0/3684973178' entity='mgr.a' 2024-09-16T23:49:07.599 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCsDOWz+f2ylJFvET2X/TRFy++psDkGjIElGW9HseibzcEqxfofqjZrT+DVwiU/6DnVZemmNueMNMNj9fijyym69SOwTgYaOugMauNT1d0OLoZDxyMx2iY7Y1o8Rzye3yumjb95V5ZxFTLt6BDTZZehO4hM7rPKhZqeNWilwYw6h8HckVRhIr8YHc7D90c2YtCrdlymgw51e02IyFiGR+5mVha4w0ZD2WNiOzTXB0lUGY2wDEi4BfcNmrDhzyu8g0IksFj0kvfdXvsqniBNtwFl8WbGnYcbd9Blrf/x1/BGswPn13ZI2xMWm4cgJlo4FykmlYRq2P7FvodAx9A0/W3L3Kctc9faCJwSDjC0SuIEBmZrDcEr/QOu5Pr9rhOykQsqs/6r6BYKrXzsHo5+usvukIjvPRrYKDZDuRqt+Q2/8UYIQHaLf+6DDX7WF6A0loC2aC+upfGSJTVK7Kk/eeg2nhkUe1KVi5ASOfoMF/2zdEr0K/bQFaStuUrV2PkSUbk= ceph-f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:49:07.600 INFO:teuthology.orchestra.run.smithi033.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-16T23:49:07.600 INFO:teuthology.orchestra.run.smithi033.stdout:Adding key to root@localhost authorized_keys... 2024-09-16T23:49:07.600 INFO:teuthology.orchestra.run.smithi033.stdout:Adding host smithi033... 2024-09-16T23:49:08.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:07 smithi033 bash[22694]: audit 2024-09-16T23:49:07.014822+0000 mgr.a (mgr.14118) 13 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:49:09.886 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:09 smithi033 bash[22694]: audit 2024-09-16T23:49:09.103348+0000 mgr.a (mgr.14118) 14 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi033", "addr": "172.21.15.33", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:49:10.905 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:10 smithi033 bash[22694]: cephadm 2024-09-16T23:49:10.397281+0000 mgr.a (mgr.14118) 15 : cephadm [INF] Deploying cephadm binary to smithi033 2024-09-16T23:49:14.824 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout Added host 'smithi033' with addr '172.21.15.33' 2024-09-16T23:49:14.824 INFO:teuthology.orchestra.run.smithi033.stdout:Deploying unmanaged mon service... 2024-09-16T23:49:15.253 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:14 smithi033 bash[22694]: audit 2024-09-16T23:49:13.973040+0000 mon.a (mon.0) 62 : audit [INF] from='mgr.14118 172.21.15.33:0/3684973178' entity='mgr.a' 2024-09-16T23:49:15.253 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:14 smithi033 bash[22694]: cephadm 2024-09-16T23:49:13.973506+0000 mgr.a (mgr.14118) 16 : cephadm [INF] Added host smithi033 2024-09-16T23:49:15.253 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:14 smithi033 bash[22694]: audit 2024-09-16T23:49:13.973937+0000 mon.a (mon.0) 63 : audit [DBG] from='mgr.14118 172.21.15.33:0/3684973178' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:49:17.603 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-16T23:49:17.604 INFO:teuthology.orchestra.run.smithi033.stdout:Deploying unmanaged mgr service... 2024-09-16T23:49:18.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:17 smithi033 bash[22694]: audit 2024-09-16T23:49:16.868328+0000 mgr.a (mgr.14118) 17 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:49:18.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:17 smithi033 bash[22694]: cephadm 2024-09-16T23:49:16.870179+0000 mgr.a (mgr.14118) 18 : cephadm [INF] Saving service mon spec with placement count:5 2024-09-16T23:49:18.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:17 smithi033 bash[22694]: audit 2024-09-16T23:49:16.872828+0000 mon.a (mon.0) 64 : audit [INF] from='mgr.14118 172.21.15.33:0/3684973178' entity='mgr.a' 2024-09-16T23:49:18.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:17 smithi033 bash[22694]: audit 2024-09-16T23:49:17.611259+0000 mon.a (mon.0) 65 : audit [INF] from='mgr.14118 172.21.15.33:0/3684973178' entity='mgr.a' 2024-09-16T23:49:19.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:19 smithi033 bash[22694]: cluster 2024-09-16T23:49:17.583966+0000 mgr.a (mgr.14118) 19 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:49:19.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:19 smithi033 bash[22694]: audit 2024-09-16T23:49:18.158468+0000 mon.a (mon.0) 66 : audit [INF] from='mgr.14118 172.21.15.33:0/3684973178' entity='mgr.a' 2024-09-16T23:49:19.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:19 smithi033 bash[22694]: audit 2024-09-16T23:49:19.092032+0000 mon.a (mon.0) 67 : audit [INF] from='mgr.14118 172.21.15.33:0/3684973178' entity='mgr.a' 2024-09-16T23:49:19.720 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-16T23:49:20.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:20 smithi033 bash[22694]: audit 2024-09-16T23:49:19.085878+0000 mgr.a (mgr.14118) 20 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:49:20.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:20 smithi033 bash[22694]: cephadm 2024-09-16T23:49:19.087310+0000 mgr.a (mgr.14118) 21 : cephadm [INF] Saving service mgr spec with placement count:2 2024-09-16T23:49:21.441 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:21 smithi033 bash[22694]: cluster 2024-09-16T23:49:19.584450+0000 mgr.a (mgr.14118) 22 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:49:22.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:22 smithi033 bash[22694]: audit 2024-09-16T23:49:21.199880+0000 mon.a (mon.0) 68 : audit [INF] from='client.? 172.21.15.33:0/26725010' entity='client.admin' 2024-09-16T23:49:23.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:23 smithi033 bash[22694]: cluster 2024-09-16T23:49:21.584967+0000 mgr.a (mgr.14118) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:49:23.824 INFO:teuthology.orchestra.run.smithi033.stdout:Enabling the dashboard module... 2024-09-16T23:49:24.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:24 smithi033 bash[22694]: audit 2024-09-16T23:49:23.214273+0000 mon.a (mon.0) 69 : audit [INF] from='client.? 172.21.15.33:0/976591334' entity='client.admin' 2024-09-16T23:49:24.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:24 smithi033 bash[22694]: audit 2024-09-16T23:49:23.424113+0000 mon.a (mon.0) 70 : audit [INF] from='mgr.14118 172.21.15.33:0/3684973178' entity='mgr.a' 2024-09-16T23:49:25.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:25 smithi033 bash[22694]: cluster 2024-09-16T23:49:23.585344+0000 mgr.a (mgr.14118) 24 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:49:25.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:25 smithi033 bash[22694]: audit 2024-09-16T23:49:24.591270+0000 mon.a (mon.0) 71 : audit [INF] from='mgr.14118 172.21.15.33:0/3684973178' entity='mgr.a' 2024-09-16T23:49:26.682 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:26 smithi033 bash[22694]: audit 2024-09-16T23:49:25.537448+0000 mon.a (mon.0) 72 : audit [INF] from='client.? 172.21.15.33:0/3232655371' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-09-16T23:49:26.683 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:26 smithi033 bash[22949]: ignoring --setuser ceph since I am not root 2024-09-16T23:49:26.683 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:26 smithi033 bash[22949]: ignoring --setgroup ceph since I am not root 2024-09-16T23:49:26.683 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:26 smithi033 bash[22949]: debug 2024-09-16T23:49:26.597+0000 7f38d8448040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-16T23:49:27.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:27 smithi033 bash[22694]: audit 2024-09-16T23:49:26.431997+0000 mon.a (mon.0) 73 : audit [INF] from='client.? 172.21.15.33:0/3232655371' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-16T23:49:27.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:27 smithi033 bash[22694]: cluster 2024-09-16T23:49:26.437808+0000 mon.a (mon.0) 74 : cluster [DBG] mgrmap e9: a(active, since 28s) 2024-09-16T23:49:28.121 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:27 smithi033 bash[22949]: debug 2024-09-16T23:49:27.833+0000 7f38d8448040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-16T23:49:28.121 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:27 smithi033 bash[22949]: debug 2024-09-16T23:49:27.901+0000 7f38d8448040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-16T23:49:28.121 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:28 smithi033 bash[22949]: debug 2024-09-16T23:49:28.057+0000 7f38d8448040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-16T23:49:29.099 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:28 smithi033 bash[22694]: audit 2024-09-16T23:49:28.749075+0000 mon.a (mon.0) 75 : audit [DBG] from='client.? 172.21.15.33:0/1431622395' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-16T23:49:29.099 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:28 smithi033 bash[22949]: debug 2024-09-16T23:49:28.753+0000 7f38d8448040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-16T23:49:29.099 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:28 smithi033 bash[22949]: debug 2024-09-16T23:49:28.829+0000 7f38d8448040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-16T23:49:29.099 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:28 smithi033 bash[22949]: debug 2024-09-16T23:49:28.901+0000 7f38d8448040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-16T23:49:29.382 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout { 2024-09-16T23:49:29.382 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-09-16T23:49:29.382 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-16T23:49:29.382 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-16T23:49:29.382 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-16T23:49:29.382 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout } 2024-09-16T23:49:29.382 INFO:teuthology.orchestra.run.smithi033.stdout:Waiting for the mgr to restart... 2024-09-16T23:49:29.382 INFO:teuthology.orchestra.run.smithi033.stdout:Waiting for mgr epoch 9... 2024-09-16T23:49:29.475 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:29 smithi033 bash[22949]: debug 2024-09-16T23:49:29.097+0000 7f38d8448040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-16T23:49:29.475 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:29 smithi033 bash[22949]: debug 2024-09-16T23:49:29.177+0000 7f38d8448040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-16T23:49:29.475 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:29 smithi033 bash[22949]: debug 2024-09-16T23:49:29.249+0000 7f38d8448040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-16T23:49:29.753 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:29 smithi033 bash[22949]: debug 2024-09-16T23:49:29.517+0000 7f38d8448040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-16T23:49:29.753 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:29 smithi033 bash[22949]: debug 2024-09-16T23:49:29.589+0000 7f38d8448040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-16T23:49:30.143 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:29 smithi033 bash[22949]: debug 2024-09-16T23:49:29.793+0000 7f38d8448040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-16T23:49:30.143 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:29 smithi033 bash[22949]: debug 2024-09-16T23:49:29.877+0000 7f38d8448040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-16T23:49:30.529 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:30 smithi033 bash[22949]: debug 2024-09-16T23:49:30.141+0000 7f38d8448040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-16T23:49:30.529 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:30 smithi033 bash[22949]: debug 2024-09-16T23:49:30.325+0000 7f38d8448040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-16T23:49:31.003 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:30 smithi033 bash[22949]: debug 2024-09-16T23:49:30.497+0000 7f38d8448040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-16T23:49:31.003 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:30 smithi033 bash[22949]: debug 2024-09-16T23:49:30.577+0000 7f38d8448040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-16T23:49:31.003 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:30 smithi033 bash[22949]: debug 2024-09-16T23:49:30.765+0000 7f38d8448040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-16T23:49:31.864 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:31 smithi033 bash[22949]: debug 2024-09-16T23:49:31.629+0000 7f38d8448040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-16T23:49:31.864 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:31 smithi033 bash[22949]: debug 2024-09-16T23:49:31.713+0000 7f38d8448040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-16T23:49:32.253 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:31 smithi033 bash[22949]: debug 2024-09-16T23:49:31.945+0000 7f38d8448040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-16T23:49:32.253 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:32 smithi033 bash[22949]: debug 2024-09-16T23:49:32.021+0000 7f38d8448040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-16T23:49:32.753 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:32 smithi033 bash[22949]: debug 2024-09-16T23:49:32.437+0000 7f38d8448040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-16T23:49:32.753 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:32 smithi033 bash[22949]: debug 2024-09-16T23:49:32.517+0000 7f38d8448040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-16T23:49:32.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:32 smithi033 bash[22694]: cluster 2024-09-16T23:49:32.524562+0000 mon.a (mon.0) 76 : cluster [INF] Active manager daemon a restarted 2024-09-16T23:49:32.754 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:32 smithi033 bash[22694]: cluster 2024-09-16T23:49:32.524856+0000 mon.a (mon.0) 77 : cluster [INF] Activating manager daemon a 2024-09-16T23:49:32.754 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:32 smithi033 bash[22694]: cluster 2024-09-16T23:49:32.531003+0000 mon.a (mon.0) 78 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-09-16T23:49:32.754 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:32 smithi033 bash[22694]: cluster 2024-09-16T23:49:32.531365+0000 mon.a (mon.0) 79 : cluster [DBG] mgrmap e10: a(active, starting, since 0.00666102s) 2024-09-16T23:49:32.754 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:32 smithi033 bash[22694]: audit 2024-09-16T23:49:32.532597+0000 mon.a (mon.0) 80 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T23:49:32.754 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:32 smithi033 bash[22694]: audit 2024-09-16T23:49:32.533930+0000 mon.a (mon.0) 81 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-16T23:49:32.754 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:32 smithi033 bash[22694]: audit 2024-09-16T23:49:32.535240+0000 mon.a (mon.0) 82 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-16T23:49:32.754 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:32 smithi033 bash[22694]: audit 2024-09-16T23:49:32.535448+0000 mon.a (mon.0) 83 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-16T23:49:32.754 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:32 smithi033 bash[22694]: audit 2024-09-16T23:49:32.535584+0000 mon.a (mon.0) 84 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-16T23:49:32.754 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:32 smithi033 bash[22694]: cluster 2024-09-16T23:49:32.567191+0000 mon.a (mon.0) 85 : cluster [INF] Manager daemon a is now available 2024-09-16T23:49:34.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:33 smithi033 bash[22694]: audit 2024-09-16T23:49:32.588693+0000 mon.a (mon.0) 86 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:49:34.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:33 smithi033 bash[22694]: audit 2024-09-16T23:49:32.605009+0000 mon.a (mon.0) 87 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-16T23:49:34.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:33 smithi033 bash[22694]: audit 2024-09-16T23:49:32.607337+0000 mon.a (mon.0) 88 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-16T23:49:34.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:33 smithi033 bash[22694]: cluster 2024-09-16T23:49:33.536941+0000 mon.a (mon.0) 89 : cluster [DBG] mgrmap e11: a(active, since 1.01224s) 2024-09-16T23:49:34.211 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout { 2024-09-16T23:49:34.212 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-09-16T23:49:34.212 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-16T23:49:34.212 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout } 2024-09-16T23:49:34.212 INFO:teuthology.orchestra.run.smithi033.stdout:mgr epoch 9 is available 2024-09-16T23:49:34.212 INFO:teuthology.orchestra.run.smithi033.stdout:Generating a dashboard self-signed certificate... 2024-09-16T23:49:34.583 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22949]: debug 2024-09-16T23:49:34.317+0000 7f384374f640 -1 log_channel(cephadm) log [ERR] : [16/Sep/2024:23:49:34] ENGINE Error in HTTPServer.serve 2024-09-16T23:49:34.584 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22949]: Traceback (most recent call last): 2024-09-16T23:49:34.584 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22949]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-16T23:49:34.584 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22949]: self._connections.run(self.expiration_interval) 2024-09-16T23:49:34.584 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22949]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-16T23:49:34.584 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22949]: self._run(expiration_interval) 2024-09-16T23:49:34.584 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22949]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-16T23:49:34.584 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22949]: new_conn = self._from_server_socket(self.server.socket) 2024-09-16T23:49:34.584 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22949]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-16T23:49:34.584 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22949]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-16T23:49:34.584 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22949]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-16T23:49:34.584 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22949]: s = self.context.wrap_socket( 2024-09-16T23:49:34.584 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22949]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-16T23:49:34.584 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22949]: return self.sslsocket_class._create( 2024-09-16T23:49:34.585 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22949]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-16T23:49:34.585 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22949]: self.do_handshake() 2024-09-16T23:49:34.585 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22949]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-16T23:49:34.585 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22949]: self._sslobj.do_handshake() 2024-09-16T23:49:34.585 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22949]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-16T23:49:35.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22694]: cephadm 2024-09-16T23:49:34.194133+0000 mgr.a (mgr.14150) 3 : cephadm [INF] [16/Sep/2024:23:49:34] ENGINE Bus STARTING 2024-09-16T23:49:35.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22694]: cephadm 2024-09-16T23:49:34.319381+0000 mgr.a (mgr.14150) 4 : cephadm [INF] [16/Sep/2024:23:49:34] ENGINE Serving on https://172.21.15.33:7150 2024-09-16T23:49:35.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22694]: cephadm 2024-09-16T23:49:34.322119+0000 mgr.a (mgr.14150) 5 : cephadm [ERR] [16/Sep/2024:23:49:34] ENGINE Error in HTTPServer.serve 2024-09-16T23:49:35.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22694]: Traceback (most recent call last): 2024-09-16T23:49:35.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22694]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-16T23:49:35.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22694]: self._connections.run(self.expiration_interval) 2024-09-16T23:49:35.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22694]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-16T23:49:35.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22694]: self._run(expiration_interval) 2024-09-16T23:49:35.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22694]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-16T23:49:35.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22694]: new_conn = self._from_server_socket(self.server.socket) 2024-09-16T23:49:35.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22694]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-16T23:49:35.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22694]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-16T23:49:35.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22694]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-16T23:49:35.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22694]: s = self.context.wrap_socket( 2024-09-16T23:49:35.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22694]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-16T23:49:35.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22694]: return self.sslsocket_class._create( 2024-09-16T23:49:35.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22694]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-16T23:49:35.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22694]: self.do_handshake() 2024-09-16T23:49:35.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22694]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-16T23:49:35.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22694]: self._sslobj.do_handshake() 2024-09-16T23:49:35.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22694]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-16T23:49:35.006 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22694]: cephadm 2024-09-16T23:49:34.420811+0000 mgr.a (mgr.14150) 6 : cephadm [INF] [16/Sep/2024:23:49:34] ENGINE Serving on http://172.21.15.33:8765 2024-09-16T23:49:35.006 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:34 smithi033 bash[22694]: cephadm 2024-09-16T23:49:34.420929+0000 mgr.a (mgr.14150) 7 : cephadm [INF] [16/Sep/2024:23:49:34] ENGINE Bus STARTED 2024-09-16T23:49:36.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:35 smithi033 bash[22694]: cluster 2024-09-16T23:49:34.584880+0000 mon.a (mon.0) 90 : cluster [DBG] mgrmap e12: a(active, since 2s) 2024-09-16T23:49:36.479 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-09-16T23:49:36.479 INFO:teuthology.orchestra.run.smithi033.stdout:Creating initial admin user... 2024-09-16T23:49:37.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:36 smithi033 bash[22694]: audit 2024-09-16T23:49:35.631059+0000 mgr.a (mgr.14150) 8 : audit [DBG] from='client.14162 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:49:37.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:36 smithi033 bash[22694]: audit 2024-09-16T23:49:35.768981+0000 mon.a (mon.0) 91 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:49:37.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:36 smithi033 bash[22694]: audit 2024-09-16T23:49:35.773605+0000 mon.a (mon.0) 92 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:49:39.027 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$7YwlgY8b.7pRWTL2fGfV.uVvuhsDznPsRpllQmwn7weZswKaomXKW", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1726530578, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-16T23:49:39.028 INFO:teuthology.orchestra.run.smithi033.stdout:Fetching dashboard port number... 2024-09-16T23:49:39.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:39 smithi033 bash[22694]: audit 2024-09-16T23:49:38.091631+0000 mgr.a (mgr.14150) 9 : 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-16T23:49:39.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:39 smithi033 bash[22694]: audit 2024-09-16T23:49:38.369008+0000 mon.a (mon.0) 93 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:49:40.631 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:40 smithi033 bash[22694]: cluster 2024-09-16T23:49:39.373491+0000 mon.a (mon.0) 94 : cluster [DBG] mgrmap e13: a(active, since 6s) 2024-09-16T23:49:40.631 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:40 smithi033 bash[22694]: audit 2024-09-16T23:49:39.697656+0000 mon.a (mon.0) 95 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:49:41.076 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stdout 8443 2024-09-16T23:49:41.076 INFO:teuthology.orchestra.run.smithi033.stdout:firewalld does not appear to be present 2024-09-16T23:49:41.077 INFO:teuthology.orchestra.run.smithi033.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-16T23:49:41.079 INFO:teuthology.orchestra.run.smithi033.stdout:Ceph Dashboard is now available at: 2024-09-16T23:49:41.079 INFO:teuthology.orchestra.run.smithi033.stdout: 2024-09-16T23:49:41.080 INFO:teuthology.orchestra.run.smithi033.stdout: URL: https://smithi033.front.sepia.ceph.com:8443/ 2024-09-16T23:49:41.080 INFO:teuthology.orchestra.run.smithi033.stdout: User: admin 2024-09-16T23:49:41.080 INFO:teuthology.orchestra.run.smithi033.stdout: Password: fig346pc7s 2024-09-16T23:49:41.080 INFO:teuthology.orchestra.run.smithi033.stdout: 2024-09-16T23:49:41.080 INFO:teuthology.orchestra.run.smithi033.stdout:Saving cluster configuration to /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config directory 2024-09-16T23:49:41.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:41 smithi033 bash[22694]: audit 2024-09-16T23:49:40.425381+0000 mon.a (mon.0) 96 : audit [DBG] from='client.? 172.21.15.33:0/3081681412' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-09-16T23:49:41.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:41 smithi033 bash[22694]: audit 2024-09-16T23:49:40.866280+0000 mon.a (mon.0) 97 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:49:43.375 INFO:teuthology.orchestra.run.smithi033.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-16T23:49:43.376 INFO:teuthology.orchestra.run.smithi033.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-16T23:49:43.376 INFO:teuthology.orchestra.run.smithi033.stdout: 2024-09-16T23:49:43.376 INFO:teuthology.orchestra.run.smithi033.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-16T23:49:43.376 INFO:teuthology.orchestra.run.smithi033.stdout: 2024-09-16T23:49:43.376 INFO:teuthology.orchestra.run.smithi033.stdout:Or, if you are only running a single cluster on this host: 2024-09-16T23:49:43.376 INFO:teuthology.orchestra.run.smithi033.stdout: 2024-09-16T23:49:43.376 INFO:teuthology.orchestra.run.smithi033.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-16T23:49:43.376 INFO:teuthology.orchestra.run.smithi033.stdout: 2024-09-16T23:49:43.376 INFO:teuthology.orchestra.run.smithi033.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-16T23:49:43.376 INFO:teuthology.orchestra.run.smithi033.stdout: 2024-09-16T23:49:43.376 INFO:teuthology.orchestra.run.smithi033.stdout: ceph telemetry on 2024-09-16T23:49:43.376 INFO:teuthology.orchestra.run.smithi033.stdout: 2024-09-16T23:49:43.377 INFO:teuthology.orchestra.run.smithi033.stdout:For more information see: 2024-09-16T23:49:43.377 INFO:teuthology.orchestra.run.smithi033.stdout: 2024-09-16T23:49:43.377 INFO:teuthology.orchestra.run.smithi033.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-09-16T23:49:43.377 INFO:teuthology.orchestra.run.smithi033.stdout: 2024-09-16T23:49:43.377 INFO:teuthology.orchestra.run.smithi033.stdout:Bootstrap complete. 2024-09-16T23:49:43.440 INFO:tasks.cephadm:Fetching config... 2024-09-16T23:49:43.440 DEBUG:teuthology.orchestra.run.smithi033:> set -ex 2024-09-16T23:49:43.440 DEBUG:teuthology.orchestra.run.smithi033:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-16T23:49:43.446 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-16T23:49:43.446 DEBUG:teuthology.orchestra.run.smithi033:> set -ex 2024-09-16T23:49:43.446 DEBUG:teuthology.orchestra.run.smithi033:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-16T23:49:43.497 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-16T23:49:43.498 DEBUG:teuthology.orchestra.run.smithi033:> set -ex 2024-09-16T23:49:43.498 DEBUG:teuthology.orchestra.run.smithi033:> sudo dd if=/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/keyring of=/dev/stdout 2024-09-16T23:49:43.552 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-16T23:49:43.552 DEBUG:teuthology.orchestra.run.smithi033:> set -ex 2024-09-16T23:49:43.552 DEBUG:teuthology.orchestra.run.smithi033:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-16T23:49:43.597 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-16T23:49:43.598 DEBUG:teuthology.orchestra.run.smithi033:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCsDOWz+f2ylJFvET2X/TRFy++psDkGjIElGW9HseibzcEqxfofqjZrT+DVwiU/6DnVZemmNueMNMNj9fijyym69SOwTgYaOugMauNT1d0OLoZDxyMx2iY7Y1o8Rzye3yumjb95V5ZxFTLt6BDTZZehO4hM7rPKhZqeNWilwYw6h8HckVRhIr8YHc7D90c2YtCrdlymgw51e02IyFiGR+5mVha4w0ZD2WNiOzTXB0lUGY2wDEi4BfcNmrDhzyu8g0IksFj0kvfdXvsqniBNtwFl8WbGnYcbd9Blrf/x1/BGswPn13ZI2xMWm4cgJlo4FykmlYRq2P7FvodAx9A0/W3L3Kctc9faCJwSDjC0SuIEBmZrDcEr/QOu5Pr9rhOykQsqs/6r6BYKrXzsHo5+usvukIjvPRrYKDZDuRqt+Q2/8UYIQHaLf+6DDX7WF6A0loC2aC+upfGSJTVK7Kk/eeg2nhkUe1KVi5ASOfoMF/2zdEr0K/bQFaStuUrV2PkSUbk= ceph-f4fb0768-7485-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-16T23:49:43.661 INFO:teuthology.orchestra.run.smithi033.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCsDOWz+f2ylJFvET2X/TRFy++psDkGjIElGW9HseibzcEqxfofqjZrT+DVwiU/6DnVZemmNueMNMNj9fijyym69SOwTgYaOugMauNT1d0OLoZDxyMx2iY7Y1o8Rzye3yumjb95V5ZxFTLt6BDTZZehO4hM7rPKhZqeNWilwYw6h8HckVRhIr8YHc7D90c2YtCrdlymgw51e02IyFiGR+5mVha4w0ZD2WNiOzTXB0lUGY2wDEi4BfcNmrDhzyu8g0IksFj0kvfdXvsqniBNtwFl8WbGnYcbd9Blrf/x1/BGswPn13ZI2xMWm4cgJlo4FykmlYRq2P7FvodAx9A0/W3L3Kctc9faCJwSDjC0SuIEBmZrDcEr/QOu5Pr9rhOykQsqs/6r6BYKrXzsHo5+usvukIjvPRrYKDZDuRqt+Q2/8UYIQHaLf+6DDX7WF6A0loC2aC+upfGSJTVK7Kk/eeg2nhkUe1KVi5ASOfoMF/2zdEr0K/bQFaStuUrV2PkSUbk= ceph-f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:49:43.671 DEBUG:teuthology.orchestra.run.smithi089:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCsDOWz+f2ylJFvET2X/TRFy++psDkGjIElGW9HseibzcEqxfofqjZrT+DVwiU/6DnVZemmNueMNMNj9fijyym69SOwTgYaOugMauNT1d0OLoZDxyMx2iY7Y1o8Rzye3yumjb95V5ZxFTLt6BDTZZehO4hM7rPKhZqeNWilwYw6h8HckVRhIr8YHc7D90c2YtCrdlymgw51e02IyFiGR+5mVha4w0ZD2WNiOzTXB0lUGY2wDEi4BfcNmrDhzyu8g0IksFj0kvfdXvsqniBNtwFl8WbGnYcbd9Blrf/x1/BGswPn13ZI2xMWm4cgJlo4FykmlYRq2P7FvodAx9A0/W3L3Kctc9faCJwSDjC0SuIEBmZrDcEr/QOu5Pr9rhOykQsqs/6r6BYKrXzsHo5+usvukIjvPRrYKDZDuRqt+Q2/8UYIQHaLf+6DDX7WF6A0loC2aC+upfGSJTVK7Kk/eeg2nhkUe1KVi5ASOfoMF/2zdEr0K/bQFaStuUrV2PkSUbk= ceph-f4fb0768-7485-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-16T23:49:43.694 INFO:teuthology.orchestra.run.smithi089.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCsDOWz+f2ylJFvET2X/TRFy++psDkGjIElGW9HseibzcEqxfofqjZrT+DVwiU/6DnVZemmNueMNMNj9fijyym69SOwTgYaOugMauNT1d0OLoZDxyMx2iY7Y1o8Rzye3yumjb95V5ZxFTLt6BDTZZehO4hM7rPKhZqeNWilwYw6h8HckVRhIr8YHc7D90c2YtCrdlymgw51e02IyFiGR+5mVha4w0ZD2WNiOzTXB0lUGY2wDEi4BfcNmrDhzyu8g0IksFj0kvfdXvsqniBNtwFl8WbGnYcbd9Blrf/x1/BGswPn13ZI2xMWm4cgJlo4FykmlYRq2P7FvodAx9A0/W3L3Kctc9faCJwSDjC0SuIEBmZrDcEr/QOu5Pr9rhOykQsqs/6r6BYKrXzsHo5+usvukIjvPRrYKDZDuRqt+Q2/8UYIQHaLf+6DDX7WF6A0loC2aC+upfGSJTVK7Kk/eeg2nhkUe1KVi5ASOfoMF/2zdEr0K/bQFaStuUrV2PkSUbk= ceph-f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:49:43.703 DEBUG:teuthology.orchestra.run.smithi103:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCsDOWz+f2ylJFvET2X/TRFy++psDkGjIElGW9HseibzcEqxfofqjZrT+DVwiU/6DnVZemmNueMNMNj9fijyym69SOwTgYaOugMauNT1d0OLoZDxyMx2iY7Y1o8Rzye3yumjb95V5ZxFTLt6BDTZZehO4hM7rPKhZqeNWilwYw6h8HckVRhIr8YHc7D90c2YtCrdlymgw51e02IyFiGR+5mVha4w0ZD2WNiOzTXB0lUGY2wDEi4BfcNmrDhzyu8g0IksFj0kvfdXvsqniBNtwFl8WbGnYcbd9Blrf/x1/BGswPn13ZI2xMWm4cgJlo4FykmlYRq2P7FvodAx9A0/W3L3Kctc9faCJwSDjC0SuIEBmZrDcEr/QOu5Pr9rhOykQsqs/6r6BYKrXzsHo5+usvukIjvPRrYKDZDuRqt+Q2/8UYIQHaLf+6DDX7WF6A0loC2aC+upfGSJTVK7Kk/eeg2nhkUe1KVi5ASOfoMF/2zdEr0K/bQFaStuUrV2PkSUbk= ceph-f4fb0768-7485-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-16T23:49:43.725 INFO:teuthology.orchestra.run.smithi103.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCsDOWz+f2ylJFvET2X/TRFy++psDkGjIElGW9HseibzcEqxfofqjZrT+DVwiU/6DnVZemmNueMNMNj9fijyym69SOwTgYaOugMauNT1d0OLoZDxyMx2iY7Y1o8Rzye3yumjb95V5ZxFTLt6BDTZZehO4hM7rPKhZqeNWilwYw6h8HckVRhIr8YHc7D90c2YtCrdlymgw51e02IyFiGR+5mVha4w0ZD2WNiOzTXB0lUGY2wDEi4BfcNmrDhzyu8g0IksFj0kvfdXvsqniBNtwFl8WbGnYcbd9Blrf/x1/BGswPn13ZI2xMWm4cgJlo4FykmlYRq2P7FvodAx9A0/W3L3Kctc9faCJwSDjC0SuIEBmZrDcEr/QOu5Pr9rhOykQsqs/6r6BYKrXzsHo5+usvukIjvPRrYKDZDuRqt+Q2/8UYIQHaLf+6DDX7WF6A0loC2aC+upfGSJTVK7Kk/eeg2nhkUe1KVi5ASOfoMF/2zdEr0K/bQFaStuUrV2PkSUbk= ceph-f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:49:43.735 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-16T23:49:44.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:43 smithi033 bash[22694]: audit 2024-09-16T23:49:42.817974+0000 mon.a (mon.0) 98 : audit [INF] from='client.? 172.21.15.33:0/1396067857' entity='client.admin' 2024-09-16T23:49:49.347 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:49:51.762 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-16T23:49:51.762 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-16T23:49:52.254 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:51 smithi033 bash[22694]: audit 2024-09-16T23:49:50.808056+0000 mon.a (mon.0) 99 : audit [INF] from='client.? 172.21.15.33:0/426224886' entity='client.admin' 2024-09-16T23:49:52.254 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:51 smithi033 bash[22694]: audit 2024-09-16T23:49:51.736071+0000 mon.a (mon.0) 100 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:49:52.254 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:51 smithi033 bash[22694]: audit 2024-09-16T23:49:51.741290+0000 mon.a (mon.0) 101 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:49:52.254 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:51 smithi033 bash[22694]: audit 2024-09-16T23:49:51.743911+0000 mon.a (mon.0) 102 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi033", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:49:52.254 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:51 smithi033 bash[22694]: audit 2024-09-16T23:49:51.751036+0000 mon.a (mon.0) 103 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:49:52.254 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:51 smithi033 bash[22694]: audit 2024-09-16T23:49:51.778976+0000 mon.a (mon.0) 104 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:49:52.254 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:51 smithi033 bash[22694]: audit 2024-09-16T23:49:51.785028+0000 mon.a (mon.0) 105 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:49:54.253 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:53 smithi033 bash[22694]: cluster 2024-09-16T23:49:52.536961+0000 mgr.a (mgr.14150) 10 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:49:56.253 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:55 smithi033 bash[22694]: cluster 2024-09-16T23:49:54.537422+0000 mgr.a (mgr.14150) 11 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:49:56.501 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:49:58.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:57 smithi033 bash[22694]: cluster 2024-09-16T23:49:56.537872+0000 mgr.a (mgr.14150) 12 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:49:58.709 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi089 2024-09-16T23:49:58.709 DEBUG:teuthology.orchestra.run.smithi089:> set -ex 2024-09-16T23:49:58.709 DEBUG:teuthology.orchestra.run.smithi089:> dd of=/etc/ceph/ceph.conf 2024-09-16T23:49:58.715 DEBUG:teuthology.orchestra.run.smithi089:> set -ex 2024-09-16T23:49:58.715 DEBUG:teuthology.orchestra.run.smithi089:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-16T23:49:58.763 INFO:tasks.cephadm:Adding host smithi089 to orchestrator... 2024-09-16T23:49:58.763 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph orch host add smithi089 2024-09-16T23:49:59.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:59 smithi033 bash[22694]: audit 2024-09-16T23:49:58.030601+0000 mgr.a (mgr.14150) 13 : audit [DBG] from='client.14172 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:49:59.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:59 smithi033 bash[22694]: audit 2024-09-16T23:49:58.035801+0000 mon.a (mon.0) 106 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:49:59.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:59 smithi033 bash[22694]: audit 2024-09-16T23:49:58.037006+0000 mon.a (mon.0) 107 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:49:59.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:59 smithi033 bash[22694]: audit 2024-09-16T23:49:58.039667+0000 mon.a (mon.0) 108 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:49:59.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:59 smithi033 bash[22694]: audit 2024-09-16T23:49:58.040615+0000 mon.a (mon.0) 109 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:49:59.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:59 smithi033 bash[22694]: cephadm 2024-09-16T23:49:58.041819+0000 mgr.a (mgr.14150) 14 : cephadm [INF] Updating smithi033:/etc/ceph/ceph.conf 2024-09-16T23:49:59.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:59 smithi033 bash[22694]: cephadm 2024-09-16T23:49:58.134127+0000 mgr.a (mgr.14150) 15 : cephadm [INF] Updating smithi033:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T23:49:59.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:59 smithi033 bash[22694]: cephadm 2024-09-16T23:49:58.219202+0000 mgr.a (mgr.14150) 16 : cephadm [INF] Updating smithi033:/etc/ceph/ceph.client.admin.keyring 2024-09-16T23:49:59.505 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:59 smithi033 bash[22694]: cephadm 2024-09-16T23:49:58.314134+0000 mgr.a (mgr.14150) 17 : cephadm [INF] Updating smithi033:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T23:49:59.505 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:59 smithi033 bash[22694]: audit 2024-09-16T23:49:58.429511+0000 mon.a (mon.0) 110 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:49:59.505 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:59 smithi033 bash[22694]: audit 2024-09-16T23:49:58.433614+0000 mon.a (mon.0) 111 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:49:59.505 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:49:59 smithi033 bash[22694]: audit 2024-09-16T23:49:58.437610+0000 mon.a (mon.0) 112 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:00.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:00 smithi033 bash[22694]: cluster 2024-09-16T23:49:58.538268+0000 mgr.a (mgr.14150) 18 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:02.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:02 smithi033 bash[22694]: cluster 2024-09-16T23:50:00.538748+0000 mgr.a (mgr.14150) 19 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:03.498 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:50:04.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:04 smithi033 bash[22694]: cluster 2024-09-16T23:50:02.539280+0000 mgr.a (mgr.14150) 20 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:06.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:06 smithi033 bash[22694]: cluster 2024-09-16T23:50:04.539819+0000 mgr.a (mgr.14150) 21 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:06.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:06 smithi033 bash[22694]: audit 2024-09-16T23:50:04.940756+0000 mgr.a (mgr.14150) 22 : audit [DBG] from='client.14174 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi089", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:50:07.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:07 smithi033 bash[22694]: cephadm 2024-09-16T23:50:06.220878+0000 mgr.a (mgr.14150) 23 : cephadm [INF] Deploying cephadm binary to smithi089 2024-09-16T23:50:08.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:08 smithi033 bash[22694]: cluster 2024-09-16T23:50:06.540233+0000 mgr.a (mgr.14150) 24 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:09.867 INFO:teuthology.orchestra.run.smithi033.stdout:Added host 'smithi089' with addr '172.21.15.89' 2024-09-16T23:50:10.496 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-16T23:50:10.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:10 smithi033 bash[22694]: cluster 2024-09-16T23:50:08.540601+0000 mgr.a (mgr.14150) 25 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:10.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:10 smithi033 bash[22694]: audit 2024-09-16T23:50:09.868523+0000 mon.a (mon.0) 113 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:10.754 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:10 smithi033 bash[22694]: audit 2024-09-16T23:50:09.870224+0000 mon.a (mon.0) 114 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:50:10.754 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:10 smithi033 bash[22694]: audit 2024-09-16T23:50:10.377922+0000 mon.a (mon.0) 115 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:11.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:11 smithi033 bash[22694]: cephadm 2024-09-16T23:50:09.869433+0000 mgr.a (mgr.14150) 26 : cephadm [INF] Added host smithi089 2024-09-16T23:50:12.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:12 smithi033 bash[22694]: cluster 2024-09-16T23:50:10.540921+0000 mgr.a (mgr.14150) 27 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:12.754 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:12 smithi033 bash[22694]: audit 2024-09-16T23:50:11.903292+0000 mon.a (mon.0) 116 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:14.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:14 smithi033 bash[22694]: cluster 2024-09-16T23:50:12.541317+0000 mgr.a (mgr.14150) 28 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:14.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:14 smithi033 bash[22694]: audit 2024-09-16T23:50:13.162784+0000 mon.a (mon.0) 117 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:15.232 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:50:16.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:16 smithi033 bash[22694]: cluster 2024-09-16T23:50:14.541744+0000 mgr.a (mgr.14150) 29 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:16.691 INFO:teuthology.orchestra.run.smithi033.stdout: 2024-09-16T23:50:16.692 INFO:teuthology.orchestra.run.smithi033.stdout:[{"addr": "172.21.15.33", "hostname": "smithi033", "labels": [], "status": ""}, {"addr": "172.21.15.89", "hostname": "smithi089", "labels": [], "status": ""}] 2024-09-16T23:50:17.359 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi103 2024-09-16T23:50:17.360 DEBUG:teuthology.orchestra.run.smithi103:> set -ex 2024-09-16T23:50:17.360 DEBUG:teuthology.orchestra.run.smithi103:> dd of=/etc/ceph/ceph.conf 2024-09-16T23:50:17.366 DEBUG:teuthology.orchestra.run.smithi103:> set -ex 2024-09-16T23:50:17.366 DEBUG:teuthology.orchestra.run.smithi103:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-16T23:50:17.413 INFO:tasks.cephadm:Adding host smithi103 to orchestrator... 2024-09-16T23:50:17.413 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph orch host add smithi103 2024-09-16T23:50:18.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:18 smithi033 bash[22694]: cluster 2024-09-16T23:50:16.542049+0000 mgr.a (mgr.14150) 30 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:18.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:18 smithi033 bash[22694]: audit 2024-09-16T23:50:16.693457+0000 mgr.a (mgr.14150) 31 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T23:50:20.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:19 smithi033 bash[22694]: audit 2024-09-16T23:50:18.513974+0000 mon.a (mon.0) 118 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:20.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:19 smithi033 bash[22694]: audit 2024-09-16T23:50:18.519474+0000 mon.a (mon.0) 119 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:20.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:19 smithi033 bash[22694]: audit 2024-09-16T23:50:18.525779+0000 mon.a (mon.0) 120 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:20.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:19 smithi033 bash[22694]: audit 2024-09-16T23:50:18.531152+0000 mon.a (mon.0) 121 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:20.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:19 smithi033 bash[22694]: audit 2024-09-16T23:50:18.532912+0000 mon.a (mon.0) 122 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi089", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:50:20.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:19 smithi033 bash[22694]: audit 2024-09-16T23:50:18.534847+0000 mon.a (mon.0) 123 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:50:20.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:19 smithi033 bash[22694]: audit 2024-09-16T23:50:18.536600+0000 mon.a (mon.0) 124 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:50:20.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:19 smithi033 bash[22694]: cephadm 2024-09-16T23:50:18.539008+0000 mgr.a (mgr.14150) 32 : cephadm [INF] Updating smithi089:/etc/ceph/ceph.conf 2024-09-16T23:50:20.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:19 smithi033 bash[22694]: cluster 2024-09-16T23:50:18.542453+0000 mgr.a (mgr.14150) 33 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:20.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:19 smithi033 bash[22694]: cephadm 2024-09-16T23:50:18.724152+0000 mgr.a (mgr.14150) 34 : cephadm [INF] Updating smithi089:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T23:50:20.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:19 smithi033 bash[22694]: cephadm 2024-09-16T23:50:18.882959+0000 mgr.a (mgr.14150) 35 : cephadm [INF] Updating smithi089:/etc/ceph/ceph.client.admin.keyring 2024-09-16T23:50:20.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:19 smithi033 bash[22694]: cephadm 2024-09-16T23:50:19.031563+0000 mgr.a (mgr.14150) 36 : cephadm [INF] Updating smithi089:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T23:50:20.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:19 smithi033 bash[22694]: audit 2024-09-16T23:50:19.181742+0000 mon.a (mon.0) 125 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:20.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:19 smithi033 bash[22694]: audit 2024-09-16T23:50:19.187223+0000 mon.a (mon.0) 126 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:20.005 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:19 smithi033 bash[22694]: audit 2024-09-16T23:50:19.193023+0000 mon.a (mon.0) 127 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:22.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:21 smithi033 bash[22694]: cluster 2024-09-16T23:50:20.542987+0000 mgr.a (mgr.14150) 37 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:22.151 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:50:24.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:23 smithi033 bash[22694]: cluster 2024-09-16T23:50:22.543481+0000 mgr.a (mgr.14150) 38 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:25.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:24 smithi033 bash[22694]: audit 2024-09-16T23:50:23.546689+0000 mgr.a (mgr.14150) 39 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi103", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:50:26.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:25 smithi033 bash[22694]: cluster 2024-09-16T23:50:24.543954+0000 mgr.a (mgr.14150) 40 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:26.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:25 smithi033 bash[22694]: cephadm 2024-09-16T23:50:24.864882+0000 mgr.a (mgr.14150) 41 : cephadm [INF] Deploying cephadm binary to smithi103 2024-09-16T23:50:28.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:27 smithi033 bash[22694]: cluster 2024-09-16T23:50:26.544389+0000 mgr.a (mgr.14150) 42 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:28.570 INFO:teuthology.orchestra.run.smithi033.stdout:Added host 'smithi103' with addr '172.21.15.103' 2024-09-16T23:50:29.266 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-16T23:50:30.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:29 smithi033 bash[22694]: cluster 2024-09-16T23:50:28.544729+0000 mgr.a (mgr.14150) 43 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:30.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:29 smithi033 bash[22694]: audit 2024-09-16T23:50:28.571532+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:30.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:29 smithi033 bash[22694]: cephadm 2024-09-16T23:50:28.572412+0000 mgr.a (mgr.14150) 44 : cephadm [INF] Added host smithi103 2024-09-16T23:50:30.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:29 smithi033 bash[22694]: audit 2024-09-16T23:50:28.573147+0000 mon.a (mon.0) 129 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:50:30.004 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:29 smithi033 bash[22694]: audit 2024-09-16T23:50:29.082464+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:32.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:31 smithi033 bash[22694]: cluster 2024-09-16T23:50:30.545181+0000 mgr.a (mgr.14150) 45 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:32.003 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:31 smithi033 bash[22694]: audit 2024-09-16T23:50:30.601575+0000 mon.a (mon.0) 131 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:33.253 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:32 smithi033 bash[22694]: audit 2024-09-16T23:50:31.832712+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:33.998 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:50:34.253 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:33 smithi033 bash[22694]: cluster 2024-09-16T23:50:32.545609+0000 mgr.a (mgr.14150) 46 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:35.347 INFO:teuthology.orchestra.run.smithi033.stdout: 2024-09-16T23:50:35.347 INFO:teuthology.orchestra.run.smithi033.stdout:[{"addr": "172.21.15.33", "hostname": "smithi033", "labels": [], "status": ""}, {"addr": "172.21.15.89", "hostname": "smithi089", "labels": [], "status": ""}, {"addr": "172.21.15.103", "hostname": "smithi103", "labels": [], "status": ""}] 2024-09-16T23:50:35.978 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-16T23:50:35.978 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph osd crush tunables default 2024-09-16T23:50:36.253 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:35 smithi033 bash[22694]: cluster 2024-09-16T23:50:34.546078+0000 mgr.a (mgr.14150) 47 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:36.253 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:35 smithi033 bash[22694]: audit 2024-09-16T23:50:35.349956+0000 mgr.a (mgr.14150) 48 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T23:50:38.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:38 smithi033 bash[22694]: cluster 2024-09-16T23:50:36.546509+0000 mgr.a (mgr.14150) 49 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:38.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:38 smithi033 bash[22694]: audit 2024-09-16T23:50:37.333894+0000 mon.a (mon.0) 133 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:38.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:38 smithi033 bash[22694]: audit 2024-09-16T23:50:37.339628+0000 mon.a (mon.0) 134 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:38.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:38 smithi033 bash[22694]: audit 2024-09-16T23:50:37.346319+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:38.754 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:38 smithi033 bash[22694]: audit 2024-09-16T23:50:37.352078+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:38.754 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:38 smithi033 bash[22694]: audit 2024-09-16T23:50:37.354063+0000 mon.a (mon.0) 137 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi103", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:50:38.754 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:38 smithi033 bash[22694]: audit 2024-09-16T23:50:37.356320+0000 mon.a (mon.0) 138 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:50:38.754 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:38 smithi033 bash[22694]: audit 2024-09-16T23:50:37.358029+0000 mon.a (mon.0) 139 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:50:38.754 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:38 smithi033 bash[22694]: cephadm 2024-09-16T23:50:37.360583+0000 mgr.a (mgr.14150) 50 : cephadm [INF] Updating smithi103:/etc/ceph/ceph.conf 2024-09-16T23:50:38.754 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:38 smithi033 bash[22694]: audit 2024-09-16T23:50:38.007234+0000 mon.a (mon.0) 140 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:38.754 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:38 smithi033 bash[22694]: audit 2024-09-16T23:50:38.012788+0000 mon.a (mon.0) 141 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:38.754 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:38 smithi033 bash[22694]: audit 2024-09-16T23:50:38.018791+0000 mon.a (mon.0) 142 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:39.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:39 smithi033 bash[22694]: cephadm 2024-09-16T23:50:37.546640+0000 mgr.a (mgr.14150) 51 : cephadm [INF] Updating smithi103:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T23:50:39.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:39 smithi033 bash[22694]: cephadm 2024-09-16T23:50:37.705311+0000 mgr.a (mgr.14150) 52 : cephadm [INF] Updating smithi103:/etc/ceph/ceph.client.admin.keyring 2024-09-16T23:50:39.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:39 smithi033 bash[22694]: cephadm 2024-09-16T23:50:37.856453+0000 mgr.a (mgr.14150) 53 : cephadm [INF] Updating smithi103:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T23:50:40.715 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:50:40.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:40 smithi033 bash[22694]: cluster 2024-09-16T23:50:38.546954+0000 mgr.a (mgr.14150) 54 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:42.337 INFO:teuthology.orchestra.run.smithi033.stderr:adjusted tunables profile to default 2024-09-16T23:50:42.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:42 smithi033 bash[22694]: cluster 2024-09-16T23:50:40.547376+0000 mgr.a (mgr.14150) 55 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:42.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:42 smithi033 bash[22694]: audit 2024-09-16T23:50:42.148489+0000 mon.a (mon.0) 143 : audit [INF] from='client.? 172.21.15.33:0/1191443546' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-16T23:50:43.037 INFO:tasks.cephadm:Adding mon.a on smithi033 2024-09-16T23:50:43.037 INFO:tasks.cephadm:Adding mon.b on smithi089 2024-09-16T23:50:43.037 INFO:tasks.cephadm:Adding mon.c on smithi103 2024-09-16T23:50:43.037 DEBUG:teuthology.orchestra.run.smithi103:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph orch apply mon '3;smithi033:172.21.15.33=a;smithi089:172.21.15.89=b;smithi103:172.21.15.103=c' 2024-09-16T23:50:43.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:43 smithi033 bash[22694]: audit 2024-09-16T23:50:42.340325+0000 mon.a (mon.0) 144 : audit [INF] from='client.? 172.21.15.33:0/1191443546' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-16T23:50:43.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:43 smithi033 bash[22694]: cluster 2024-09-16T23:50:42.344619+0000 mon.a (mon.0) 145 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T23:50:44.269 INFO:teuthology.orchestra.run.smithi103.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T23:50:44.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:44 smithi033 bash[22694]: cluster 2024-09-16T23:50:42.547732+0000 mgr.a (mgr.14150) 56 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:45.648 INFO:teuthology.orchestra.run.smithi103.stdout:Scheduled mon update... 2024-09-16T23:50:46.197 DEBUG:teuthology.orchestra.run.smithi089:mon.b> sudo journalctl -f -n 0 -u ceph-f4fb0768-7485-11ef-bceb-c7b262605968@mon.b.service 2024-09-16T23:50:46.200 DEBUG:teuthology.orchestra.run.smithi103:mon.c> sudo journalctl -f -n 0 -u ceph-f4fb0768-7485-11ef-bceb-c7b262605968@mon.c.service 2024-09-16T23:50:46.202 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-16T23:50:46.202 DEBUG:teuthology.orchestra.run.smithi103:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-16T23:50:46.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:46 smithi033 bash[22694]: cluster 2024-09-16T23:50:44.548177+0000 mgr.a (mgr.14150) 57 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:46.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:46 smithi033 bash[22694]: audit 2024-09-16T23:50:45.650575+0000 mon.a (mon.0) 146 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:46.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:46 smithi033 bash[22694]: audit 2024-09-16T23:50:45.652234+0000 mon.a (mon.0) 147 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:50:47.462 INFO:teuthology.orchestra.run.smithi103.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T23:50:47.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:47 smithi033 bash[22694]: audit 2024-09-16T23:50:45.639828+0000 mgr.a (mgr.14150) 58 : audit [DBG] from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi033:172.21.15.33=a;smithi089:172.21.15.89=b;smithi103:172.21.15.103=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:50:47.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:47 smithi033 bash[22694]: cephadm 2024-09-16T23:50:45.644979+0000 mgr.a (mgr.14150) 59 : cephadm [INF] Saving service mon spec with placement smithi033:172.21.15.33=a;smithi089:172.21.15.89=b;smithi103:172.21.15.103=c;count:3 2024-09-16T23:50:47.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:47 smithi033 bash[22694]: audit 2024-09-16T23:50:46.358460+0000 mon.a (mon.0) 148 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:50:47.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:47 smithi033 bash[22694]: audit 2024-09-16T23:50:46.360156+0000 mon.a (mon.0) 149 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:50:47.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:47 smithi033 bash[22694]: audit 2024-09-16T23:50:46.368027+0000 mon.a (mon.0) 150 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:47.754 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:47 smithi033 bash[22694]: audit 2024-09-16T23:50:46.371526+0000 mon.a (mon.0) 151 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T23:50:47.754 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:47 smithi033 bash[22694]: audit 2024-09-16T23:50:46.373033+0000 mon.a (mon.0) 152 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:50:47.754 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:47 smithi033 bash[22694]: cephadm 2024-09-16T23:50:46.374579+0000 mgr.a (mgr.14150) 60 : cephadm [INF] Deploying daemon mon.c on smithi103 2024-09-16T23:50:48.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:48 smithi033 bash[22694]: cluster 2024-09-16T23:50:46.548600+0000 mgr.a (mgr.14150) 61 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:49.282 INFO:teuthology.orchestra.run.smithi103.stdout: 2024-09-16T23:50:49.283 INFO:teuthology.orchestra.run.smithi103.stdout:{"epoch":1,"fsid":"f4fb0768-7485-11ef-bceb-c7b262605968","modified":"2024-09-16T23:48:24.081012Z","created":"2024-09-16T23:48:24.081012Z","min_mon_release":19,"min_mon_release_name":"squid","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","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.33:3300","nonce":0},{"type":"v1","addr":"172.21.15.33:6789","nonce":0}]},"addr":"172.21.15.33:6789/0","public_addr":"172.21.15.33:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-16T23:50:49.283 INFO:teuthology.orchestra.run.smithi103.stderr:dumped monmap epoch 1 2024-09-16T23:50:49.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:49 smithi033 bash[22694]: audit 2024-09-16T23:50:49.285736+0000 mon.a (mon.0) 153 : audit [DBG] from='client.? 172.21.15.103:0/1406526633' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-16T23:50:50.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:50 smithi033 bash[22694]: cluster 2024-09-16T23:50:48.549064+0000 mgr.a (mgr.14150) 62 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:51.064 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-16T23:50:51.065 DEBUG:teuthology.orchestra.run.smithi103:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-16T23:50:52.288 INFO:teuthology.orchestra.run.smithi103.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.c/config 2024-09-16T23:50:52.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:52 smithi033 bash[22694]: cluster 2024-09-16T23:50:50.549507+0000 mgr.a (mgr.14150) 63 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:52.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:52 smithi033 bash[22694]: audit 2024-09-16T23:50:52.136532+0000 mon.a (mon.0) 154 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:52.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:52 smithi033 bash[22694]: audit 2024-09-16T23:50:52.144248+0000 mon.a (mon.0) 155 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:52.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:52 smithi033 bash[22694]: audit 2024-09-16T23:50:52.150144+0000 mon.a (mon.0) 156 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:52.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:52 smithi033 bash[22694]: audit 2024-09-16T23:50:52.151546+0000 mon.a (mon.0) 157 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T23:50:52.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:52 smithi033 bash[22694]: audit 2024-09-16T23:50:52.153462+0000 mon.a (mon.0) 158 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:50:53.753 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:53 smithi033 bash[22694]: cephadm 2024-09-16T23:50:52.155585+0000 mgr.a (mgr.14150) 64 : cephadm [INF] Deploying daemon mon.b on smithi089 2024-09-16T23:50:53.811 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: debug 2024-09-16T23:50:53.811+0000 7f19d7974640 0 mon.c@-1(synchronizing).mds e1 print_map 2024-09-16T23:50:53.811 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: e1 2024-09-16T23:50:53.811 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: btime 2024-09-16T23:48:29:029944+0000 2024-09-16T23:50:53.811 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-16T23:50:53.996 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: 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,11=minor log segments,12=quiesce subvolumes} 2024-09-16T23:50:53.996 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: legacy client fscid: -1 2024-09-16T23:50:53.996 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: 2024-09-16T23:50:53.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: No filesystems configured 2024-09-16T23:50:53.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: debug 2024-09-16T23:50:53.811+0000 7f19d7974640 1 mon.c@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-09-16T23:50:53.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: debug 2024-09-16T23:50:53.811+0000 7f19d7974640 1 mon.c@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-09-16T23:50:53.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: debug 2024-09-16T23:50:53.811+0000 7f19d7974640 1 mon.c@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-09-16T23:50:53.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: debug 2024-09-16T23:50:53.811+0000 7f19d7974640 1 mon.c@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-09-16T23:50:53.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: debug 2024-09-16T23:50:53.811+0000 7f19d7974640 1 mon.c@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-09-16T23:50:53.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: debug 2024-09-16T23:50:53.811+0000 7f19d7974640 1 mon.c@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-09-16T23:50:53.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: debug 2024-09-16T23:50:53.811+0000 7f19d7974640 0 mon.c@-1(synchronizing).osd e4 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-16T23:50:53.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: debug 2024-09-16T23:50:53.811+0000 7f19d7974640 0 mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-16T23:50:53.998 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: debug 2024-09-16T23:50:53.811+0000 7f19d7974640 0 mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-16T23:50:53.998 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: debug 2024-09-16T23:50:53.811+0000 7f19d7974640 0 mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-16T23:50:53.998 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:49:58.030601+0000 mgr.a (mgr.14150) 13 : audit [DBG] from='client.14172 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:50:53.998 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:49:58.035801+0000 mon.a (mon.0) 106 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:53.998 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:49:58.037006+0000 mon.a (mon.0) 107 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:50:53.998 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:49:58.039667+0000 mon.a (mon.0) 108 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:50:53.998 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:49:58.040615+0000 mon.a (mon.0) 109 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:50:53.998 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cephadm 2024-09-16T23:49:58.041819+0000 mgr.a (mgr.14150) 14 : cephadm [INF] Updating smithi033:/etc/ceph/ceph.conf 2024-09-16T23:50:53.998 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cephadm 2024-09-16T23:49:58.134127+0000 mgr.a (mgr.14150) 15 : cephadm [INF] Updating smithi033:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T23:50:53.998 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cephadm 2024-09-16T23:49:58.219202+0000 mgr.a (mgr.14150) 16 : cephadm [INF] Updating smithi033:/etc/ceph/ceph.client.admin.keyring 2024-09-16T23:50:53.999 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cephadm 2024-09-16T23:49:58.314134+0000 mgr.a (mgr.14150) 17 : cephadm [INF] Updating smithi033:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T23:50:53.999 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:49:58.429511+0000 mon.a (mon.0) 110 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:53.999 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:49:58.433614+0000 mon.a (mon.0) 111 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:53.999 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:49:58.437610+0000 mon.a (mon.0) 112 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:53.999 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:49:58.538268+0000 mgr.a (mgr.14150) 18 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.000 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:00.538748+0000 mgr.a (mgr.14150) 19 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.000 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:02.539280+0000 mgr.a (mgr.14150) 20 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.000 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:04.539819+0000 mgr.a (mgr.14150) 21 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.000 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:04.940756+0000 mgr.a (mgr.14150) 22 : audit [DBG] from='client.14174 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi089", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:50:54.000 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cephadm 2024-09-16T23:50:06.220878+0000 mgr.a (mgr.14150) 23 : cephadm [INF] Deploying cephadm binary to smithi089 2024-09-16T23:50:54.000 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:06.540233+0000 mgr.a (mgr.14150) 24 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.000 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:08.540601+0000 mgr.a (mgr.14150) 25 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.000 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:09.868523+0000 mon.a (mon.0) 113 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.000 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:09.870224+0000 mon.a (mon.0) 114 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:50:54.000 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:10.377922+0000 mon.a (mon.0) 115 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.000 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cephadm 2024-09-16T23:50:09.869433+0000 mgr.a (mgr.14150) 26 : cephadm [INF] Added host smithi089 2024-09-16T23:50:54.001 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:10.540921+0000 mgr.a (mgr.14150) 27 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.001 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:11.903292+0000 mon.a (mon.0) 116 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.001 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:12.541317+0000 mgr.a (mgr.14150) 28 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.001 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:13.162784+0000 mon.a (mon.0) 117 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.001 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:14.541744+0000 mgr.a (mgr.14150) 29 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.001 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:16.542049+0000 mgr.a (mgr.14150) 30 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.001 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:16.693457+0000 mgr.a (mgr.14150) 31 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T23:50:54.001 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:18.513974+0000 mon.a (mon.0) 118 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.001 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:18.519474+0000 mon.a (mon.0) 119 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.001 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:18.525779+0000 mon.a (mon.0) 120 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.002 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:18.531152+0000 mon.a (mon.0) 121 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.002 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:18.532912+0000 mon.a (mon.0) 122 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi089", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:50:54.002 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:18.534847+0000 mon.a (mon.0) 123 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:50:54.002 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:18.536600+0000 mon.a (mon.0) 124 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:50:54.002 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cephadm 2024-09-16T23:50:18.539008+0000 mgr.a (mgr.14150) 32 : cephadm [INF] Updating smithi089:/etc/ceph/ceph.conf 2024-09-16T23:50:54.002 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:18.542453+0000 mgr.a (mgr.14150) 33 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.002 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cephadm 2024-09-16T23:50:18.724152+0000 mgr.a (mgr.14150) 34 : cephadm [INF] Updating smithi089:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T23:50:54.002 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cephadm 2024-09-16T23:50:18.882959+0000 mgr.a (mgr.14150) 35 : cephadm [INF] Updating smithi089:/etc/ceph/ceph.client.admin.keyring 2024-09-16T23:50:54.002 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cephadm 2024-09-16T23:50:19.031563+0000 mgr.a (mgr.14150) 36 : cephadm [INF] Updating smithi089:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T23:50:54.002 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:19.181742+0000 mon.a (mon.0) 125 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.002 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:19.187223+0000 mon.a (mon.0) 126 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.002 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:19.193023+0000 mon.a (mon.0) 127 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.002 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:20.542987+0000 mgr.a (mgr.14150) 37 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.002 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:22.543481+0000 mgr.a (mgr.14150) 38 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.002 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:23.546689+0000 mgr.a (mgr.14150) 39 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi103", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:50:54.003 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:24.543954+0000 mgr.a (mgr.14150) 40 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.003 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cephadm 2024-09-16T23:50:24.864882+0000 mgr.a (mgr.14150) 41 : cephadm [INF] Deploying cephadm binary to smithi103 2024-09-16T23:50:54.003 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:26.544389+0000 mgr.a (mgr.14150) 42 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.003 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:28.544729+0000 mgr.a (mgr.14150) 43 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.003 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:28.571532+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.003 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cephadm 2024-09-16T23:50:28.572412+0000 mgr.a (mgr.14150) 44 : cephadm [INF] Added host smithi103 2024-09-16T23:50:54.003 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:28.573147+0000 mon.a (mon.0) 129 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:50:54.003 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:29.082464+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.003 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:30.545181+0000 mgr.a (mgr.14150) 45 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.003 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:30.601575+0000 mon.a (mon.0) 131 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.004 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:31.832712+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.004 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:32.545609+0000 mgr.a (mgr.14150) 46 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.004 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:34.546078+0000 mgr.a (mgr.14150) 47 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.004 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:35.349956+0000 mgr.a (mgr.14150) 48 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T23:50:54.004 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:36.546509+0000 mgr.a (mgr.14150) 49 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.004 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:37.333894+0000 mon.a (mon.0) 133 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.004 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:37.339628+0000 mon.a (mon.0) 134 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.004 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:37.346319+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.004 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:37.352078+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.004 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:37.354063+0000 mon.a (mon.0) 137 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi103", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:50:54.004 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:37.356320+0000 mon.a (mon.0) 138 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:50:54.004 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:37.358029+0000 mon.a (mon.0) 139 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:50:54.004 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cephadm 2024-09-16T23:50:37.360583+0000 mgr.a (mgr.14150) 50 : cephadm [INF] Updating smithi103:/etc/ceph/ceph.conf 2024-09-16T23:50:54.004 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:38.007234+0000 mon.a (mon.0) 140 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.005 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:38.012788+0000 mon.a (mon.0) 141 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.005 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:38.018791+0000 mon.a (mon.0) 142 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.005 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cephadm 2024-09-16T23:50:37.546640+0000 mgr.a (mgr.14150) 51 : cephadm [INF] Updating smithi103:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T23:50:54.005 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cephadm 2024-09-16T23:50:37.705311+0000 mgr.a (mgr.14150) 52 : cephadm [INF] Updating smithi103:/etc/ceph/ceph.client.admin.keyring 2024-09-16T23:50:54.005 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cephadm 2024-09-16T23:50:37.856453+0000 mgr.a (mgr.14150) 53 : cephadm [INF] Updating smithi103:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T23:50:54.005 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:38.546954+0000 mgr.a (mgr.14150) 54 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.005 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:40.547376+0000 mgr.a (mgr.14150) 55 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.005 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:42.148489+0000 mon.a (mon.0) 143 : audit [INF] from='client.? 172.21.15.33:0/1191443546' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-16T23:50:54.005 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:42.340325+0000 mon.a (mon.0) 144 : audit [INF] from='client.? 172.21.15.33:0/1191443546' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-16T23:50:54.005 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:42.344619+0000 mon.a (mon.0) 145 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T23:50:54.005 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:42.547732+0000 mgr.a (mgr.14150) 56 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.005 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:44.548177+0000 mgr.a (mgr.14150) 57 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.005 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:45.650575+0000 mon.a (mon.0) 146 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.006 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:45.652234+0000 mon.a (mon.0) 147 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:50:54.006 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:45.639828+0000 mgr.a (mgr.14150) 58 : audit [DBG] from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi033:172.21.15.33=a;smithi089:172.21.15.89=b;smithi103:172.21.15.103=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:50:54.006 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cephadm 2024-09-16T23:50:45.644979+0000 mgr.a (mgr.14150) 59 : cephadm [INF] Saving service mon spec with placement smithi033:172.21.15.33=a;smithi089:172.21.15.89=b;smithi103:172.21.15.103=c;count:3 2024-09-16T23:50:54.006 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:46.358460+0000 mon.a (mon.0) 148 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:50:54.006 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:46.360156+0000 mon.a (mon.0) 149 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:50:54.006 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:46.368027+0000 mon.a (mon.0) 150 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.006 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:46.371526+0000 mon.a (mon.0) 151 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T23:50:54.006 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:46.373033+0000 mon.a (mon.0) 152 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:50:54.006 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cephadm 2024-09-16T23:50:46.374579+0000 mgr.a (mgr.14150) 60 : cephadm [INF] Deploying daemon mon.c on smithi103 2024-09-16T23:50:54.006 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:46.548600+0000 mgr.a (mgr.14150) 61 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.006 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:49.285736+0000 mon.a (mon.0) 153 : audit [DBG] from='client.? 172.21.15.103:0/1406526633' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-16T23:50:54.006 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:48.549064+0000 mgr.a (mgr.14150) 62 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.006 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cluster 2024-09-16T23:50:50.549507+0000 mgr.a (mgr.14150) 63 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:54.007 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:52.136532+0000 mon.a (mon.0) 154 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.007 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:52.144248+0000 mon.a (mon.0) 155 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.007 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:52.150144+0000 mon.a (mon.0) 156 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:54.007 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:52.151546+0000 mon.a (mon.0) 157 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T23:50:54.007 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: audit 2024-09-16T23:50:52.153462+0000 mon.a (mon.0) 158 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:50:54.007 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: cephadm 2024-09-16T23:50:52.155585+0000 mgr.a (mgr.14150) 64 : cephadm [INF] Deploying daemon mon.b on smithi089 2024-09-16T23:50:54.007 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:53 smithi103 bash[24637]: debug 2024-09-16T23:50:53.811+0000 7f19d7974640 1 mon.c@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2024-09-16T23:50:58.021 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:09.868523+0000 mon.a (mon.0) 113 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.021 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:09.870224+0000 mon.a (mon.0) 114 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:50:58.021 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:10.377922+0000 mon.a (mon.0) 115 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.021 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cephadm 2024-09-16T23:50:09.869433+0000 mgr.a (mgr.14150) 26 : cephadm [INF] Added host smithi089 2024-09-16T23:50:58.021 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cluster 2024-09-16T23:50:10.540921+0000 mgr.a (mgr.14150) 27 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:58.022 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:11.903292+0000 mon.a (mon.0) 116 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.022 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cluster 2024-09-16T23:50:12.541317+0000 mgr.a (mgr.14150) 28 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:58.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:13.162784+0000 mon.a (mon.0) 117 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cluster 2024-09-16T23:50:14.541744+0000 mgr.a (mgr.14150) 29 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:58.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cluster 2024-09-16T23:50:16.542049+0000 mgr.a (mgr.14150) 30 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:58.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:16.693457+0000 mgr.a (mgr.14150) 31 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T23:50:58.261 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:18.513974+0000 mon.a (mon.0) 118 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.261 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:18.519474+0000 mon.a (mon.0) 119 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.261 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:18.525779+0000 mon.a (mon.0) 120 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.261 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:18.531152+0000 mon.a (mon.0) 121 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.261 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:18.532912+0000 mon.a (mon.0) 122 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi089", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:50:58.261 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:18.534847+0000 mon.a (mon.0) 123 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:50:58.261 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:18.536600+0000 mon.a (mon.0) 124 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:50:58.261 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cephadm 2024-09-16T23:50:18.539008+0000 mgr.a (mgr.14150) 32 : cephadm [INF] Updating smithi089:/etc/ceph/ceph.conf 2024-09-16T23:50:58.261 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cluster 2024-09-16T23:50:18.542453+0000 mgr.a (mgr.14150) 33 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:58.261 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cephadm 2024-09-16T23:50:18.724152+0000 mgr.a (mgr.14150) 34 : cephadm [INF] Updating smithi089:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T23:50:58.261 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cephadm 2024-09-16T23:50:18.882959+0000 mgr.a (mgr.14150) 35 : cephadm [INF] Updating smithi089:/etc/ceph/ceph.client.admin.keyring 2024-09-16T23:50:58.262 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cephadm 2024-09-16T23:50:19.031563+0000 mgr.a (mgr.14150) 36 : cephadm [INF] Updating smithi089:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T23:50:58.262 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:19.181742+0000 mon.a (mon.0) 125 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.262 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:19.187223+0000 mon.a (mon.0) 126 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.262 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:19.193023+0000 mon.a (mon.0) 127 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.262 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cluster 2024-09-16T23:50:20.542987+0000 mgr.a (mgr.14150) 37 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:58.262 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cluster 2024-09-16T23:50:22.543481+0000 mgr.a (mgr.14150) 38 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:58.263 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:23.546689+0000 mgr.a (mgr.14150) 39 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi103", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:50:58.263 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cluster 2024-09-16T23:50:24.543954+0000 mgr.a (mgr.14150) 40 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:58.263 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cephadm 2024-09-16T23:50:24.864882+0000 mgr.a (mgr.14150) 41 : cephadm [INF] Deploying cephadm binary to smithi103 2024-09-16T23:50:58.263 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cluster 2024-09-16T23:50:26.544389+0000 mgr.a (mgr.14150) 42 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:58.263 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cluster 2024-09-16T23:50:28.544729+0000 mgr.a (mgr.14150) 43 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:58.263 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:28.571532+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.263 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cephadm 2024-09-16T23:50:28.572412+0000 mgr.a (mgr.14150) 44 : cephadm [INF] Added host smithi103 2024-09-16T23:50:58.263 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:28.573147+0000 mon.a (mon.0) 129 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:50:58.263 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:29.082464+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.263 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cluster 2024-09-16T23:50:30.545181+0000 mgr.a (mgr.14150) 45 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:58.263 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:30.601575+0000 mon.a (mon.0) 131 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.263 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:31.832712+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.264 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cluster 2024-09-16T23:50:32.545609+0000 mgr.a (mgr.14150) 46 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:58.264 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cluster 2024-09-16T23:50:34.546078+0000 mgr.a (mgr.14150) 47 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:58.264 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:35.349956+0000 mgr.a (mgr.14150) 48 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T23:50:58.264 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cluster 2024-09-16T23:50:36.546509+0000 mgr.a (mgr.14150) 49 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:58.264 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:37.333894+0000 mon.a (mon.0) 133 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.264 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:37.339628+0000 mon.a (mon.0) 134 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.264 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:37.346319+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.264 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:37.352078+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.264 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:37.354063+0000 mon.a (mon.0) 137 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi103", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:50:58.264 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:37.356320+0000 mon.a (mon.0) 138 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:50:58.264 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:37.358029+0000 mon.a (mon.0) 139 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:50:58.264 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cephadm 2024-09-16T23:50:37.360583+0000 mgr.a (mgr.14150) 50 : cephadm [INF] Updating smithi103:/etc/ceph/ceph.conf 2024-09-16T23:50:58.264 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:38.007234+0000 mon.a (mon.0) 140 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.265 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:38.012788+0000 mon.a (mon.0) 141 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.265 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:38.018791+0000 mon.a (mon.0) 142 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.265 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cephadm 2024-09-16T23:50:37.546640+0000 mgr.a (mgr.14150) 51 : cephadm [INF] Updating smithi103:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T23:50:58.265 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cephadm 2024-09-16T23:50:37.705311+0000 mgr.a (mgr.14150) 52 : cephadm [INF] Updating smithi103:/etc/ceph/ceph.client.admin.keyring 2024-09-16T23:50:58.265 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cephadm 2024-09-16T23:50:37.856453+0000 mgr.a (mgr.14150) 53 : cephadm [INF] Updating smithi103:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T23:50:58.265 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cluster 2024-09-16T23:50:38.546954+0000 mgr.a (mgr.14150) 54 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:58.265 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cluster 2024-09-16T23:50:40.547376+0000 mgr.a (mgr.14150) 55 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:58.265 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:42.148489+0000 mon.a (mon.0) 143 : audit [INF] from='client.? 172.21.15.33:0/1191443546' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-16T23:50:58.265 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:42.340325+0000 mon.a (mon.0) 144 : audit [INF] from='client.? 172.21.15.33:0/1191443546' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-16T23:50:58.265 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cluster 2024-09-16T23:50:42.344619+0000 mon.a (mon.0) 145 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T23:50:58.265 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cluster 2024-09-16T23:50:42.547732+0000 mgr.a (mgr.14150) 56 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:58.266 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cluster 2024-09-16T23:50:44.548177+0000 mgr.a (mgr.14150) 57 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:58.266 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:45.650575+0000 mon.a (mon.0) 146 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.266 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:45.652234+0000 mon.a (mon.0) 147 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:50:58.266 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:45.639828+0000 mgr.a (mgr.14150) 58 : audit [DBG] from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi033:172.21.15.33=a;smithi089:172.21.15.89=b;smithi103:172.21.15.103=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:50:58.266 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cephadm 2024-09-16T23:50:45.644979+0000 mgr.a (mgr.14150) 59 : cephadm [INF] Saving service mon spec with placement smithi033:172.21.15.33=a;smithi089:172.21.15.89=b;smithi103:172.21.15.103=c;count:3 2024-09-16T23:50:58.266 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:46.358460+0000 mon.a (mon.0) 148 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:50:58.266 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:46.360156+0000 mon.a (mon.0) 149 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:50:58.266 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:46.368027+0000 mon.a (mon.0) 150 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.266 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:46.371526+0000 mon.a (mon.0) 151 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T23:50:58.266 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:46.373033+0000 mon.a (mon.0) 152 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:50:58.266 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cephadm 2024-09-16T23:50:46.374579+0000 mgr.a (mgr.14150) 60 : cephadm [INF] Deploying daemon mon.c on smithi103 2024-09-16T23:50:58.266 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cluster 2024-09-16T23:50:46.548600+0000 mgr.a (mgr.14150) 61 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:58.267 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:49.285736+0000 mon.a (mon.0) 153 : audit [DBG] from='client.? 172.21.15.103:0/1406526633' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-16T23:50:58.267 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cluster 2024-09-16T23:50:48.549064+0000 mgr.a (mgr.14150) 62 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:58.267 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cluster 2024-09-16T23:50:50.549507+0000 mgr.a (mgr.14150) 63 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:58.267 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:52.136532+0000 mon.a (mon.0) 154 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.267 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:52.144248+0000 mon.a (mon.0) 155 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.267 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:52.150144+0000 mon.a (mon.0) 156 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:58.267 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:52.151546+0000 mon.a (mon.0) 157 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T23:50:58.267 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: audit 2024-09-16T23:50:52.153462+0000 mon.a (mon.0) 158 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:50:58.267 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: cephadm 2024-09-16T23:50:52.155585+0000 mgr.a (mgr.14150) 64 : cephadm [INF] Deploying daemon mon.b on smithi089 2024-09-16T23:50:58.267 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:50:58 smithi089 bash[24318]: debug 2024-09-16T23:50:58.018+0000 7f20fd4ed640 1 mon.b@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2024-09-16T23:50:59.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: audit 2024-09-16T23:50:53.826271+0000 mon.a (mon.0) 160 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T23:50:59.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: cluster 2024-09-16T23:50:53.826704+0000 mon.a (mon.0) 161 : cluster [INF] mon.a calling monitor election 2024-09-16T23:50:59.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: audit 2024-09-16T23:50:53.845541+0000 mon.a (mon.0) 162 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:50:59.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: cluster 2024-09-16T23:50:54.550477+0000 mgr.a (mgr.14150) 66 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:59.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: audit 2024-09-16T23:50:54.821023+0000 mon.a (mon.0) 163 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:50:59.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: audit 2024-09-16T23:50:55.821470+0000 mon.a (mon.0) 164 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:50:59.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: cluster 2024-09-16T23:50:55.824668+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-16T23:50:59.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: cluster 2024-09-16T23:50:56.550936+0000 mgr.a (mgr.14150) 67 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:59.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: audit 2024-09-16T23:50:56.821440+0000 mon.a (mon.0) 165 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:50:59.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: audit 2024-09-16T23:50:57.821611+0000 mon.a (mon.0) 166 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:50:59.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: audit 2024-09-16T23:50:58.028627+0000 mon.a (mon.0) 167 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:50:59.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: audit 2024-09-16T23:50:58.821627+0000 mon.a (mon.0) 168 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:50:59.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: cluster 2024-09-16T23:50:58.867225+0000 mon.a (mon.0) 169 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-16T23:50:59.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: cluster 2024-09-16T23:50:58.873199+0000 mon.a (mon.0) 170 : cluster [DBG] monmap epoch 2 2024-09-16T23:50:59.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: cluster 2024-09-16T23:50:58.873233+0000 mon.a (mon.0) 171 : cluster [DBG] fsid f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:50:59.248 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: cluster 2024-09-16T23:50:58.873252+0000 mon.a (mon.0) 172 : cluster [DBG] last_changed 2024-09-16T23:50:53.820411+0000 2024-09-16T23:50:59.248 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: cluster 2024-09-16T23:50:58.873267+0000 mon.a (mon.0) 173 : cluster [DBG] created 2024-09-16T23:48:24.081012+0000 2024-09-16T23:50:59.248 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: cluster 2024-09-16T23:50:58.873282+0000 mon.a (mon.0) 174 : cluster [DBG] min_mon_release 19 (squid) 2024-09-16T23:50:59.248 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: cluster 2024-09-16T23:50:58.873302+0000 mon.a (mon.0) 175 : cluster [DBG] election_strategy: 1 2024-09-16T23:50:59.248 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: cluster 2024-09-16T23:50:58.873325+0000 mon.a (mon.0) 176 : cluster [DBG] 0: [v2:172.21.15.33:3300/0,v1:172.21.15.33:6789/0] mon.a 2024-09-16T23:50:59.248 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: cluster 2024-09-16T23:50:58.873349+0000 mon.a (mon.0) 177 : cluster [DBG] 1: [v2:172.21.15.103:3300/0,v1:172.21.15.103:6789/0] mon.c 2024-09-16T23:50:59.248 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: cluster 2024-09-16T23:50:58.893233+0000 mon.a (mon.0) 178 : cluster [DBG] fsmap 2024-09-16T23:50:59.248 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: cluster 2024-09-16T23:50:58.893283+0000 mon.a (mon.0) 179 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T23:50:59.248 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: cluster 2024-09-16T23:50:58.893548+0000 mon.a (mon.0) 180 : cluster [DBG] mgrmap e13: a(active, since 86s) 2024-09-16T23:50:59.248 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: cluster 2024-09-16T23:50:58.893788+0000 mon.a (mon.0) 181 : cluster [INF] overall HEALTH_OK 2024-09-16T23:50:59.248 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: audit 2024-09-16T23:50:58.900305+0000 mon.a (mon.0) 182 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:59.248 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: audit 2024-09-16T23:50:58.906962+0000 mon.a (mon.0) 183 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:59.248 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: audit 2024-09-16T23:50:58.914666+0000 mon.a (mon.0) 184 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:59.249 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:58 smithi103 bash[24637]: audit 2024-09-16T23:50:58.921653+0000 mon.a (mon.0) 185 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:59.253 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: audit 2024-09-16T23:50:53.826271+0000 mon.a (mon.0) 160 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T23:50:59.253 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: cluster 2024-09-16T23:50:53.826704+0000 mon.a (mon.0) 161 : cluster [INF] mon.a calling monitor election 2024-09-16T23:50:59.253 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: audit 2024-09-16T23:50:53.845541+0000 mon.a (mon.0) 162 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:50:59.253 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: cluster 2024-09-16T23:50:54.550477+0000 mgr.a (mgr.14150) 66 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:59.254 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: audit 2024-09-16T23:50:54.821023+0000 mon.a (mon.0) 163 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:50:59.254 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: audit 2024-09-16T23:50:55.821470+0000 mon.a (mon.0) 164 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:50:59.254 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: cluster 2024-09-16T23:50:55.824668+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-16T23:50:59.254 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: cluster 2024-09-16T23:50:56.550936+0000 mgr.a (mgr.14150) 67 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:50:59.254 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: audit 2024-09-16T23:50:56.821440+0000 mon.a (mon.0) 165 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:50:59.254 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: audit 2024-09-16T23:50:57.821611+0000 mon.a (mon.0) 166 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:50:59.254 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: audit 2024-09-16T23:50:58.028627+0000 mon.a (mon.0) 167 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:50:59.254 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: audit 2024-09-16T23:50:58.821627+0000 mon.a (mon.0) 168 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:50:59.254 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: cluster 2024-09-16T23:50:58.867225+0000 mon.a (mon.0) 169 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-16T23:50:59.254 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: cluster 2024-09-16T23:50:58.873199+0000 mon.a (mon.0) 170 : cluster [DBG] monmap epoch 2 2024-09-16T23:50:59.254 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: cluster 2024-09-16T23:50:58.873233+0000 mon.a (mon.0) 171 : cluster [DBG] fsid f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:50:59.254 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: cluster 2024-09-16T23:50:58.873252+0000 mon.a (mon.0) 172 : cluster [DBG] last_changed 2024-09-16T23:50:53.820411+0000 2024-09-16T23:50:59.254 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: cluster 2024-09-16T23:50:58.873267+0000 mon.a (mon.0) 173 : cluster [DBG] created 2024-09-16T23:48:24.081012+0000 2024-09-16T23:50:59.255 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: cluster 2024-09-16T23:50:58.873282+0000 mon.a (mon.0) 174 : cluster [DBG] min_mon_release 19 (squid) 2024-09-16T23:50:59.255 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: cluster 2024-09-16T23:50:58.873302+0000 mon.a (mon.0) 175 : cluster [DBG] election_strategy: 1 2024-09-16T23:50:59.255 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: cluster 2024-09-16T23:50:58.873325+0000 mon.a (mon.0) 176 : cluster [DBG] 0: [v2:172.21.15.33:3300/0,v1:172.21.15.33:6789/0] mon.a 2024-09-16T23:50:59.255 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: cluster 2024-09-16T23:50:58.873349+0000 mon.a (mon.0) 177 : cluster [DBG] 1: [v2:172.21.15.103:3300/0,v1:172.21.15.103:6789/0] mon.c 2024-09-16T23:50:59.255 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: cluster 2024-09-16T23:50:58.893233+0000 mon.a (mon.0) 178 : cluster [DBG] fsmap 2024-09-16T23:50:59.255 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: cluster 2024-09-16T23:50:58.893283+0000 mon.a (mon.0) 179 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T23:50:59.255 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: cluster 2024-09-16T23:50:58.893548+0000 mon.a (mon.0) 180 : cluster [DBG] mgrmap e13: a(active, since 86s) 2024-09-16T23:50:59.255 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: cluster 2024-09-16T23:50:58.893788+0000 mon.a (mon.0) 181 : cluster [INF] overall HEALTH_OK 2024-09-16T23:50:59.255 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: audit 2024-09-16T23:50:58.900305+0000 mon.a (mon.0) 182 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:59.255 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: audit 2024-09-16T23:50:58.906962+0000 mon.a (mon.0) 183 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:59.255 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: audit 2024-09-16T23:50:58.914666+0000 mon.a (mon.0) 184 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:50:59.255 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:58 smithi033 bash[22694]: audit 2024-09-16T23:50:58.921653+0000 mon.a (mon.0) 185 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:00.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:59 smithi103 bash[24637]: cluster 2024-09-16T23:50:58.551428+0000 mgr.a (mgr.14150) 68 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:00.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:59 smithi103 bash[24637]: audit 2024-09-16T23:50:59.002463+0000 mon.a (mon.0) 186 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:51:00.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:59 smithi103 bash[24637]: audit 2024-09-16T23:50:59.028954+0000 mon.a (mon.0) 187 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:51:00.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:50:59 smithi103 bash[24637]: audit 2024-09-16T23:50:59.822155+0000 mon.a (mon.0) 188 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:51:00.253 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:59 smithi033 bash[22694]: cluster 2024-09-16T23:50:58.551428+0000 mgr.a (mgr.14150) 68 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:00.253 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:59 smithi033 bash[22694]: audit 2024-09-16T23:50:59.002463+0000 mon.a (mon.0) 186 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:51:00.253 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:59 smithi033 bash[22694]: audit 2024-09-16T23:50:59.028954+0000 mon.a (mon.0) 187 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:51:00.253 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:50:59 smithi033 bash[22694]: audit 2024-09-16T23:50:59.822155+0000 mon.a (mon.0) 188 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:51:05.107 INFO:teuthology.orchestra.run.smithi103.stderr:dumped monmap epoch 3 2024-09-16T23:51:05.107 INFO:teuthology.orchestra.run.smithi103.stdout: 2024-09-16T23:51:05.107 INFO:teuthology.orchestra.run.smithi103.stdout:{"epoch":3,"fsid":"f4fb0768-7485-11ef-bceb-c7b262605968","modified":"2024-09-16T23:51:00.029778Z","created":"2024-09-16T23:48:24.081012Z","min_mon_release":19,"min_mon_release_name":"squid","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","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.33:3300","nonce":0},{"type":"v1","addr":"172.21.15.33:6789","nonce":0}]},"addr":"172.21.15.33:6789/0","public_addr":"172.21.15.33:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.103:3300","nonce":0},{"type":"v1","addr":"172.21.15.103:6789","nonce":0}]},"addr":"172.21.15.103:6789/0","public_addr":"172.21.15.103:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.89:3300","nonce":0},{"type":"v1","addr":"172.21.15.89:6789","nonce":0}]},"addr":"172.21.15.89:6789/0","public_addr":"172.21.15.89:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1,2]} 2024-09-16T23:51:05.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: audit 2024-09-16T23:51:00.037362+0000 mon.a (mon.0) 190 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T23:51:05.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: audit 2024-09-16T23:51:00.037864+0000 mon.a (mon.0) 191 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:51:05.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: cluster 2024-09-16T23:51:00.038201+0000 mon.a (mon.0) 192 : cluster [INF] mon.a calling monitor election 2024-09-16T23:51:05.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: cluster 2024-09-16T23:51:00.044270+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-16T23:51:05.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: audit 2024-09-16T23:51:00.058322+0000 mon.a (mon.0) 193 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:51:05.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: audit 2024-09-16T23:51:00.220401+0000 mon.a (mon.0) 194 : audit [DBG] from='client.? 172.21.15.103:0/1841281520' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-16T23:51:05.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: cluster 2024-09-16T23:51:00.551864+0000 mgr.a (mgr.14150) 69 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:05.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: audit 2024-09-16T23:51:01.029325+0000 mon.a (mon.0) 195 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:51:05.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: audit 2024-09-16T23:51:02.029617+0000 mon.a (mon.0) 196 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:51:05.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: cluster 2024-09-16T23:51:02.031513+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-16T23:51:05.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: cluster 2024-09-16T23:51:02.552240+0000 mgr.a (mgr.14150) 70 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:05.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: audit 2024-09-16T23:51:03.029614+0000 mon.a (mon.0) 197 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:51:05.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: audit 2024-09-16T23:51:04.029946+0000 mon.a (mon.0) 198 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:51:05.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: audit 2024-09-16T23:51:05.029967+0000 mon.a (mon.0) 199 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:51:05.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: cluster 2024-09-16T23:51:05.080732+0000 mon.a (mon.0) 200 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-16T23:51:05.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: cluster 2024-09-16T23:51:05.088777+0000 mon.a (mon.0) 201 : cluster [DBG] monmap epoch 3 2024-09-16T23:51:05.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: cluster 2024-09-16T23:51:05.088809+0000 mon.a (mon.0) 202 : cluster [DBG] fsid f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:51:05.498 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: cluster 2024-09-16T23:51:05.088827+0000 mon.a (mon.0) 203 : cluster [DBG] last_changed 2024-09-16T23:51:00.029778+0000 2024-09-16T23:51:05.498 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: cluster 2024-09-16T23:51:05.088847+0000 mon.a (mon.0) 204 : cluster [DBG] created 2024-09-16T23:48:24.081012+0000 2024-09-16T23:51:05.498 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: cluster 2024-09-16T23:51:05.088868+0000 mon.a (mon.0) 205 : cluster [DBG] min_mon_release 19 (squid) 2024-09-16T23:51:05.498 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: cluster 2024-09-16T23:51:05.088889+0000 mon.a (mon.0) 206 : cluster [DBG] election_strategy: 1 2024-09-16T23:51:05.498 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: cluster 2024-09-16T23:51:05.088915+0000 mon.a (mon.0) 207 : cluster [DBG] 0: [v2:172.21.15.33:3300/0,v1:172.21.15.33:6789/0] mon.a 2024-09-16T23:51:05.498 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: cluster 2024-09-16T23:51:05.088937+0000 mon.a (mon.0) 208 : cluster [DBG] 1: [v2:172.21.15.103:3300/0,v1:172.21.15.103:6789/0] mon.c 2024-09-16T23:51:05.498 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: cluster 2024-09-16T23:51:05.088959+0000 mon.a (mon.0) 209 : cluster [DBG] 2: [v2:172.21.15.89:3300/0,v1:172.21.15.89:6789/0] mon.b 2024-09-16T23:51:05.498 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: cluster 2024-09-16T23:51:05.109267+0000 mon.a (mon.0) 210 : cluster [DBG] fsmap 2024-09-16T23:51:05.498 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: cluster 2024-09-16T23:51:05.109324+0000 mon.a (mon.0) 211 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T23:51:05.498 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: cluster 2024-09-16T23:51:05.109594+0000 mon.a (mon.0) 212 : cluster [DBG] mgrmap e13: a(active, since 92s) 2024-09-16T23:51:05.498 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: cluster 2024-09-16T23:51:05.109835+0000 mon.a (mon.0) 213 : cluster [INF] overall HEALTH_OK 2024-09-16T23:51:05.498 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: audit 2024-09-16T23:51:05.120154+0000 mon.a (mon.0) 214 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:05.498 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: audit 2024-09-16T23:51:05.127561+0000 mon.a (mon.0) 215 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:05.499 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: audit 2024-09-16T23:51:05.134933+0000 mon.a (mon.0) 216 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:05.499 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: audit 2024-09-16T23:51:05.142506+0000 mon.a (mon.0) 217 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:05.499 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: audit 2024-09-16T23:51:05.150180+0000 mon.a (mon.0) 218 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:05.499 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: audit 2024-09-16T23:51:05.151716+0000 mon.a (mon.0) 219 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:05.499 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:05 smithi103 bash[24637]: audit 2024-09-16T23:51:05.153640+0000 mon.a (mon.0) 220 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:51:05.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: audit 2024-09-16T23:51:00.037362+0000 mon.a (mon.0) 190 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T23:51:05.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: audit 2024-09-16T23:51:00.037864+0000 mon.a (mon.0) 191 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:51:05.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: cluster 2024-09-16T23:51:00.038201+0000 mon.a (mon.0) 192 : cluster [INF] mon.a calling monitor election 2024-09-16T23:51:05.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: cluster 2024-09-16T23:51:00.044270+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-16T23:51:05.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: audit 2024-09-16T23:51:00.058322+0000 mon.a (mon.0) 193 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:51:05.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: audit 2024-09-16T23:51:00.220401+0000 mon.a (mon.0) 194 : audit [DBG] from='client.? 172.21.15.103:0/1841281520' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-16T23:51:05.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: cluster 2024-09-16T23:51:00.551864+0000 mgr.a (mgr.14150) 69 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:05.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: audit 2024-09-16T23:51:01.029325+0000 mon.a (mon.0) 195 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:51:05.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: audit 2024-09-16T23:51:02.029617+0000 mon.a (mon.0) 196 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:51:05.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: cluster 2024-09-16T23:51:02.031513+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-16T23:51:05.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: cluster 2024-09-16T23:51:02.552240+0000 mgr.a (mgr.14150) 70 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:05.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: audit 2024-09-16T23:51:03.029614+0000 mon.a (mon.0) 197 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:51:05.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: audit 2024-09-16T23:51:04.029946+0000 mon.a (mon.0) 198 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:51:05.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: audit 2024-09-16T23:51:05.029967+0000 mon.a (mon.0) 199 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:51:05.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: cluster 2024-09-16T23:51:05.080732+0000 mon.a (mon.0) 200 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-16T23:51:05.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: cluster 2024-09-16T23:51:05.088777+0000 mon.a (mon.0) 201 : cluster [DBG] monmap epoch 3 2024-09-16T23:51:05.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: cluster 2024-09-16T23:51:05.088809+0000 mon.a (mon.0) 202 : cluster [DBG] fsid f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:51:05.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: cluster 2024-09-16T23:51:05.088827+0000 mon.a (mon.0) 203 : cluster [DBG] last_changed 2024-09-16T23:51:00.029778+0000 2024-09-16T23:51:05.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: cluster 2024-09-16T23:51:05.088847+0000 mon.a (mon.0) 204 : cluster [DBG] created 2024-09-16T23:48:24.081012+0000 2024-09-16T23:51:05.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: cluster 2024-09-16T23:51:05.088868+0000 mon.a (mon.0) 205 : cluster [DBG] min_mon_release 19 (squid) 2024-09-16T23:51:05.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: cluster 2024-09-16T23:51:05.088889+0000 mon.a (mon.0) 206 : cluster [DBG] election_strategy: 1 2024-09-16T23:51:05.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: cluster 2024-09-16T23:51:05.088915+0000 mon.a (mon.0) 207 : cluster [DBG] 0: [v2:172.21.15.33:3300/0,v1:172.21.15.33:6789/0] mon.a 2024-09-16T23:51:05.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: cluster 2024-09-16T23:51:05.088937+0000 mon.a (mon.0) 208 : cluster [DBG] 1: [v2:172.21.15.103:3300/0,v1:172.21.15.103:6789/0] mon.c 2024-09-16T23:51:05.505 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: cluster 2024-09-16T23:51:05.088959+0000 mon.a (mon.0) 209 : cluster [DBG] 2: [v2:172.21.15.89:3300/0,v1:172.21.15.89:6789/0] mon.b 2024-09-16T23:51:05.505 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: cluster 2024-09-16T23:51:05.109267+0000 mon.a (mon.0) 210 : cluster [DBG] fsmap 2024-09-16T23:51:05.505 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: cluster 2024-09-16T23:51:05.109324+0000 mon.a (mon.0) 211 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T23:51:05.505 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: cluster 2024-09-16T23:51:05.109594+0000 mon.a (mon.0) 212 : cluster [DBG] mgrmap e13: a(active, since 92s) 2024-09-16T23:51:05.505 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: cluster 2024-09-16T23:51:05.109835+0000 mon.a (mon.0) 213 : cluster [INF] overall HEALTH_OK 2024-09-16T23:51:05.505 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: audit 2024-09-16T23:51:05.120154+0000 mon.a (mon.0) 214 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:05.505 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: audit 2024-09-16T23:51:05.127561+0000 mon.a (mon.0) 215 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:05.505 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: audit 2024-09-16T23:51:05.134933+0000 mon.a (mon.0) 216 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:05.505 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: audit 2024-09-16T23:51:05.142506+0000 mon.a (mon.0) 217 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:05.505 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: audit 2024-09-16T23:51:05.150180+0000 mon.a (mon.0) 218 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:05.505 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: audit 2024-09-16T23:51:05.151716+0000 mon.a (mon.0) 219 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:05.505 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:05 smithi033 bash[22694]: audit 2024-09-16T23:51:05.153640+0000 mon.a (mon.0) 220 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:51:05.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:50:53.826271+0000 mon.a (mon.0) 160 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T23:51:05.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:50:53.826704+0000 mon.a (mon.0) 161 : cluster [INF] mon.a calling monitor election 2024-09-16T23:51:05.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:50:53.845541+0000 mon.a (mon.0) 162 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:51:05.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:50:54.550477+0000 mgr.a (mgr.14150) 66 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:05.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:50:54.821023+0000 mon.a (mon.0) 163 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:51:05.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:50:55.821470+0000 mon.a (mon.0) 164 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:51:05.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:50:55.824668+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-16T23:51:05.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:50:56.550936+0000 mgr.a (mgr.14150) 67 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:05.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:50:56.821440+0000 mon.a (mon.0) 165 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:51:05.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:50:57.821611+0000 mon.a (mon.0) 166 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:51:05.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:50:58.028627+0000 mon.a (mon.0) 167 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:51:05.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:50:58.821627+0000 mon.a (mon.0) 168 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:51:05.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:50:58.867225+0000 mon.a (mon.0) 169 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-16T23:51:05.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:50:58.873199+0000 mon.a (mon.0) 170 : cluster [DBG] monmap epoch 2 2024-09-16T23:51:05.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:50:58.873233+0000 mon.a (mon.0) 171 : cluster [DBG] fsid f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:51:05.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:50:58.873252+0000 mon.a (mon.0) 172 : cluster [DBG] last_changed 2024-09-16T23:50:53.820411+0000 2024-09-16T23:51:05.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:50:58.873267+0000 mon.a (mon.0) 173 : cluster [DBG] created 2024-09-16T23:48:24.081012+0000 2024-09-16T23:51:05.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:50:58.873282+0000 mon.a (mon.0) 174 : cluster [DBG] min_mon_release 19 (squid) 2024-09-16T23:51:05.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:50:58.873302+0000 mon.a (mon.0) 175 : cluster [DBG] election_strategy: 1 2024-09-16T23:51:05.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:50:58.873325+0000 mon.a (mon.0) 176 : cluster [DBG] 0: [v2:172.21.15.33:3300/0,v1:172.21.15.33:6789/0] mon.a 2024-09-16T23:51:05.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:50:58.873349+0000 mon.a (mon.0) 177 : cluster [DBG] 1: [v2:172.21.15.103:3300/0,v1:172.21.15.103:6789/0] mon.c 2024-09-16T23:51:05.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:50:58.893233+0000 mon.a (mon.0) 178 : cluster [DBG] fsmap 2024-09-16T23:51:05.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:50:58.893283+0000 mon.a (mon.0) 179 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T23:51:05.512 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:50:58.893548+0000 mon.a (mon.0) 180 : cluster [DBG] mgrmap e13: a(active, since 86s) 2024-09-16T23:51:05.512 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:50:58.893788+0000 mon.a (mon.0) 181 : cluster [INF] overall HEALTH_OK 2024-09-16T23:51:05.512 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:50:58.900305+0000 mon.a (mon.0) 182 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:05.512 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:50:58.906962+0000 mon.a (mon.0) 183 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:05.512 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:50:58.914666+0000 mon.a (mon.0) 184 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:05.512 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:50:58.921653+0000 mon.a (mon.0) 185 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:05.513 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:50:58.551428+0000 mgr.a (mgr.14150) 68 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:05.513 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:50:59.002463+0000 mon.a (mon.0) 186 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:51:05.513 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:50:59.028954+0000 mon.a (mon.0) 187 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:51:05.513 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:50:59.822155+0000 mon.a (mon.0) 188 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:51:05.513 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:51:00.037362+0000 mon.a (mon.0) 190 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T23:51:05.513 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:51:00.037864+0000 mon.a (mon.0) 191 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:51:05.513 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:51:00.038201+0000 mon.a (mon.0) 192 : cluster [INF] mon.a calling monitor election 2024-09-16T23:51:05.513 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:51:00.044270+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-16T23:51:05.513 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:51:00.058322+0000 mon.a (mon.0) 193 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:51:05.513 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:51:00.220401+0000 mon.a (mon.0) 194 : audit [DBG] from='client.? 172.21.15.103:0/1841281520' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-16T23:51:05.513 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:51:00.551864+0000 mgr.a (mgr.14150) 69 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:05.513 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:51:01.029325+0000 mon.a (mon.0) 195 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:51:05.513 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:51:02.029617+0000 mon.a (mon.0) 196 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:51:05.514 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:51:02.031513+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-16T23:51:05.514 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:51:02.552240+0000 mgr.a (mgr.14150) 70 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:05.514 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:51:03.029614+0000 mon.a (mon.0) 197 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:51:05.514 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:51:04.029946+0000 mon.a (mon.0) 198 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:51:05.514 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:51:05.029967+0000 mon.a (mon.0) 199 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:51:05.514 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:51:05.080732+0000 mon.a (mon.0) 200 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-16T23:51:05.514 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:51:05.088777+0000 mon.a (mon.0) 201 : cluster [DBG] monmap epoch 3 2024-09-16T23:51:05.514 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:51:05.088809+0000 mon.a (mon.0) 202 : cluster [DBG] fsid f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:51:05.514 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:51:05.088827+0000 mon.a (mon.0) 203 : cluster [DBG] last_changed 2024-09-16T23:51:00.029778+0000 2024-09-16T23:51:05.514 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:51:05.088847+0000 mon.a (mon.0) 204 : cluster [DBG] created 2024-09-16T23:48:24.081012+0000 2024-09-16T23:51:05.514 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:51:05.088868+0000 mon.a (mon.0) 205 : cluster [DBG] min_mon_release 19 (squid) 2024-09-16T23:51:05.514 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:51:05.088889+0000 mon.a (mon.0) 206 : cluster [DBG] election_strategy: 1 2024-09-16T23:51:05.514 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:51:05.088915+0000 mon.a (mon.0) 207 : cluster [DBG] 0: [v2:172.21.15.33:3300/0,v1:172.21.15.33:6789/0] mon.a 2024-09-16T23:51:05.515 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:51:05.088937+0000 mon.a (mon.0) 208 : cluster [DBG] 1: [v2:172.21.15.103:3300/0,v1:172.21.15.103:6789/0] mon.c 2024-09-16T23:51:05.515 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:51:05.088959+0000 mon.a (mon.0) 209 : cluster [DBG] 2: [v2:172.21.15.89:3300/0,v1:172.21.15.89:6789/0] mon.b 2024-09-16T23:51:05.515 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:51:05.109267+0000 mon.a (mon.0) 210 : cluster [DBG] fsmap 2024-09-16T23:51:05.515 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:51:05.109324+0000 mon.a (mon.0) 211 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T23:51:05.515 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:51:05.109594+0000 mon.a (mon.0) 212 : cluster [DBG] mgrmap e13: a(active, since 92s) 2024-09-16T23:51:05.515 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: cluster 2024-09-16T23:51:05.109835+0000 mon.a (mon.0) 213 : cluster [INF] overall HEALTH_OK 2024-09-16T23:51:05.515 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:51:05.120154+0000 mon.a (mon.0) 214 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:05.515 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:51:05.127561+0000 mon.a (mon.0) 215 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:05.515 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:51:05.134933+0000 mon.a (mon.0) 216 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:05.515 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:51:05.142506+0000 mon.a (mon.0) 217 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:05.515 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:51:05.150180+0000 mon.a (mon.0) 218 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:05.515 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:51:05.151716+0000 mon.a (mon.0) 219 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:05.515 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:05 smithi089 bash[24318]: audit 2024-09-16T23:51:05.153640+0000 mon.a (mon.0) 220 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:51:05.866 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-16T23:51:05.866 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph config generate-minimal-conf 2024-09-16T23:51:06.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:06 smithi103 bash[24637]: cluster 2024-09-16T23:51:04.552614+0000 mgr.a (mgr.14150) 71 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:06.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:06 smithi103 bash[24637]: cephadm 2024-09-16T23:51:05.156104+0000 mgr.a (mgr.14150) 72 : cephadm [INF] Updating smithi033:/etc/ceph/ceph.conf 2024-09-16T23:51:06.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:06 smithi103 bash[24637]: cephadm 2024-09-16T23:51:05.156754+0000 mgr.a (mgr.14150) 73 : cephadm [INF] Updating smithi089:/etc/ceph/ceph.conf 2024-09-16T23:51:06.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:06 smithi103 bash[24637]: cephadm 2024-09-16T23:51:05.157976+0000 mgr.a (mgr.14150) 74 : cephadm [INF] Updating smithi103:/etc/ceph/ceph.conf 2024-09-16T23:51:06.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:06 smithi103 bash[24637]: cephadm 2024-09-16T23:51:05.406300+0000 mgr.a (mgr.14150) 75 : cephadm [INF] Updating smithi103:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T23:51:06.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:06 smithi103 bash[24637]: cephadm 2024-09-16T23:51:05.406663+0000 mgr.a (mgr.14150) 76 : cephadm [INF] Updating smithi033:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T23:51:06.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:06 smithi103 bash[24637]: cephadm 2024-09-16T23:51:05.407289+0000 mgr.a (mgr.14150) 77 : cephadm [INF] Updating smithi089:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T23:51:06.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:06 smithi103 bash[24637]: audit 2024-09-16T23:51:05.605309+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:06 smithi103 bash[24637]: audit 2024-09-16T23:51:05.611952+0000 mon.a (mon.0) 222 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:06 smithi103 bash[24637]: audit 2024-09-16T23:51:05.618478+0000 mon.a (mon.0) 223 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:06 smithi103 bash[24637]: audit 2024-09-16T23:51:05.625356+0000 mon.a (mon.0) 224 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:06 smithi103 bash[24637]: audit 2024-09-16T23:51:05.632035+0000 mon.a (mon.0) 225 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:06 smithi103 bash[24637]: audit 2024-09-16T23:51:05.637269+0000 mon.a (mon.0) 226 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:06 smithi103 bash[24637]: audit 2024-09-16T23:51:05.642785+0000 mon.a (mon.0) 227 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:06 smithi103 bash[24637]: audit 2024-09-16T23:51:05.701986+0000 mon.a (mon.0) 228 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:06 smithi103 bash[24637]: audit 2024-09-16T23:51:05.707376+0000 mon.a (mon.0) 229 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.498 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:06 smithi103 bash[24637]: audit 2024-09-16T23:51:05.712462+0000 mon.a (mon.0) 230 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.498 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:06 smithi103 bash[24637]: audit 2024-09-16T23:51:05.717488+0000 mon.a (mon.0) 231 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.498 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:06 smithi103 bash[24637]: audit 2024-09-16T23:51:05.718528+0000 mon.a (mon.0) 232 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T23:51:06.498 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:06 smithi103 bash[24637]: audit 2024-09-16T23:51:05.719729+0000 mon.a (mon.0) 233 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T23:51:06.498 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:06 smithi103 bash[24637]: audit 2024-09-16T23:51:05.721010+0000 mon.a (mon.0) 234 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:06.498 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:06 smithi103 bash[24637]: audit 2024-09-16T23:51:06.029987+0000 mon.a (mon.0) 235 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:51:06.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:06 smithi033 bash[22694]: cluster 2024-09-16T23:51:04.552614+0000 mgr.a (mgr.14150) 71 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:06.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:06 smithi033 bash[22694]: cephadm 2024-09-16T23:51:05.156104+0000 mgr.a (mgr.14150) 72 : cephadm [INF] Updating smithi033:/etc/ceph/ceph.conf 2024-09-16T23:51:06.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:06 smithi033 bash[22694]: cephadm 2024-09-16T23:51:05.156754+0000 mgr.a (mgr.14150) 73 : cephadm [INF] Updating smithi089:/etc/ceph/ceph.conf 2024-09-16T23:51:06.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:06 smithi033 bash[22694]: cephadm 2024-09-16T23:51:05.157976+0000 mgr.a (mgr.14150) 74 : cephadm [INF] Updating smithi103:/etc/ceph/ceph.conf 2024-09-16T23:51:06.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:06 smithi033 bash[22694]: cephadm 2024-09-16T23:51:05.406300+0000 mgr.a (mgr.14150) 75 : cephadm [INF] Updating smithi103:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T23:51:06.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:06 smithi033 bash[22694]: cephadm 2024-09-16T23:51:05.406663+0000 mgr.a (mgr.14150) 76 : cephadm [INF] Updating smithi033:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T23:51:06.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:06 smithi033 bash[22694]: cephadm 2024-09-16T23:51:05.407289+0000 mgr.a (mgr.14150) 77 : cephadm [INF] Updating smithi089:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T23:51:06.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:06 smithi033 bash[22694]: audit 2024-09-16T23:51:05.605309+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:06 smithi033 bash[22694]: audit 2024-09-16T23:51:05.611952+0000 mon.a (mon.0) 222 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:06 smithi033 bash[22694]: audit 2024-09-16T23:51:05.618478+0000 mon.a (mon.0) 223 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:06 smithi033 bash[22694]: audit 2024-09-16T23:51:05.625356+0000 mon.a (mon.0) 224 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:06 smithi033 bash[22694]: audit 2024-09-16T23:51:05.632035+0000 mon.a (mon.0) 225 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:06 smithi033 bash[22694]: audit 2024-09-16T23:51:05.637269+0000 mon.a (mon.0) 226 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:06 smithi033 bash[22694]: audit 2024-09-16T23:51:05.642785+0000 mon.a (mon.0) 227 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:06 smithi033 bash[22694]: audit 2024-09-16T23:51:05.701986+0000 mon.a (mon.0) 228 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:06 smithi033 bash[22694]: audit 2024-09-16T23:51:05.707376+0000 mon.a (mon.0) 229 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:06 smithi033 bash[22694]: audit 2024-09-16T23:51:05.712462+0000 mon.a (mon.0) 230 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.504 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:06 smithi033 bash[22694]: audit 2024-09-16T23:51:05.717488+0000 mon.a (mon.0) 231 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.505 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:06 smithi033 bash[22694]: audit 2024-09-16T23:51:05.718528+0000 mon.a (mon.0) 232 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T23:51:06.505 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:06 smithi033 bash[22694]: audit 2024-09-16T23:51:05.719729+0000 mon.a (mon.0) 233 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T23:51:06.505 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:06 smithi033 bash[22694]: audit 2024-09-16T23:51:05.721010+0000 mon.a (mon.0) 234 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:06.505 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:06 smithi033 bash[22694]: audit 2024-09-16T23:51:06.029987+0000 mon.a (mon.0) 235 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:51:06.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:06 smithi089 bash[24318]: cluster 2024-09-16T23:51:04.552614+0000 mgr.a (mgr.14150) 71 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:06.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:06 smithi089 bash[24318]: cephadm 2024-09-16T23:51:05.156104+0000 mgr.a (mgr.14150) 72 : cephadm [INF] Updating smithi033:/etc/ceph/ceph.conf 2024-09-16T23:51:06.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:06 smithi089 bash[24318]: cephadm 2024-09-16T23:51:05.156754+0000 mgr.a (mgr.14150) 73 : cephadm [INF] Updating smithi089:/etc/ceph/ceph.conf 2024-09-16T23:51:06.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:06 smithi089 bash[24318]: cephadm 2024-09-16T23:51:05.157976+0000 mgr.a (mgr.14150) 74 : cephadm [INF] Updating smithi103:/etc/ceph/ceph.conf 2024-09-16T23:51:06.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:06 smithi089 bash[24318]: cephadm 2024-09-16T23:51:05.406300+0000 mgr.a (mgr.14150) 75 : cephadm [INF] Updating smithi103:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T23:51:06.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:06 smithi089 bash[24318]: cephadm 2024-09-16T23:51:05.406663+0000 mgr.a (mgr.14150) 76 : cephadm [INF] Updating smithi033:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T23:51:06.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:06 smithi089 bash[24318]: cephadm 2024-09-16T23:51:05.407289+0000 mgr.a (mgr.14150) 77 : cephadm [INF] Updating smithi089:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T23:51:06.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:06 smithi089 bash[24318]: audit 2024-09-16T23:51:05.605309+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:06 smithi089 bash[24318]: audit 2024-09-16T23:51:05.611952+0000 mon.a (mon.0) 222 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:06 smithi089 bash[24318]: audit 2024-09-16T23:51:05.618478+0000 mon.a (mon.0) 223 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:06 smithi089 bash[24318]: audit 2024-09-16T23:51:05.625356+0000 mon.a (mon.0) 224 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:06 smithi089 bash[24318]: audit 2024-09-16T23:51:05.632035+0000 mon.a (mon.0) 225 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:06 smithi089 bash[24318]: audit 2024-09-16T23:51:05.637269+0000 mon.a (mon.0) 226 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:06 smithi089 bash[24318]: audit 2024-09-16T23:51:05.642785+0000 mon.a (mon.0) 227 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:06 smithi089 bash[24318]: audit 2024-09-16T23:51:05.701986+0000 mon.a (mon.0) 228 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:06 smithi089 bash[24318]: audit 2024-09-16T23:51:05.707376+0000 mon.a (mon.0) 229 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:06 smithi089 bash[24318]: audit 2024-09-16T23:51:05.712462+0000 mon.a (mon.0) 230 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:06 smithi089 bash[24318]: audit 2024-09-16T23:51:05.717488+0000 mon.a (mon.0) 231 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:06.512 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:06 smithi089 bash[24318]: audit 2024-09-16T23:51:05.718528+0000 mon.a (mon.0) 232 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T23:51:06.512 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:06 smithi089 bash[24318]: audit 2024-09-16T23:51:05.719729+0000 mon.a (mon.0) 233 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T23:51:06.512 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:06 smithi089 bash[24318]: audit 2024-09-16T23:51:05.721010+0000 mon.a (mon.0) 234 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:06.512 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:06 smithi089 bash[24318]: audit 2024-09-16T23:51:06.029987+0000 mon.a (mon.0) 235 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:51:07.281 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:07 smithi033 bash[22694]: cephadm 2024-09-16T23:51:05.718061+0000 mgr.a (mgr.14150) 78 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-16T23:51:07.282 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:07 smithi033 bash[22694]: cephadm 2024-09-16T23:51:05.722337+0000 mgr.a (mgr.14150) 79 : cephadm [INF] Reconfiguring daemon mon.a on smithi033 2024-09-16T23:51:07.282 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:51:07 smithi033 bash[22949]: debug 2024-09-16T23:51:07.028+0000 7f3877136640 -1 mgr.server handle_report got status from non-daemon mon.b 2024-09-16T23:51:07.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:07 smithi103 bash[24637]: cephadm 2024-09-16T23:51:05.718061+0000 mgr.a (mgr.14150) 78 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-16T23:51:07.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:07 smithi103 bash[24637]: cephadm 2024-09-16T23:51:05.722337+0000 mgr.a (mgr.14150) 79 : cephadm [INF] Reconfiguring daemon mon.a on smithi033 2024-09-16T23:51:07.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:07 smithi089 bash[24318]: cephadm 2024-09-16T23:51:05.718061+0000 mgr.a (mgr.14150) 78 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-16T23:51:07.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:07 smithi089 bash[24318]: cephadm 2024-09-16T23:51:05.722337+0000 mgr.a (mgr.14150) 79 : cephadm [INF] Reconfiguring daemon mon.a on smithi033 2024-09-16T23:51:08.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:08 smithi103 bash[24637]: cluster 2024-09-16T23:51:06.553020+0000 mgr.a (mgr.14150) 80 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:08.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:08 smithi103 bash[24637]: audit 2024-09-16T23:51:08.020050+0000 mon.a (mon.0) 236 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:08.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:08 smithi103 bash[24637]: audit 2024-09-16T23:51:08.027222+0000 mon.a (mon.0) 237 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:08.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:08 smithi103 bash[24637]: audit 2024-09-16T23:51:08.029185+0000 mon.a (mon.0) 238 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T23:51:08.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:08 smithi103 bash[24637]: audit 2024-09-16T23:51:08.030483+0000 mon.a (mon.0) 239 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T23:51:08.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:08 smithi103 bash[24637]: audit 2024-09-16T23:51:08.031904+0000 mon.a (mon.0) 240 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:08.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:08 smithi033 bash[22694]: cluster 2024-09-16T23:51:06.553020+0000 mgr.a (mgr.14150) 80 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:08.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:08 smithi033 bash[22694]: audit 2024-09-16T23:51:08.020050+0000 mon.a (mon.0) 236 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:08.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:08 smithi033 bash[22694]: audit 2024-09-16T23:51:08.027222+0000 mon.a (mon.0) 237 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:08.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:08 smithi033 bash[22694]: audit 2024-09-16T23:51:08.029185+0000 mon.a (mon.0) 238 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T23:51:08.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:08 smithi033 bash[22694]: audit 2024-09-16T23:51:08.030483+0000 mon.a (mon.0) 239 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T23:51:08.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:08 smithi033 bash[22694]: audit 2024-09-16T23:51:08.031904+0000 mon.a (mon.0) 240 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:08.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:08 smithi089 bash[24318]: cluster 2024-09-16T23:51:06.553020+0000 mgr.a (mgr.14150) 80 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:08.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:08 smithi089 bash[24318]: audit 2024-09-16T23:51:08.020050+0000 mon.a (mon.0) 236 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:08.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:08 smithi089 bash[24318]: audit 2024-09-16T23:51:08.027222+0000 mon.a (mon.0) 237 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:08.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:08 smithi089 bash[24318]: audit 2024-09-16T23:51:08.029185+0000 mon.a (mon.0) 238 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T23:51:08.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:08 smithi089 bash[24318]: audit 2024-09-16T23:51:08.030483+0000 mon.a (mon.0) 239 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T23:51:08.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:08 smithi089 bash[24318]: audit 2024-09-16T23:51:08.031904+0000 mon.a (mon.0) 240 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:09.446 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:09 smithi089 bash[24318]: cephadm 2024-09-16T23:51:08.028695+0000 mgr.a (mgr.14150) 81 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-16T23:51:09.446 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:09 smithi089 bash[24318]: cephadm 2024-09-16T23:51:08.033559+0000 mgr.a (mgr.14150) 82 : cephadm [INF] Reconfiguring daemon mon.b on smithi089 2024-09-16T23:51:09.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:09 smithi103 bash[24637]: cephadm 2024-09-16T23:51:08.028695+0000 mgr.a (mgr.14150) 81 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-16T23:51:09.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:09 smithi103 bash[24637]: cephadm 2024-09-16T23:51:08.033559+0000 mgr.a (mgr.14150) 82 : cephadm [INF] Reconfiguring daemon mon.b on smithi089 2024-09-16T23:51:09.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:09 smithi033 bash[22694]: cephadm 2024-09-16T23:51:08.028695+0000 mgr.a (mgr.14150) 81 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-16T23:51:09.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:09 smithi033 bash[22694]: cephadm 2024-09-16T23:51:08.033559+0000 mgr.a (mgr.14150) 82 : cephadm [INF] Reconfiguring daemon mon.b on smithi089 2024-09-16T23:51:10.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:10 smithi103 bash[24637]: cluster 2024-09-16T23:51:08.553427+0000 mgr.a (mgr.14150) 83 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:10.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:10 smithi103 bash[24637]: audit 2024-09-16T23:51:10.157624+0000 mon.a (mon.0) 241 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:10.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:10 smithi103 bash[24637]: audit 2024-09-16T23:51:10.164547+0000 mon.a (mon.0) 242 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:10.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:10 smithi103 bash[24637]: audit 2024-09-16T23:51:10.166692+0000 mon.a (mon.0) 243 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T23:51:10.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:10 smithi103 bash[24637]: audit 2024-09-16T23:51:10.168537+0000 mon.a (mon.0) 244 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T23:51:10.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:10 smithi103 bash[24637]: audit 2024-09-16T23:51:10.170338+0000 mon.a (mon.0) 245 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:10.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:10 smithi033 bash[22694]: cluster 2024-09-16T23:51:08.553427+0000 mgr.a (mgr.14150) 83 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:10.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:10 smithi033 bash[22694]: audit 2024-09-16T23:51:10.157624+0000 mon.a (mon.0) 241 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:10.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:10 smithi033 bash[22694]: audit 2024-09-16T23:51:10.164547+0000 mon.a (mon.0) 242 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:10.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:10 smithi033 bash[22694]: audit 2024-09-16T23:51:10.166692+0000 mon.a (mon.0) 243 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T23:51:10.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:10 smithi033 bash[22694]: audit 2024-09-16T23:51:10.168537+0000 mon.a (mon.0) 244 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T23:51:10.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:10 smithi033 bash[22694]: audit 2024-09-16T23:51:10.170338+0000 mon.a (mon.0) 245 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:10.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:10 smithi089 bash[24318]: cluster 2024-09-16T23:51:08.553427+0000 mgr.a (mgr.14150) 83 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:10.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:10 smithi089 bash[24318]: audit 2024-09-16T23:51:10.157624+0000 mon.a (mon.0) 241 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:10.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:10 smithi089 bash[24318]: audit 2024-09-16T23:51:10.164547+0000 mon.a (mon.0) 242 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:10.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:10 smithi089 bash[24318]: audit 2024-09-16T23:51:10.166692+0000 mon.a (mon.0) 243 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T23:51:10.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:10 smithi089 bash[24318]: audit 2024-09-16T23:51:10.168537+0000 mon.a (mon.0) 244 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T23:51:10.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:10 smithi089 bash[24318]: audit 2024-09-16T23:51:10.170338+0000 mon.a (mon.0) 245 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:10.595 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:51:11.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:11 smithi103 bash[24637]: cephadm 2024-09-16T23:51:10.166120+0000 mgr.a (mgr.14150) 84 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-16T23:51:11.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:11 smithi103 bash[24637]: cephadm 2024-09-16T23:51:10.172317+0000 mgr.a (mgr.14150) 85 : cephadm [INF] Reconfiguring daemon mon.c on smithi103 2024-09-16T23:51:11.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:11 smithi033 bash[22694]: cephadm 2024-09-16T23:51:10.166120+0000 mgr.a (mgr.14150) 84 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-16T23:51:11.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:11 smithi033 bash[22694]: cephadm 2024-09-16T23:51:10.172317+0000 mgr.a (mgr.14150) 85 : cephadm [INF] Reconfiguring daemon mon.c on smithi103 2024-09-16T23:51:11.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:11 smithi089 bash[24318]: cephadm 2024-09-16T23:51:10.166120+0000 mgr.a (mgr.14150) 84 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-16T23:51:11.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:11 smithi089 bash[24318]: cephadm 2024-09-16T23:51:10.172317+0000 mgr.a (mgr.14150) 85 : cephadm [INF] Reconfiguring daemon mon.c on smithi103 2024-09-16T23:51:12.165 INFO:teuthology.orchestra.run.smithi033.stdout:# minimal ceph.conf for f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:51:12.165 INFO:teuthology.orchestra.run.smithi033.stdout:[global] 2024-09-16T23:51:12.165 INFO:teuthology.orchestra.run.smithi033.stdout: fsid = f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:51:12.165 INFO:teuthology.orchestra.run.smithi033.stdout: mon_host = [v2:172.21.15.33:3300/0,v1:172.21.15.33:6789/0] [v2:172.21.15.89:3300/0,v1:172.21.15.89:6789/0] [v2:172.21.15.103:3300/0,v1:172.21.15.103:6789/0] 2024-09-16T23:51:12.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:12 smithi103 bash[24637]: cluster 2024-09-16T23:51:10.553836+0000 mgr.a (mgr.14150) 86 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:12.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:12 smithi103 bash[24637]: audit 2024-09-16T23:51:12.169091+0000 mon.a (mon.0) 246 : audit [DBG] from='client.? 172.21.15.33:0/2088676337' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:12.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:12 smithi103 bash[24637]: audit 2024-09-16T23:51:12.174179+0000 mon.a (mon.0) 247 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:12.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:12 smithi103 bash[24637]: audit 2024-09-16T23:51:12.181086+0000 mon.a (mon.0) 248 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:12.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:12 smithi103 bash[24637]: audit 2024-09-16T23:51:12.182731+0000 mon.a (mon.0) 249 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:51:12.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:12 smithi103 bash[24637]: audit 2024-09-16T23:51:12.184677+0000 mon.a (mon.0) 250 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:12.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:12 smithi103 bash[24637]: audit 2024-09-16T23:51:12.185626+0000 mon.a (mon.0) 251 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:51:12.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:12 smithi103 bash[24637]: audit 2024-09-16T23:51:12.194269+0000 mon.a (mon.0) 252 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:12.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:12 smithi033 bash[22694]: cluster 2024-09-16T23:51:10.553836+0000 mgr.a (mgr.14150) 86 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:12.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:12 smithi033 bash[22694]: audit 2024-09-16T23:51:12.169091+0000 mon.a (mon.0) 246 : audit [DBG] from='client.? 172.21.15.33:0/2088676337' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:12.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:12 smithi033 bash[22694]: audit 2024-09-16T23:51:12.174179+0000 mon.a (mon.0) 247 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:12.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:12 smithi033 bash[22694]: audit 2024-09-16T23:51:12.181086+0000 mon.a (mon.0) 248 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:12.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:12 smithi033 bash[22694]: audit 2024-09-16T23:51:12.182731+0000 mon.a (mon.0) 249 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:51:12.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:12 smithi033 bash[22694]: audit 2024-09-16T23:51:12.184677+0000 mon.a (mon.0) 250 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:12.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:12 smithi033 bash[22694]: audit 2024-09-16T23:51:12.185626+0000 mon.a (mon.0) 251 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:51:12.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:12 smithi033 bash[22694]: audit 2024-09-16T23:51:12.194269+0000 mon.a (mon.0) 252 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:12.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:12 smithi089 bash[24318]: cluster 2024-09-16T23:51:10.553836+0000 mgr.a (mgr.14150) 86 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:12.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:12 smithi089 bash[24318]: audit 2024-09-16T23:51:12.169091+0000 mon.a (mon.0) 246 : audit [DBG] from='client.? 172.21.15.33:0/2088676337' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:12.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:12 smithi089 bash[24318]: audit 2024-09-16T23:51:12.174179+0000 mon.a (mon.0) 247 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:12.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:12 smithi089 bash[24318]: audit 2024-09-16T23:51:12.181086+0000 mon.a (mon.0) 248 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:12.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:12 smithi089 bash[24318]: audit 2024-09-16T23:51:12.182731+0000 mon.a (mon.0) 249 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:51:12.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:12 smithi089 bash[24318]: audit 2024-09-16T23:51:12.184677+0000 mon.a (mon.0) 250 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:12.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:12 smithi089 bash[24318]: audit 2024-09-16T23:51:12.185626+0000 mon.a (mon.0) 251 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:51:12.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:12 smithi089 bash[24318]: audit 2024-09-16T23:51:12.194269+0000 mon.a (mon.0) 252 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:12.858 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-16T23:51:12.858 DEBUG:teuthology.orchestra.run.smithi033:> set -ex 2024-09-16T23:51:12.858 DEBUG:teuthology.orchestra.run.smithi033:> sudo dd of=/etc/ceph/ceph.conf 2024-09-16T23:51:12.871 DEBUG:teuthology.orchestra.run.smithi033:> set -ex 2024-09-16T23:51:12.872 DEBUG:teuthology.orchestra.run.smithi033:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-16T23:51:12.929 DEBUG:teuthology.orchestra.run.smithi089:> set -ex 2024-09-16T23:51:12.929 DEBUG:teuthology.orchestra.run.smithi089:> sudo dd of=/etc/ceph/ceph.conf 2024-09-16T23:51:12.943 DEBUG:teuthology.orchestra.run.smithi089:> set -ex 2024-09-16T23:51:12.943 DEBUG:teuthology.orchestra.run.smithi089:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-16T23:51:12.998 DEBUG:teuthology.orchestra.run.smithi103:> set -ex 2024-09-16T23:51:12.998 DEBUG:teuthology.orchestra.run.smithi103:> sudo dd of=/etc/ceph/ceph.conf 2024-09-16T23:51:13.013 DEBUG:teuthology.orchestra.run.smithi103:> set -ex 2024-09-16T23:51:13.013 DEBUG:teuthology.orchestra.run.smithi103:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-16T23:51:13.074 INFO:tasks.cephadm:Adding mgr.a on smithi033 2024-09-16T23:51:13.074 INFO:tasks.cephadm:Adding mgr.b on smithi089 2024-09-16T23:51:13.074 DEBUG:teuthology.orchestra.run.smithi103:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph orch apply mgr '2;smithi033=a;smithi089=b' 2024-09-16T23:51:14.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:14 smithi103 bash[24637]: cluster 2024-09-16T23:51:12.554252+0000 mgr.a (mgr.14150) 87 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:14.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:14 smithi033 bash[22694]: cluster 2024-09-16T23:51:12.554252+0000 mgr.a (mgr.14150) 87 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:14.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:14 smithi089 bash[24318]: cluster 2024-09-16T23:51:12.554252+0000 mgr.a (mgr.14150) 87 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:16.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:16 smithi103 bash[24637]: cluster 2024-09-16T23:51:14.554716+0000 mgr.a (mgr.14150) 88 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:16.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:16 smithi033 bash[22694]: cluster 2024-09-16T23:51:14.554716+0000 mgr.a (mgr.14150) 88 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:16.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:16 smithi089 bash[24318]: cluster 2024-09-16T23:51:14.554716+0000 mgr.a (mgr.14150) 88 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:16.832 INFO:teuthology.orchestra.run.smithi103.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.c/config 2024-09-16T23:51:18.180 INFO:teuthology.orchestra.run.smithi103.stdout:Scheduled mgr update... 2024-09-16T23:51:18.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:18 smithi103 bash[24637]: cluster 2024-09-16T23:51:16.555133+0000 mgr.a (mgr.14150) 89 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:18.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:18 smithi103 bash[24637]: audit 2024-09-16T23:51:18.183345+0000 mon.a (mon.0) 253 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:18.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:18 smithi103 bash[24637]: audit 2024-09-16T23:51:18.185029+0000 mon.a (mon.0) 254 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:51:18.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:18 smithi033 bash[22694]: cluster 2024-09-16T23:51:16.555133+0000 mgr.a (mgr.14150) 89 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:18.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:18 smithi033 bash[22694]: audit 2024-09-16T23:51:18.183345+0000 mon.a (mon.0) 253 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:18.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:18 smithi033 bash[22694]: audit 2024-09-16T23:51:18.185029+0000 mon.a (mon.0) 254 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:51:18.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:18 smithi089 bash[24318]: cluster 2024-09-16T23:51:16.555133+0000 mgr.a (mgr.14150) 89 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:18.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:18 smithi089 bash[24318]: audit 2024-09-16T23:51:18.183345+0000 mon.a (mon.0) 253 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:18.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:18 smithi089 bash[24318]: audit 2024-09-16T23:51:18.185029+0000 mon.a (mon.0) 254 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:51:18.810 DEBUG:teuthology.orchestra.run.smithi089:mgr.b> sudo journalctl -f -n 0 -u ceph-f4fb0768-7485-11ef-bceb-c7b262605968@mgr.b.service 2024-09-16T23:51:18.813 INFO:tasks.cephadm:Deploying OSDs... 2024-09-16T23:51:18.813 DEBUG:teuthology.orchestra.run.smithi033:> set -ex 2024-09-16T23:51:18.813 DEBUG:teuthology.orchestra.run.smithi033:> dd if=/scratch_devs of=/dev/stdout 2024-09-16T23:51:18.819 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-16T23:51:18.820 DEBUG:teuthology.orchestra.run.smithi033:> stat /dev/vg_nvme/lv_1 2024-09-16T23:51:18.869 INFO:teuthology.orchestra.run.smithi033.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-16T23:51:18.869 INFO:teuthology.orchestra.run.smithi033.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T23:51:18.869 INFO:teuthology.orchestra.run.smithi033.stdout:Device: 5h/5d Inode: 888 Links: 1 2024-09-16T23:51:18.869 INFO:teuthology.orchestra.run.smithi033.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T23:51:18.869 INFO:teuthology.orchestra.run.smithi033.stdout:Access: 2024-09-16 23:41:21.413984097 +0000 2024-09-16T23:51:18.869 INFO:teuthology.orchestra.run.smithi033.stdout:Modify: 2024-09-16 23:41:21.165986300 +0000 2024-09-16T23:51:18.870 INFO:teuthology.orchestra.run.smithi033.stdout:Change: 2024-09-16 23:41:21.165986300 +0000 2024-09-16T23:51:18.870 INFO:teuthology.orchestra.run.smithi033.stdout: Birth: - 2024-09-16T23:51:18.870 DEBUG:teuthology.orchestra.run.smithi033:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-16T23:51:18.924 INFO:teuthology.orchestra.run.smithi033.stderr:1+0 records in 2024-09-16T23:51:18.925 INFO:teuthology.orchestra.run.smithi033.stderr:1+0 records out 2024-09-16T23:51:18.925 INFO:teuthology.orchestra.run.smithi033.stderr:512 bytes copied, 0.000385797 s, 1.3 MB/s 2024-09-16T23:51:18.926 DEBUG:teuthology.orchestra.run.smithi033:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-16T23:51:18.975 DEBUG:teuthology.orchestra.run.smithi033:> stat /dev/vg_nvme/lv_2 2024-09-16T23:51:19.029 INFO:teuthology.orchestra.run.smithi033.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-16T23:51:19.029 INFO:teuthology.orchestra.run.smithi033.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T23:51:19.029 INFO:teuthology.orchestra.run.smithi033.stdout:Device: 5h/5d Inode: 905 Links: 1 2024-09-16T23:51:19.029 INFO:teuthology.orchestra.run.smithi033.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T23:51:19.030 INFO:teuthology.orchestra.run.smithi033.stdout:Access: 2024-09-16 23:41:21.889979868 +0000 2024-09-16T23:51:19.030 INFO:teuthology.orchestra.run.smithi033.stdout:Modify: 2024-09-16 23:41:21.633982142 +0000 2024-09-16T23:51:19.030 INFO:teuthology.orchestra.run.smithi033.stdout:Change: 2024-09-16 23:41:21.633982142 +0000 2024-09-16T23:51:19.030 INFO:teuthology.orchestra.run.smithi033.stdout: Birth: - 2024-09-16T23:51:19.030 DEBUG:teuthology.orchestra.run.smithi033:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-16T23:51:19.083 INFO:teuthology.orchestra.run.smithi033.stderr:1+0 records in 2024-09-16T23:51:19.084 INFO:teuthology.orchestra.run.smithi033.stderr:1+0 records out 2024-09-16T23:51:19.084 INFO:teuthology.orchestra.run.smithi033.stderr:512 bytes copied, 0.000385213 s, 1.3 MB/s 2024-09-16T23:51:19.085 DEBUG:teuthology.orchestra.run.smithi033:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-16T23:51:19.134 DEBUG:teuthology.orchestra.run.smithi033:> stat /dev/vg_nvme/lv_3 2024-09-16T23:51:19.181 INFO:teuthology.orchestra.run.smithi033.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-16T23:51:19.181 INFO:teuthology.orchestra.run.smithi033.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T23:51:19.181 INFO:teuthology.orchestra.run.smithi033.stdout:Device: 5h/5d Inode: 921 Links: 1 2024-09-16T23:51:19.181 INFO:teuthology.orchestra.run.smithi033.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T23:51:19.181 INFO:teuthology.orchestra.run.smithi033.stdout:Access: 2024-09-16 23:41:22.381975497 +0000 2024-09-16T23:51:19.181 INFO:teuthology.orchestra.run.smithi033.stdout:Modify: 2024-09-16 23:41:22.121977806 +0000 2024-09-16T23:51:19.181 INFO:teuthology.orchestra.run.smithi033.stdout:Change: 2024-09-16 23:41:22.121977806 +0000 2024-09-16T23:51:19.182 INFO:teuthology.orchestra.run.smithi033.stdout: Birth: - 2024-09-16T23:51:19.182 DEBUG:teuthology.orchestra.run.smithi033:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-16T23:51:19.240 INFO:teuthology.orchestra.run.smithi033.stderr:1+0 records in 2024-09-16T23:51:19.240 INFO:teuthology.orchestra.run.smithi033.stderr:1+0 records out 2024-09-16T23:51:19.240 INFO:teuthology.orchestra.run.smithi033.stderr:512 bytes copied, 0.000411596 s, 1.2 MB/s 2024-09-16T23:51:19.241 DEBUG:teuthology.orchestra.run.smithi033:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-16T23:51:19.291 DEBUG:teuthology.orchestra.run.smithi033:> stat /dev/vg_nvme/lv_4 2024-09-16T23:51:19.341 INFO:teuthology.orchestra.run.smithi033.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-16T23:51:19.341 INFO:teuthology.orchestra.run.smithi033.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T23:51:19.341 INFO:teuthology.orchestra.run.smithi033.stdout:Device: 5h/5d Inode: 934 Links: 1 2024-09-16T23:51:19.341 INFO:teuthology.orchestra.run.smithi033.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T23:51:19.341 INFO:teuthology.orchestra.run.smithi033.stdout:Access: 2024-09-16 23:41:22.885971020 +0000 2024-09-16T23:51:19.341 INFO:teuthology.orchestra.run.smithi033.stdout:Modify: 2024-09-16 23:41:22.609973472 +0000 2024-09-16T23:51:19.341 INFO:teuthology.orchestra.run.smithi033.stdout:Change: 2024-09-16 23:41:22.609973472 +0000 2024-09-16T23:51:19.341 INFO:teuthology.orchestra.run.smithi033.stdout: Birth: - 2024-09-16T23:51:19.341 DEBUG:teuthology.orchestra.run.smithi033:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-16T23:51:19.396 INFO:teuthology.orchestra.run.smithi033.stderr:1+0 records in 2024-09-16T23:51:19.396 INFO:teuthology.orchestra.run.smithi033.stderr:1+0 records out 2024-09-16T23:51:19.396 INFO:teuthology.orchestra.run.smithi033.stderr:512 bytes copied, 0.00037752 s, 1.4 MB/s 2024-09-16T23:51:19.397 DEBUG:teuthology.orchestra.run.smithi033:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-16T23:51:19.446 DEBUG:teuthology.orchestra.run.smithi089:> set -ex 2024-09-16T23:51:19.446 DEBUG:teuthology.orchestra.run.smithi089:> dd if=/scratch_devs of=/dev/stdout 2024-09-16T23:51:19.451 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-16T23:51:19.451 DEBUG:teuthology.orchestra.run.smithi089:> stat /dev/vg_nvme/lv_1 2024-09-16T23:51:19.494 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:19 smithi089 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:51:19.495 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:19 smithi089 bash[24318]: audit 2024-09-16T23:51:18.174135+0000 mgr.a (mgr.14150) 90 : audit [DBG] from='client.24109 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi033=a;smithi089=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:51:19.495 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:19 smithi089 bash[24318]: cephadm 2024-09-16T23:51:18.177153+0000 mgr.a (mgr.14150) 91 : cephadm [INF] Saving service mgr spec with placement smithi033=a;smithi089=b;count:2 2024-09-16T23:51:19.495 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:19 smithi089 bash[24318]: audit 2024-09-16T23:51:18.908336+0000 mon.a (mon.0) 255 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:19.495 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:19 smithi089 bash[24318]: audit 2024-09-16T23:51:18.909645+0000 mon.a (mon.0) 256 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:51:19.495 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:19 smithi089 bash[24318]: audit 2024-09-16T23:51:18.917883+0000 mon.a (mon.0) 257 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:19.495 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:19 smithi089 bash[24318]: audit 2024-09-16T23:51:18.921106+0000 mon.a (mon.0) 258 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T23:51:19.495 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:19 smithi089 bash[24318]: audit 2024-09-16T23:51:18.923902+0000 mon.a (mon.0) 259 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-16T23:51:19.496 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:19 smithi089 bash[24318]: audit 2024-09-16T23:51:18.929081+0000 mon.a (mon.0) 260 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T23:51:19.496 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:19 smithi089 bash[24318]: audit 2024-09-16T23:51:18.930632+0000 mon.a (mon.0) 261 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:19.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:19 smithi103 bash[24637]: audit 2024-09-16T23:51:18.174135+0000 mgr.a (mgr.14150) 90 : audit [DBG] from='client.24109 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi033=a;smithi089=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:51:19.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:19 smithi103 bash[24637]: cephadm 2024-09-16T23:51:18.177153+0000 mgr.a (mgr.14150) 91 : cephadm [INF] Saving service mgr spec with placement smithi033=a;smithi089=b;count:2 2024-09-16T23:51:19.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:19 smithi103 bash[24637]: audit 2024-09-16T23:51:18.908336+0000 mon.a (mon.0) 255 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:19.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:19 smithi103 bash[24637]: audit 2024-09-16T23:51:18.909645+0000 mon.a (mon.0) 256 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:51:19.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:19 smithi103 bash[24637]: audit 2024-09-16T23:51:18.917883+0000 mon.a (mon.0) 257 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:19.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:19 smithi103 bash[24637]: audit 2024-09-16T23:51:18.921106+0000 mon.a (mon.0) 258 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T23:51:19.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:19 smithi103 bash[24637]: audit 2024-09-16T23:51:18.923902+0000 mon.a (mon.0) 259 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-16T23:51:19.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:19 smithi103 bash[24637]: audit 2024-09-16T23:51:18.929081+0000 mon.a (mon.0) 260 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T23:51:19.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:19 smithi103 bash[24637]: audit 2024-09-16T23:51:18.930632+0000 mon.a (mon.0) 261 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:19.499 INFO:teuthology.orchestra.run.smithi089.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-16T23:51:19.500 INFO:teuthology.orchestra.run.smithi089.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T23:51:19.500 INFO:teuthology.orchestra.run.smithi089.stdout:Device: 5h/5d Inode: 883 Links: 1 2024-09-16T23:51:19.500 INFO:teuthology.orchestra.run.smithi089.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T23:51:19.500 INFO:teuthology.orchestra.run.smithi089.stdout:Access: 2024-09-16 23:41:15.652396081 +0000 2024-09-16T23:51:19.500 INFO:teuthology.orchestra.run.smithi089.stdout:Modify: 2024-09-16 23:41:15.360398690 +0000 2024-09-16T23:51:19.500 INFO:teuthology.orchestra.run.smithi089.stdout:Change: 2024-09-16 23:41:15.360398690 +0000 2024-09-16T23:51:19.500 INFO:teuthology.orchestra.run.smithi089.stdout: Birth: - 2024-09-16T23:51:19.500 DEBUG:teuthology.orchestra.run.smithi089:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-16T23:51:19.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:19 smithi033 bash[22694]: audit 2024-09-16T23:51:18.174135+0000 mgr.a (mgr.14150) 90 : audit [DBG] from='client.24109 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi033=a;smithi089=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:51:19.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:19 smithi033 bash[22694]: cephadm 2024-09-16T23:51:18.177153+0000 mgr.a (mgr.14150) 91 : cephadm [INF] Saving service mgr spec with placement smithi033=a;smithi089=b;count:2 2024-09-16T23:51:19.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:19 smithi033 bash[22694]: audit 2024-09-16T23:51:18.908336+0000 mon.a (mon.0) 255 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:19.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:19 smithi033 bash[22694]: audit 2024-09-16T23:51:18.909645+0000 mon.a (mon.0) 256 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:51:19.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:19 smithi033 bash[22694]: audit 2024-09-16T23:51:18.917883+0000 mon.a (mon.0) 257 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:19.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:19 smithi033 bash[22694]: audit 2024-09-16T23:51:18.921106+0000 mon.a (mon.0) 258 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T23:51:19.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:19 smithi033 bash[22694]: audit 2024-09-16T23:51:18.923902+0000 mon.a (mon.0) 259 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-16T23:51:19.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:19 smithi033 bash[22694]: audit 2024-09-16T23:51:18.929081+0000 mon.a (mon.0) 260 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T23:51:19.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:19 smithi033 bash[22694]: audit 2024-09-16T23:51:18.930632+0000 mon.a (mon.0) 261 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:19.550 INFO:teuthology.orchestra.run.smithi089.stderr:1+0 records in 2024-09-16T23:51:19.550 INFO:teuthology.orchestra.run.smithi089.stderr:1+0 records out 2024-09-16T23:51:19.550 INFO:teuthology.orchestra.run.smithi089.stderr:512 bytes copied, 0.000279505 s, 1.8 MB/s 2024-09-16T23:51:19.551 DEBUG:teuthology.orchestra.run.smithi089:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-16T23:51:19.599 DEBUG:teuthology.orchestra.run.smithi089:> stat /dev/vg_nvme/lv_2 2024-09-16T23:51:19.646 INFO:teuthology.orchestra.run.smithi089.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-16T23:51:19.646 INFO:teuthology.orchestra.run.smithi089.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T23:51:19.646 INFO:teuthology.orchestra.run.smithi089.stdout:Device: 5h/5d Inode: 900 Links: 1 2024-09-16T23:51:19.646 INFO:teuthology.orchestra.run.smithi089.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T23:51:19.646 INFO:teuthology.orchestra.run.smithi089.stdout:Access: 2024-09-16 23:41:16.148391651 +0000 2024-09-16T23:51:19.646 INFO:teuthology.orchestra.run.smithi089.stdout:Modify: 2024-09-16 23:41:15.896393902 +0000 2024-09-16T23:51:19.647 INFO:teuthology.orchestra.run.smithi089.stdout:Change: 2024-09-16 23:41:15.896393902 +0000 2024-09-16T23:51:19.647 INFO:teuthology.orchestra.run.smithi089.stdout: Birth: - 2024-09-16T23:51:19.647 DEBUG:teuthology.orchestra.run.smithi089:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-16T23:51:19.699 INFO:teuthology.orchestra.run.smithi089.stderr:1+0 records in 2024-09-16T23:51:19.699 INFO:teuthology.orchestra.run.smithi089.stderr:1+0 records out 2024-09-16T23:51:19.699 INFO:teuthology.orchestra.run.smithi089.stderr:512 bytes copied, 0.000318128 s, 1.6 MB/s 2024-09-16T23:51:19.700 DEBUG:teuthology.orchestra.run.smithi089:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-16T23:51:19.748 DEBUG:teuthology.orchestra.run.smithi089:> stat /dev/vg_nvme/lv_3 2024-09-16T23:51:19.795 INFO:teuthology.orchestra.run.smithi089.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-16T23:51:19.795 INFO:teuthology.orchestra.run.smithi089.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T23:51:19.795 INFO:teuthology.orchestra.run.smithi089.stdout:Device: 5h/5d Inode: 920 Links: 1 2024-09-16T23:51:19.795 INFO:teuthology.orchestra.run.smithi089.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T23:51:19.795 INFO:teuthology.orchestra.run.smithi089.stdout:Access: 2024-09-16 23:41:16.648387185 +0000 2024-09-16T23:51:19.795 INFO:teuthology.orchestra.run.smithi089.stdout:Modify: 2024-09-16 23:41:16.388389507 +0000 2024-09-16T23:51:19.795 INFO:teuthology.orchestra.run.smithi089.stdout:Change: 2024-09-16 23:41:16.388389507 +0000 2024-09-16T23:51:19.795 INFO:teuthology.orchestra.run.smithi089.stdout: Birth: - 2024-09-16T23:51:19.796 DEBUG:teuthology.orchestra.run.smithi089:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-16T23:51:19.849 INFO:teuthology.orchestra.run.smithi089.stderr:1+0 records in 2024-09-16T23:51:19.849 INFO:teuthology.orchestra.run.smithi089.stderr:1+0 records out 2024-09-16T23:51:19.849 INFO:teuthology.orchestra.run.smithi089.stderr:512 bytes copied, 0.000350663 s, 1.5 MB/s 2024-09-16T23:51:19.851 DEBUG:teuthology.orchestra.run.smithi089:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-16T23:51:19.901 DEBUG:teuthology.orchestra.run.smithi089:> stat /dev/vg_nvme/lv_4 2024-09-16T23:51:19.947 INFO:teuthology.orchestra.run.smithi089.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-16T23:51:19.947 INFO:teuthology.orchestra.run.smithi089.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T23:51:19.947 INFO:teuthology.orchestra.run.smithi089.stdout:Device: 5h/5d Inode: 930 Links: 1 2024-09-16T23:51:19.948 INFO:teuthology.orchestra.run.smithi089.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T23:51:19.948 INFO:teuthology.orchestra.run.smithi089.stdout:Access: 2024-09-16 23:41:17.124382934 +0000 2024-09-16T23:51:19.948 INFO:teuthology.orchestra.run.smithi089.stdout:Modify: 2024-09-16 23:41:16.876385149 +0000 2024-09-16T23:51:19.948 INFO:teuthology.orchestra.run.smithi089.stdout:Change: 2024-09-16 23:41:16.876385149 +0000 2024-09-16T23:51:19.948 INFO:teuthology.orchestra.run.smithi089.stdout: Birth: - 2024-09-16T23:51:19.948 DEBUG:teuthology.orchestra.run.smithi089:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-16T23:51:20.002 INFO:teuthology.orchestra.run.smithi089.stderr:1+0 records in 2024-09-16T23:51:20.002 INFO:teuthology.orchestra.run.smithi089.stderr:1+0 records out 2024-09-16T23:51:20.002 INFO:teuthology.orchestra.run.smithi089.stderr:512 bytes copied, 0.00038368 s, 1.3 MB/s 2024-09-16T23:51:20.003 DEBUG:teuthology.orchestra.run.smithi089:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-16T23:51:20.052 DEBUG:teuthology.orchestra.run.smithi103:> set -ex 2024-09-16T23:51:20.052 DEBUG:teuthology.orchestra.run.smithi103:> dd if=/scratch_devs of=/dev/stdout 2024-09-16T23:51:20.059 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-16T23:51:20.059 DEBUG:teuthology.orchestra.run.smithi103:> stat /dev/vg_nvme/lv_1 2024-09-16T23:51:20.106 INFO:teuthology.orchestra.run.smithi103.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-16T23:51:20.107 INFO:teuthology.orchestra.run.smithi103.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T23:51:20.107 INFO:teuthology.orchestra.run.smithi103.stdout:Device: 5h/5d Inode: 876 Links: 1 2024-09-16T23:51:20.107 INFO:teuthology.orchestra.run.smithi103.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T23:51:20.107 INFO:teuthology.orchestra.run.smithi103.stdout:Access: 2024-09-16 23:41:16.928772435 +0000 2024-09-16T23:51:20.107 INFO:teuthology.orchestra.run.smithi103.stdout:Modify: 2024-09-16 23:41:16.672774721 +0000 2024-09-16T23:51:20.107 INFO:teuthology.orchestra.run.smithi103.stdout:Change: 2024-09-16 23:41:16.672774721 +0000 2024-09-16T23:51:20.107 INFO:teuthology.orchestra.run.smithi103.stdout: Birth: - 2024-09-16T23:51:20.107 DEBUG:teuthology.orchestra.run.smithi103:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-16T23:51:20.161 INFO:teuthology.orchestra.run.smithi103.stderr:1+0 records in 2024-09-16T23:51:20.162 INFO:teuthology.orchestra.run.smithi103.stderr:1+0 records out 2024-09-16T23:51:20.162 INFO:teuthology.orchestra.run.smithi103.stderr:512 bytes copied, 0.000449901 s, 1.1 MB/s 2024-09-16T23:51:20.163 DEBUG:teuthology.orchestra.run.smithi103:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-16T23:51:20.211 DEBUG:teuthology.orchestra.run.smithi103:> stat /dev/vg_nvme/lv_2 2024-09-16T23:51:20.258 INFO:teuthology.orchestra.run.smithi103.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-16T23:51:20.258 INFO:teuthology.orchestra.run.smithi103.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T23:51:20.258 INFO:teuthology.orchestra.run.smithi103.stdout:Device: 5h/5d Inode: 891 Links: 1 2024-09-16T23:51:20.258 INFO:teuthology.orchestra.run.smithi103.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T23:51:20.258 INFO:teuthology.orchestra.run.smithi103.stdout:Access: 2024-09-16 23:41:17.444767826 +0000 2024-09-16T23:51:20.259 INFO:teuthology.orchestra.run.smithi103.stdout:Modify: 2024-09-16 23:41:17.180770184 +0000 2024-09-16T23:51:20.259 INFO:teuthology.orchestra.run.smithi103.stdout:Change: 2024-09-16 23:41:17.180770184 +0000 2024-09-16T23:51:20.259 INFO:teuthology.orchestra.run.smithi103.stdout: Birth: - 2024-09-16T23:51:20.259 DEBUG:teuthology.orchestra.run.smithi103:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-16T23:51:20.312 INFO:teuthology.orchestra.run.smithi103.stderr:1+0 records in 2024-09-16T23:51:20.312 INFO:teuthology.orchestra.run.smithi103.stderr:1+0 records out 2024-09-16T23:51:20.313 INFO:teuthology.orchestra.run.smithi103.stderr:512 bytes copied, 0.000438845 s, 1.2 MB/s 2024-09-16T23:51:20.314 DEBUG:teuthology.orchestra.run.smithi103:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-16T23:51:20.363 DEBUG:teuthology.orchestra.run.smithi103:> stat /dev/vg_nvme/lv_3 2024-09-16T23:51:20.410 INFO:teuthology.orchestra.run.smithi103.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-16T23:51:20.410 INFO:teuthology.orchestra.run.smithi103.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T23:51:20.410 INFO:teuthology.orchestra.run.smithi103.stdout:Device: 5h/5d Inode: 909 Links: 1 2024-09-16T23:51:20.410 INFO:teuthology.orchestra.run.smithi103.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T23:51:20.410 INFO:teuthology.orchestra.run.smithi103.stdout:Access: 2024-09-16 23:41:17.956763252 +0000 2024-09-16T23:51:20.410 INFO:teuthology.orchestra.run.smithi103.stdout:Modify: 2024-09-16 23:41:17.696765576 +0000 2024-09-16T23:51:20.410 INFO:teuthology.orchestra.run.smithi103.stdout:Change: 2024-09-16 23:41:17.696765576 +0000 2024-09-16T23:51:20.410 INFO:teuthology.orchestra.run.smithi103.stdout: Birth: - 2024-09-16T23:51:20.411 DEBUG:teuthology.orchestra.run.smithi103:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-16T23:51:20.462 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:20 smithi103 bash[24637]: cluster 2024-09-16T23:51:18.555572+0000 mgr.a (mgr.14150) 92 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:20.462 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:20 smithi103 bash[24637]: cephadm 2024-09-16T23:51:18.932120+0000 mgr.a (mgr.14150) 93 : cephadm [INF] Deploying daemon mgr.b on smithi089 2024-09-16T23:51:20.464 INFO:teuthology.orchestra.run.smithi103.stderr:1+0 records in 2024-09-16T23:51:20.464 INFO:teuthology.orchestra.run.smithi103.stderr:1+0 records out 2024-09-16T23:51:20.464 INFO:teuthology.orchestra.run.smithi103.stderr:512 bytes copied, 0.000448784 s, 1.1 MB/s 2024-09-16T23:51:20.465 DEBUG:teuthology.orchestra.run.smithi103:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-16T23:51:20.488 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:20 smithi089 bash[24318]: cluster 2024-09-16T23:51:18.555572+0000 mgr.a (mgr.14150) 92 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:20.488 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:20 smithi089 bash[24318]: cephadm 2024-09-16T23:51:18.932120+0000 mgr.a (mgr.14150) 93 : cephadm [INF] Deploying daemon mgr.b on smithi089 2024-09-16T23:51:20.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:20 smithi033 bash[22694]: cluster 2024-09-16T23:51:18.555572+0000 mgr.a (mgr.14150) 92 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:20.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:20 smithi033 bash[22694]: cephadm 2024-09-16T23:51:18.932120+0000 mgr.a (mgr.14150) 93 : cephadm [INF] Deploying daemon mgr.b on smithi089 2024-09-16T23:51:20.515 DEBUG:teuthology.orchestra.run.smithi103:> stat /dev/vg_nvme/lv_4 2024-09-16T23:51:20.562 INFO:teuthology.orchestra.run.smithi103.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-16T23:51:20.562 INFO:teuthology.orchestra.run.smithi103.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T23:51:20.562 INFO:teuthology.orchestra.run.smithi103.stdout:Device: 5h/5d Inode: 922 Links: 1 2024-09-16T23:51:20.562 INFO:teuthology.orchestra.run.smithi103.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T23:51:20.562 INFO:teuthology.orchestra.run.smithi103.stdout:Access: 2024-09-16 23:41:18.424759072 +0000 2024-09-16T23:51:20.562 INFO:teuthology.orchestra.run.smithi103.stdout:Modify: 2024-09-16 23:41:18.180761252 +0000 2024-09-16T23:51:20.562 INFO:teuthology.orchestra.run.smithi103.stdout:Change: 2024-09-16 23:41:18.180761252 +0000 2024-09-16T23:51:20.562 INFO:teuthology.orchestra.run.smithi103.stdout: Birth: - 2024-09-16T23:51:20.562 DEBUG:teuthology.orchestra.run.smithi103:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-16T23:51:20.616 INFO:teuthology.orchestra.run.smithi103.stderr:1+0 records in 2024-09-16T23:51:20.616 INFO:teuthology.orchestra.run.smithi103.stderr:1+0 records out 2024-09-16T23:51:20.616 INFO:teuthology.orchestra.run.smithi103.stderr:512 bytes copied, 0.000376263 s, 1.4 MB/s 2024-09-16T23:51:20.617 DEBUG:teuthology.orchestra.run.smithi103:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-16T23:51:20.667 INFO:tasks.cephadm:Deploying osd.0 on smithi033 with /dev/vg_nvme/lv_4... 2024-09-16T23:51:20.667 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_4 2024-09-16T23:51:21.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:21 smithi089 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:51:21.510 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:21 smithi089 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:51:21.510 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:21 smithi089 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:51:21.510 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:21 smithi089 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:51:22.009 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:21 smithi089 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:51:22.010 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:21 smithi089 systemd[1]: Started Ceph mgr.b for f4fb0768-7485-11ef-bceb-c7b262605968. 2024-09-16T23:51:22.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:21 smithi089 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:51:22.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:22 smithi103 bash[24637]: cluster 2024-09-16T23:51:20.555994+0000 mgr.a (mgr.14150) 94 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:22.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:22 smithi103 bash[24637]: audit 2024-09-16T23:51:21.663949+0000 mon.a (mon.0) 262 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:22.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:22 smithi103 bash[24637]: audit 2024-09-16T23:51:21.671348+0000 mon.a (mon.0) 263 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:22.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:22 smithi103 bash[24637]: audit 2024-09-16T23:51:21.678693+0000 mon.a (mon.0) 264 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:22.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:22 smithi103 bash[24637]: audit 2024-09-16T23:51:21.685729+0000 mon.a (mon.0) 265 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:22.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:22 smithi103 bash[24637]: audit 2024-09-16T23:51:21.774339+0000 mon.a (mon.0) 266 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:51:22.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:22 smithi033 bash[22694]: cluster 2024-09-16T23:51:20.555994+0000 mgr.a (mgr.14150) 94 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:22.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:22 smithi033 bash[22694]: audit 2024-09-16T23:51:21.663949+0000 mon.a (mon.0) 262 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:22.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:22 smithi033 bash[22694]: audit 2024-09-16T23:51:21.671348+0000 mon.a (mon.0) 263 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:22.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:22 smithi033 bash[22694]: audit 2024-09-16T23:51:21.678693+0000 mon.a (mon.0) 264 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:22.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:22 smithi033 bash[22694]: audit 2024-09-16T23:51:21.685729+0000 mon.a (mon.0) 265 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:22.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:22 smithi033 bash[22694]: audit 2024-09-16T23:51:21.774339+0000 mon.a (mon.0) 266 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:51:22.506 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:22 smithi089 bash[24318]: cluster 2024-09-16T23:51:20.555994+0000 mgr.a (mgr.14150) 94 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:22.506 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:22 smithi089 bash[24318]: audit 2024-09-16T23:51:21.663949+0000 mon.a (mon.0) 262 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:22.507 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:22 smithi089 bash[24318]: audit 2024-09-16T23:51:21.671348+0000 mon.a (mon.0) 263 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:22.507 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:22 smithi089 bash[24318]: audit 2024-09-16T23:51:21.678693+0000 mon.a (mon.0) 264 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:22.507 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:22 smithi089 bash[24318]: audit 2024-09-16T23:51:21.685729+0000 mon.a (mon.0) 265 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:22.507 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:22 smithi089 bash[24318]: audit 2024-09-16T23:51:21.774339+0000 mon.a (mon.0) 266 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:51:22.760 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:22 smithi089 bash[24823]: debug 2024-09-16T23:51:22.562+0000 7f81cf0ff640 1 -- 172.21.15.89:0/1347775368 <== mon.2 v2:172.21.15.89:3300/0 4 ==== auth_reply(proto 2 0 (0) Success) ==== 194+0+0 (secure 0 0 0) 0x5648cd88b0e0 con 0x5648cd88d400 2024-09-16T23:51:22.760 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:22 smithi089 bash[24823]: debug 2024-09-16T23:51:22.674+0000 7f81d1969040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-16T23:51:24.239 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:23 smithi089 bash[24823]: debug 2024-09-16T23:51:23.858+0000 7f81d1969040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-16T23:51:24.240 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:23 smithi089 bash[24823]: debug 2024-09-16T23:51:23.922+0000 7f81d1969040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-16T23:51:24.240 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:24 smithi089 bash[24823]: debug 2024-09-16T23:51:24.070+0000 7f81d1969040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-16T23:51:24.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:24 smithi103 bash[24637]: cluster 2024-09-16T23:51:22.556498+0000 mgr.a (mgr.14150) 95 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:24.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:24 smithi033 bash[22694]: cluster 2024-09-16T23:51:22.556498+0000 mgr.a (mgr.14150) 95 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:24.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:24 smithi089 bash[24318]: cluster 2024-09-16T23:51:22.556498+0000 mgr.a (mgr.14150) 95 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:25.009 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:24 smithi089 bash[24823]: debug 2024-09-16T23:51:24.714+0000 7f81d1969040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-16T23:51:25.009 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:24 smithi089 bash[24823]: debug 2024-09-16T23:51:24.782+0000 7f81d1969040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-16T23:51:25.010 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:24 smithi089 bash[24823]: debug 2024-09-16T23:51:24.854+0000 7f81d1969040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-16T23:51:25.404 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:51:25.434 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:25 smithi089 bash[24823]: debug 2024-09-16T23:51:25.038+0000 7f81d1969040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-16T23:51:25.434 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:25 smithi089 bash[24823]: debug 2024-09-16T23:51:25.114+0000 7f81d1969040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-16T23:51:25.434 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:25 smithi089 bash[24823]: debug 2024-09-16T23:51:25.182+0000 7f81d1969040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-16T23:51:25.434 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:25 smithi089 bash[24823]: debug 2024-09-16T23:51:25.434+0000 7f81d1969040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-16T23:51:25.694 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:25 smithi089 bash[24823]: debug 2024-09-16T23:51:25.502+0000 7f81d1969040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-16T23:51:25.694 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:25 smithi089 bash[24823]: debug 2024-09-16T23:51:25.694+0000 7f81d1969040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-16T23:51:26.009 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:25 smithi089 bash[24823]: debug 2024-09-16T23:51:25.770+0000 7f81d1969040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-16T23:51:26.355 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:26 smithi089 bash[24318]: cluster 2024-09-16T23:51:24.556969+0000 mgr.a (mgr.14150) 96 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:26.355 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:26 smithi089 bash[24318]: audit 2024-09-16T23:51:25.128172+0000 mon.a (mon.0) 267 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:26.355 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:26 smithi089 bash[24823]: debug 2024-09-16T23:51:26.018+0000 7f81d1969040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-16T23:51:26.355 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:26 smithi089 bash[24823]: debug 2024-09-16T23:51:26.194+0000 7f81d1969040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-16T23:51:26.355 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:26 smithi089 bash[24823]: debug 2024-09-16T23:51:26.354+0000 7f81d1969040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-16T23:51:26.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:26 smithi103 bash[24637]: cluster 2024-09-16T23:51:24.556969+0000 mgr.a (mgr.14150) 96 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:26.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:26 smithi103 bash[24637]: audit 2024-09-16T23:51:25.128172+0000 mon.a (mon.0) 267 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:26.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:26 smithi033 bash[22694]: cluster 2024-09-16T23:51:24.556969+0000 mgr.a (mgr.14150) 96 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:26.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:26 smithi033 bash[22694]: audit 2024-09-16T23:51:25.128172+0000 mon.a (mon.0) 267 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:26.609 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:26 smithi089 bash[24823]: debug 2024-09-16T23:51:26.434+0000 7f81d1969040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-16T23:51:27.009 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:26 smithi089 bash[24823]: debug 2024-09-16T23:51:26.610+0000 7f81d1969040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-16T23:51:27.720 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:27 smithi089 bash[24823]: debug 2024-09-16T23:51:27.426+0000 7f81d1969040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-16T23:51:27.720 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:27 smithi089 bash[24823]: debug 2024-09-16T23:51:27.502+0000 7f81d1969040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-16T23:51:28.009 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:27 smithi089 bash[24823]: debug 2024-09-16T23:51:27.722+0000 7f81d1969040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-16T23:51:28.010 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:27 smithi089 bash[24823]: debug 2024-09-16T23:51:27.794+0000 7f81d1969040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-16T23:51:28.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:28 smithi103 bash[24637]: cluster 2024-09-16T23:51:26.557327+0000 mgr.a (mgr.14150) 97 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:28.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:28 smithi103 bash[24637]: audit 2024-09-16T23:51:27.043880+0000 mon.a (mon.0) 268 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:28.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:28 smithi103 bash[24637]: audit 2024-09-16T23:51:27.050983+0000 mon.a (mon.0) 269 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:28.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:28 smithi103 bash[24637]: audit 2024-09-16T23:51:27.052664+0000 mon.a (mon.0) 270 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:28.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:28 smithi103 bash[24637]: audit 2024-09-16T23:51:27.054609+0000 mon.a (mon.0) 271 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:51:28.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:28 smithi103 bash[24637]: audit 2024-09-16T23:51:27.065399+0000 mon.a (mon.0) 272 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:28.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:28 smithi103 bash[24637]: cephadm 2024-09-16T23:51:27.154628+0000 mgr.a (mgr.14150) 98 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-16T23:51:28.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:28 smithi103 bash[24637]: audit 2024-09-16T23:51:27.155391+0000 mon.a (mon.0) 273 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T23:51:28.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:28 smithi103 bash[24637]: audit 2024-09-16T23:51:27.157436+0000 mon.a (mon.0) 274 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T23:51:28.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:28 smithi103 bash[24637]: audit 2024-09-16T23:51:27.159116+0000 mon.a (mon.0) 275 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:28.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:28 smithi103 bash[24637]: cephadm 2024-09-16T23:51:27.161003+0000 mgr.a (mgr.14150) 99 : cephadm [INF] Reconfiguring daemon mgr.a on smithi033 2024-09-16T23:51:28.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:28 smithi033 bash[22694]: cluster 2024-09-16T23:51:26.557327+0000 mgr.a (mgr.14150) 97 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:28.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:28 smithi033 bash[22694]: audit 2024-09-16T23:51:27.043880+0000 mon.a (mon.0) 268 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:28.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:28 smithi033 bash[22694]: audit 2024-09-16T23:51:27.050983+0000 mon.a (mon.0) 269 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:28.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:28 smithi033 bash[22694]: audit 2024-09-16T23:51:27.052664+0000 mon.a (mon.0) 270 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:28.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:28 smithi033 bash[22694]: audit 2024-09-16T23:51:27.054609+0000 mon.a (mon.0) 271 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:51:28.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:28 smithi033 bash[22694]: audit 2024-09-16T23:51:27.065399+0000 mon.a (mon.0) 272 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:28.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:28 smithi033 bash[22694]: cephadm 2024-09-16T23:51:27.154628+0000 mgr.a (mgr.14150) 98 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-16T23:51:28.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:28 smithi033 bash[22694]: audit 2024-09-16T23:51:27.155391+0000 mon.a (mon.0) 273 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T23:51:28.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:28 smithi033 bash[22694]: audit 2024-09-16T23:51:27.157436+0000 mon.a (mon.0) 274 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T23:51:28.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:28 smithi033 bash[22694]: audit 2024-09-16T23:51:27.159116+0000 mon.a (mon.0) 275 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:28.503 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:28 smithi033 bash[22694]: cephadm 2024-09-16T23:51:27.161003+0000 mgr.a (mgr.14150) 99 : cephadm [INF] Reconfiguring daemon mgr.a on smithi033 2024-09-16T23:51:28.509 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:28 smithi089 bash[24823]: debug 2024-09-16T23:51:28.182+0000 7f81d1969040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-16T23:51:28.509 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:51:28 smithi089 bash[24823]: debug 2024-09-16T23:51:28.258+0000 7f81d1969040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-16T23:51:28.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:28 smithi089 bash[24318]: cluster 2024-09-16T23:51:26.557327+0000 mgr.a (mgr.14150) 97 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:28.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:28 smithi089 bash[24318]: audit 2024-09-16T23:51:27.043880+0000 mon.a (mon.0) 268 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:28.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:28 smithi089 bash[24318]: audit 2024-09-16T23:51:27.050983+0000 mon.a (mon.0) 269 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:28.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:28 smithi089 bash[24318]: audit 2024-09-16T23:51:27.052664+0000 mon.a (mon.0) 270 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:28.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:28 smithi089 bash[24318]: audit 2024-09-16T23:51:27.054609+0000 mon.a (mon.0) 271 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:51:28.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:28 smithi089 bash[24318]: audit 2024-09-16T23:51:27.065399+0000 mon.a (mon.0) 272 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:28.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:28 smithi089 bash[24318]: cephadm 2024-09-16T23:51:27.154628+0000 mgr.a (mgr.14150) 98 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-16T23:51:28.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:28 smithi089 bash[24318]: audit 2024-09-16T23:51:27.155391+0000 mon.a (mon.0) 273 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T23:51:28.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:28 smithi089 bash[24318]: audit 2024-09-16T23:51:27.157436+0000 mon.a (mon.0) 274 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T23:51:28.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:28 smithi089 bash[24318]: audit 2024-09-16T23:51:27.159116+0000 mon.a (mon.0) 275 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:28.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:28 smithi089 bash[24318]: cephadm 2024-09-16T23:51:27.161003+0000 mgr.a (mgr.14150) 99 : cephadm [INF] Reconfiguring daemon mgr.a on smithi033 2024-09-16T23:51:29.329 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:29 smithi033 bash[22694]: cluster 2024-09-16T23:51:28.282552+0000 mon.a (mon.0) 276 : cluster [DBG] Standby manager daemon b started 2024-09-16T23:51:29.329 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:29 smithi033 bash[22694]: audit 2024-09-16T23:51:28.283087+0000 mon.b (mon.2) 2 : audit [DBG] from='mgr.? 172.21.15.89:0/3544502396' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-16T23:51:29.329 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:29 smithi033 bash[22694]: audit 2024-09-16T23:51:28.283630+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.89:0/3544502396' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-16T23:51:29.329 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:29 smithi033 bash[22694]: audit 2024-09-16T23:51:28.284655+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.89:0/3544502396' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-16T23:51:29.329 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:29 smithi033 bash[22694]: audit 2024-09-16T23:51:28.285049+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.89:0/3544502396' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-16T23:51:29.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:29 smithi103 bash[24637]: cluster 2024-09-16T23:51:28.282552+0000 mon.a (mon.0) 276 : cluster [DBG] Standby manager daemon b started 2024-09-16T23:51:29.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:29 smithi103 bash[24637]: audit 2024-09-16T23:51:28.283087+0000 mon.b (mon.2) 2 : audit [DBG] from='mgr.? 172.21.15.89:0/3544502396' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-16T23:51:29.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:29 smithi103 bash[24637]: audit 2024-09-16T23:51:28.283630+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.89:0/3544502396' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-16T23:51:29.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:29 smithi103 bash[24637]: audit 2024-09-16T23:51:28.284655+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.89:0/3544502396' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-16T23:51:29.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:29 smithi103 bash[24637]: audit 2024-09-16T23:51:28.285049+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.89:0/3544502396' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-16T23:51:29.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:29 smithi089 bash[24318]: cluster 2024-09-16T23:51:28.282552+0000 mon.a (mon.0) 276 : cluster [DBG] Standby manager daemon b started 2024-09-16T23:51:29.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:29 smithi089 bash[24318]: audit 2024-09-16T23:51:28.283087+0000 mon.b (mon.2) 2 : audit [DBG] from='mgr.? 172.21.15.89:0/3544502396' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-16T23:51:29.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:29 smithi089 bash[24318]: audit 2024-09-16T23:51:28.283630+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.89:0/3544502396' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-16T23:51:29.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:29 smithi089 bash[24318]: audit 2024-09-16T23:51:28.284655+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.89:0/3544502396' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-16T23:51:29.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:29 smithi089 bash[24318]: audit 2024-09-16T23:51:28.285049+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.89:0/3544502396' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-16T23:51:29.750 INFO:teuthology.orchestra.run.smithi033.stdout: 2024-09-16T23:51:29.787 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi033:vg_nvme/lv_4 2024-09-16T23:51:30.252 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:30 smithi033 bash[22694]: cluster 2024-09-16T23:51:28.557720+0000 mgr.a (mgr.14150) 100 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:30.252 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:30 smithi033 bash[22694]: cluster 2024-09-16T23:51:29.056988+0000 mon.a (mon.0) 277 : cluster [DBG] mgrmap e14: a(active, since 116s), standbys: b 2024-09-16T23:51:30.253 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:30 smithi033 bash[22694]: audit 2024-09-16T23:51:29.057302+0000 mon.a (mon.0) 278 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-16T23:51:30.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:30 smithi103 bash[24637]: cluster 2024-09-16T23:51:28.557720+0000 mgr.a (mgr.14150) 100 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:30.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:30 smithi103 bash[24637]: cluster 2024-09-16T23:51:29.056988+0000 mon.a (mon.0) 277 : cluster [DBG] mgrmap e14: a(active, since 116s), standbys: b 2024-09-16T23:51:30.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:30 smithi103 bash[24637]: audit 2024-09-16T23:51:29.057302+0000 mon.a (mon.0) 278 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-16T23:51:30.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:30 smithi089 bash[24318]: cluster 2024-09-16T23:51:28.557720+0000 mgr.a (mgr.14150) 100 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:30.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:30 smithi089 bash[24318]: cluster 2024-09-16T23:51:29.056988+0000 mon.a (mon.0) 277 : cluster [DBG] mgrmap e14: a(active, since 116s), standbys: b 2024-09-16T23:51:30.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:30 smithi089 bash[24318]: audit 2024-09-16T23:51:29.057302+0000 mon.a (mon.0) 278 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-16T23:51:32.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:32 smithi103 bash[24637]: cluster 2024-09-16T23:51:30.558132+0000 mgr.a (mgr.14150) 101 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:32.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:32 smithi103 bash[24637]: audit 2024-09-16T23:51:31.628281+0000 mon.a (mon.0) 279 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:32.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:32 smithi103 bash[24637]: audit 2024-09-16T23:51:31.634832+0000 mon.a (mon.0) 280 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:32.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:32 smithi103 bash[24637]: audit 2024-09-16T23:51:31.637560+0000 mon.a (mon.0) 281 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:51:32.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:32 smithi033 bash[22694]: cluster 2024-09-16T23:51:30.558132+0000 mgr.a (mgr.14150) 101 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:32.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:32 smithi033 bash[22694]: audit 2024-09-16T23:51:31.628281+0000 mon.a (mon.0) 279 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:32.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:32 smithi033 bash[22694]: audit 2024-09-16T23:51:31.634832+0000 mon.a (mon.0) 280 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:32.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:32 smithi033 bash[22694]: audit 2024-09-16T23:51:31.637560+0000 mon.a (mon.0) 281 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:51:32.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:32 smithi089 bash[24318]: cluster 2024-09-16T23:51:30.558132+0000 mgr.a (mgr.14150) 101 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:32.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:32 smithi089 bash[24318]: audit 2024-09-16T23:51:31.628281+0000 mon.a (mon.0) 279 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:32.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:32 smithi089 bash[24318]: audit 2024-09-16T23:51:31.634832+0000 mon.a (mon.0) 280 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:32.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:32 smithi089 bash[24318]: audit 2024-09-16T23:51:31.637560+0000 mon.a (mon.0) 281 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:51:33.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:33 smithi103 bash[24637]: audit 2024-09-16T23:51:32.344925+0000 mon.a (mon.0) 282 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:33.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:33 smithi103 bash[24637]: audit 2024-09-16T23:51:32.346660+0000 mon.a (mon.0) 283 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:51:33.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:33 smithi103 bash[24637]: audit 2024-09-16T23:51:32.356489+0000 mon.a (mon.0) 284 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:33.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:33 smithi033 bash[22694]: audit 2024-09-16T23:51:32.344925+0000 mon.a (mon.0) 282 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:33.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:33 smithi033 bash[22694]: audit 2024-09-16T23:51:32.346660+0000 mon.a (mon.0) 283 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:51:33.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:33 smithi033 bash[22694]: audit 2024-09-16T23:51:32.356489+0000 mon.a (mon.0) 284 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:33.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:33 smithi089 bash[24318]: audit 2024-09-16T23:51:32.344925+0000 mon.a (mon.0) 282 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:33.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:33 smithi089 bash[24318]: audit 2024-09-16T23:51:32.346660+0000 mon.a (mon.0) 283 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:51:33.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:33 smithi089 bash[24318]: audit 2024-09-16T23:51:32.356489+0000 mon.a (mon.0) 284 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:51:34.575 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:51:34.673 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:34 smithi033 bash[22694]: cluster 2024-09-16T23:51:32.558525+0000 mgr.a (mgr.14150) 102 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:34.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:34 smithi103 bash[24637]: cluster 2024-09-16T23:51:32.558525+0000 mgr.a (mgr.14150) 102 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:34.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:34 smithi089 bash[24318]: cluster 2024-09-16T23:51:32.558525+0000 mgr.a (mgr.14150) 102 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:36.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:36 smithi103 bash[24637]: cluster 2024-09-16T23:51:34.558954+0000 mgr.a (mgr.14150) 103 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:36.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:36 smithi103 bash[24637]: audit 2024-09-16T23:51:36.130658+0000 mon.a (mon.0) 285 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T23:51:36.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:36 smithi103 bash[24637]: audit 2024-09-16T23:51:36.134473+0000 mon.a (mon.0) 286 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T23:51:36.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:36 smithi103 bash[24637]: audit 2024-09-16T23:51:36.135460+0000 mon.a (mon.0) 287 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:36.752 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:36 smithi033 bash[22694]: cluster 2024-09-16T23:51:34.558954+0000 mgr.a (mgr.14150) 103 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:36.752 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:36 smithi033 bash[22694]: audit 2024-09-16T23:51:36.130658+0000 mon.a (mon.0) 285 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T23:51:36.752 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:36 smithi033 bash[22694]: audit 2024-09-16T23:51:36.134473+0000 mon.a (mon.0) 286 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T23:51:36.752 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:36 smithi033 bash[22694]: audit 2024-09-16T23:51:36.135460+0000 mon.a (mon.0) 287 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:36.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:36 smithi089 bash[24318]: cluster 2024-09-16T23:51:34.558954+0000 mgr.a (mgr.14150) 103 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:36.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:36 smithi089 bash[24318]: audit 2024-09-16T23:51:36.130658+0000 mon.a (mon.0) 285 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T23:51:36.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:36 smithi089 bash[24318]: audit 2024-09-16T23:51:36.134473+0000 mon.a (mon.0) 286 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T23:51:36.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:36 smithi089 bash[24318]: audit 2024-09-16T23:51:36.135460+0000 mon.a (mon.0) 287 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:37.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:37 smithi103 bash[24637]: audit 2024-09-16T23:51:36.125781+0000 mgr.a (mgr.14150) 104 : audit [DBG] from='client.14205 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi033:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:51:37.752 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:37 smithi033 bash[22694]: audit 2024-09-16T23:51:36.125781+0000 mgr.a (mgr.14150) 104 : audit [DBG] from='client.14205 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi033:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:51:37.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:37 smithi089 bash[24318]: audit 2024-09-16T23:51:36.125781+0000 mgr.a (mgr.14150) 104 : audit [DBG] from='client.14205 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi033:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:51:38.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:38 smithi103 bash[24637]: cluster 2024-09-16T23:51:36.559336+0000 mgr.a (mgr.14150) 105 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:38.752 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:38 smithi033 bash[22694]: cluster 2024-09-16T23:51:36.559336+0000 mgr.a (mgr.14150) 105 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:38.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:38 smithi089 bash[24318]: cluster 2024-09-16T23:51:36.559336+0000 mgr.a (mgr.14150) 105 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:40.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:40 smithi103 bash[24637]: cluster 2024-09-16T23:51:38.559813+0000 mgr.a (mgr.14150) 106 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:40.752 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:40 smithi033 bash[22694]: cluster 2024-09-16T23:51:38.559813+0000 mgr.a (mgr.14150) 106 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:40.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:40 smithi089 bash[24318]: cluster 2024-09-16T23:51:38.559813+0000 mgr.a (mgr.14150) 106 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:42.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:42 smithi033 bash[22694]: cluster 2024-09-16T23:51:40.560267+0000 mgr.a (mgr.14150) 107 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:42.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:42 smithi103 bash[24637]: cluster 2024-09-16T23:51:40.560267+0000 mgr.a (mgr.14150) 107 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:42.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:42 smithi089 bash[24318]: cluster 2024-09-16T23:51:40.560267+0000 mgr.a (mgr.14150) 107 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:44.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:44 smithi103 bash[24637]: cluster 2024-09-16T23:51:42.560682+0000 mgr.a (mgr.14150) 108 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:44.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:44 smithi033 bash[22694]: cluster 2024-09-16T23:51:42.560682+0000 mgr.a (mgr.14150) 108 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:44.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:44 smithi089 bash[24318]: cluster 2024-09-16T23:51:42.560682+0000 mgr.a (mgr.14150) 108 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:45.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:45 smithi103 bash[24637]: audit 2024-09-16T23:51:44.704174+0000 mon.a (mon.0) 288 : audit [INF] from='client.? 172.21.15.33:0/1325538518' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "04f3a09b-685a-4fab-9fb1-a4a282f45e63"}]: dispatch 2024-09-16T23:51:45.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:45 smithi103 bash[24637]: audit 2024-09-16T23:51:44.707009+0000 mon.a (mon.0) 289 : audit [INF] from='client.? 172.21.15.33:0/1325538518' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "04f3a09b-685a-4fab-9fb1-a4a282f45e63"}]': finished 2024-09-16T23:51:45.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:45 smithi103 bash[24637]: cluster 2024-09-16T23:51:44.711523+0000 mon.a (mon.0) 290 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-16T23:51:45.747 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:45 smithi103 bash[24637]: audit 2024-09-16T23:51:44.711915+0000 mon.a (mon.0) 291 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T23:51:45.747 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:45 smithi103 bash[24637]: audit 2024-09-16T23:51:45.358124+0000 mon.a (mon.0) 292 : audit [DBG] from='client.? 172.21.15.33:0/1303839896' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T23:51:45.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:45 smithi033 bash[22694]: audit 2024-09-16T23:51:44.704174+0000 mon.a (mon.0) 288 : audit [INF] from='client.? 172.21.15.33:0/1325538518' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "04f3a09b-685a-4fab-9fb1-a4a282f45e63"}]: dispatch 2024-09-16T23:51:45.752 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:45 smithi033 bash[22694]: audit 2024-09-16T23:51:44.707009+0000 mon.a (mon.0) 289 : audit [INF] from='client.? 172.21.15.33:0/1325538518' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "04f3a09b-685a-4fab-9fb1-a4a282f45e63"}]': finished 2024-09-16T23:51:45.752 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:45 smithi033 bash[22694]: cluster 2024-09-16T23:51:44.711523+0000 mon.a (mon.0) 290 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-16T23:51:45.752 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:45 smithi033 bash[22694]: audit 2024-09-16T23:51:44.711915+0000 mon.a (mon.0) 291 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T23:51:45.752 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:45 smithi033 bash[22694]: audit 2024-09-16T23:51:45.358124+0000 mon.a (mon.0) 292 : audit [DBG] from='client.? 172.21.15.33:0/1303839896' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T23:51:45.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:45 smithi089 bash[24318]: audit 2024-09-16T23:51:44.704174+0000 mon.a (mon.0) 288 : audit [INF] from='client.? 172.21.15.33:0/1325538518' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "04f3a09b-685a-4fab-9fb1-a4a282f45e63"}]: dispatch 2024-09-16T23:51:45.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:45 smithi089 bash[24318]: audit 2024-09-16T23:51:44.707009+0000 mon.a (mon.0) 289 : audit [INF] from='client.? 172.21.15.33:0/1325538518' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "04f3a09b-685a-4fab-9fb1-a4a282f45e63"}]': finished 2024-09-16T23:51:45.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:45 smithi089 bash[24318]: cluster 2024-09-16T23:51:44.711523+0000 mon.a (mon.0) 290 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-16T23:51:45.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:45 smithi089 bash[24318]: audit 2024-09-16T23:51:44.711915+0000 mon.a (mon.0) 291 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T23:51:45.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:45 smithi089 bash[24318]: audit 2024-09-16T23:51:45.358124+0000 mon.a (mon.0) 292 : audit [DBG] from='client.? 172.21.15.33:0/1303839896' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T23:51:46.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:46 smithi103 bash[24637]: cluster 2024-09-16T23:51:44.560957+0000 mgr.a (mgr.14150) 109 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:46.752 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:46 smithi033 bash[22694]: cluster 2024-09-16T23:51:44.560957+0000 mgr.a (mgr.14150) 109 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:46.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:46 smithi089 bash[24318]: cluster 2024-09-16T23:51:44.560957+0000 mgr.a (mgr.14150) 109 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:48.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:48 smithi103 bash[24637]: cluster 2024-09-16T23:51:46.561330+0000 mgr.a (mgr.14150) 110 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:48.752 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:48 smithi033 bash[22694]: cluster 2024-09-16T23:51:46.561330+0000 mgr.a (mgr.14150) 110 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:48.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:48 smithi089 bash[24318]: cluster 2024-09-16T23:51:46.561330+0000 mgr.a (mgr.14150) 110 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:50.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:50 smithi103 bash[24637]: cluster 2024-09-16T23:51:48.561724+0000 mgr.a (mgr.14150) 111 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:50.752 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:50 smithi033 bash[22694]: cluster 2024-09-16T23:51:48.561724+0000 mgr.a (mgr.14150) 111 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:50.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:50 smithi089 bash[24318]: cluster 2024-09-16T23:51:48.561724+0000 mgr.a (mgr.14150) 111 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:52.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:52 smithi103 bash[24637]: cluster 2024-09-16T23:51:50.562195+0000 mgr.a (mgr.14150) 112 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:52.752 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:52 smithi033 bash[22694]: cluster 2024-09-16T23:51:50.562195+0000 mgr.a (mgr.14150) 112 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:52.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:52 smithi089 bash[24318]: cluster 2024-09-16T23:51:50.562195+0000 mgr.a (mgr.14150) 112 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:54.660 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:54 smithi033 bash[22694]: cluster 2024-09-16T23:51:52.562523+0000 mgr.a (mgr.14150) 113 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:54.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:54 smithi103 bash[24637]: cluster 2024-09-16T23:51:52.562523+0000 mgr.a (mgr.14150) 113 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:54.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:54 smithi089 bash[24318]: cluster 2024-09-16T23:51:52.562523+0000 mgr.a (mgr.14150) 113 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:56.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:56 smithi103 bash[24637]: cluster 2024-09-16T23:51:54.562923+0000 mgr.a (mgr.14150) 114 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:56.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:56 smithi033 bash[22694]: cluster 2024-09-16T23:51:54.562923+0000 mgr.a (mgr.14150) 114 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:56.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:56 smithi089 bash[24318]: cluster 2024-09-16T23:51:54.562923+0000 mgr.a (mgr.14150) 114 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:51:58.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:58 smithi103 bash[24637]: cluster 2024-09-16T23:51:56.563342+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-16T23:51:58.747 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:58 smithi103 bash[24637]: audit 2024-09-16T23:51:58.247681+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-16T23:51:58.747 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:58 smithi103 bash[24637]: audit 2024-09-16T23:51:58.249580+0000 mon.a (mon.0) 294 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:58.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:58 smithi033 bash[22694]: cluster 2024-09-16T23:51:56.563342+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-16T23:51:58.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:58 smithi033 bash[22694]: audit 2024-09-16T23:51:58.247681+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-16T23:51:58.752 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:58 smithi033 bash[22694]: audit 2024-09-16T23:51:58.249580+0000 mon.a (mon.0) 294 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:58.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:58 smithi089 bash[24318]: cluster 2024-09-16T23:51:56.563342+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-16T23:51:58.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:58 smithi089 bash[24318]: audit 2024-09-16T23:51:58.247681+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-16T23:51:58.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:58 smithi089 bash[24318]: audit 2024-09-16T23:51:58.249580+0000 mon.a (mon.0) 294 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:51:59.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:51:59 smithi103 bash[24637]: cephadm 2024-09-16T23:51:58.251101+0000 mgr.a (mgr.14150) 116 : cephadm [INF] Deploying daemon osd.0 on smithi033 2024-09-16T23:51:59.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:51:59 smithi033 bash[22694]: cephadm 2024-09-16T23:51:58.251101+0000 mgr.a (mgr.14150) 116 : cephadm [INF] Deploying daemon osd.0 on smithi033 2024-09-16T23:51:59.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:51:59 smithi089 bash[24318]: cephadm 2024-09-16T23:51:58.251101+0000 mgr.a (mgr.14150) 116 : cephadm [INF] Deploying daemon osd.0 on smithi033 2024-09-16T23:52:00.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:00 smithi103 bash[24637]: cluster 2024-09-16T23:51:58.563723+0000 mgr.a (mgr.14150) 117 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:00.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:00 smithi033 bash[22694]: cluster 2024-09-16T23:51:58.563723+0000 mgr.a (mgr.14150) 117 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:00.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:00 smithi089 bash[24318]: cluster 2024-09-16T23:51:58.563723+0000 mgr.a (mgr.14150) 117 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:02.730 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:02 smithi033 bash[22694]: cluster 2024-09-16T23:52:00.564124+0000 mgr.a (mgr.14150) 118 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:02.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:02 smithi103 bash[24637]: cluster 2024-09-16T23:52:00.564124+0000 mgr.a (mgr.14150) 118 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:02.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:02 smithi089 bash[24318]: cluster 2024-09-16T23:52:00.564124+0000 mgr.a (mgr.14150) 118 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:02.986 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:52:02 smithi033 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:52:02.986 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:02 smithi033 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:52:03.251 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:52:03 smithi033 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:52:03.252 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:03 smithi033 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:52:03.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:03 smithi103 bash[24637]: audit 2024-09-16T23:52:03.267124+0000 mon.a (mon.0) 295 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:52:03.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:03 smithi103 bash[24637]: audit 2024-09-16T23:52:03.271170+0000 mon.a (mon.0) 296 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:03.747 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:03 smithi103 bash[24637]: audit 2024-09-16T23:52:03.276554+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:03.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:03 smithi033 bash[22694]: audit 2024-09-16T23:52:03.267124+0000 mon.a (mon.0) 295 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:52:03.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:03 smithi033 bash[22694]: audit 2024-09-16T23:52:03.271170+0000 mon.a (mon.0) 296 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:03.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:03 smithi033 bash[22694]: audit 2024-09-16T23:52:03.276554+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:03.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:03 smithi089 bash[24318]: audit 2024-09-16T23:52:03.267124+0000 mon.a (mon.0) 295 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:52:03.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:03 smithi089 bash[24318]: audit 2024-09-16T23:52:03.271170+0000 mon.a (mon.0) 296 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:03.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:03 smithi089 bash[24318]: audit 2024-09-16T23:52:03.276554+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:04.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:04 smithi103 bash[24637]: cluster 2024-09-16T23:52:02.564579+0000 mgr.a (mgr.14150) 119 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:04.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:04 smithi033 bash[22694]: cluster 2024-09-16T23:52:02.564579+0000 mgr.a (mgr.14150) 119 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:04.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:04 smithi089 bash[24318]: cluster 2024-09-16T23:52:02.564579+0000 mgr.a (mgr.14150) 119 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:06.531 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:06 smithi033 bash[22694]: cluster 2024-09-16T23:52:04.564959+0000 mgr.a (mgr.14150) 120 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:06.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:06 smithi103 bash[24637]: cluster 2024-09-16T23:52:04.564959+0000 mgr.a (mgr.14150) 120 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:06.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:06 smithi089 bash[24318]: cluster 2024-09-16T23:52:04.564959+0000 mgr.a (mgr.14150) 120 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:08.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:08 smithi103 bash[24637]: cluster 2024-09-16T23:52:06.565393+0000 mgr.a (mgr.14150) 121 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:08.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:08 smithi033 bash[22694]: cluster 2024-09-16T23:52:06.565393+0000 mgr.a (mgr.14150) 121 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:08.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:08 smithi089 bash[24318]: cluster 2024-09-16T23:52:06.565393+0000 mgr.a (mgr.14150) 121 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:09.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:09 smithi103 bash[24637]: cluster 2024-09-16T23:52:08.565717+0000 mgr.a (mgr.14150) 122 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:09.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:09 smithi103 bash[24637]: audit 2024-09-16T23:52:08.723483+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:09.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:09 smithi103 bash[24637]: audit 2024-09-16T23:52:08.727941+0000 mon.a (mon.0) 299 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:09.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:09 smithi103 bash[24637]: audit 2024-09-16T23:52:09.367423+0000 mon.a (mon.0) 300 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:52:09.998 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:09 smithi103 bash[24637]: audit 2024-09-16T23:52:09.368165+0000 mon.a (mon.0) 301 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:52:09.998 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:09 smithi103 bash[24637]: audit 2024-09-16T23:52:09.372695+0000 mon.a (mon.0) 302 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:10.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:09 smithi033 bash[22694]: cluster 2024-09-16T23:52:08.565717+0000 mgr.a (mgr.14150) 122 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:10.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:09 smithi033 bash[22694]: audit 2024-09-16T23:52:08.723483+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:10.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:09 smithi033 bash[22694]: audit 2024-09-16T23:52:08.727941+0000 mon.a (mon.0) 299 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:10.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:09 smithi033 bash[22694]: audit 2024-09-16T23:52:09.367423+0000 mon.a (mon.0) 300 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:52:10.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:09 smithi033 bash[22694]: audit 2024-09-16T23:52:09.368165+0000 mon.a (mon.0) 301 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:52:10.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:09 smithi033 bash[22694]: audit 2024-09-16T23:52:09.372695+0000 mon.a (mon.0) 302 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:10.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:09 smithi089 bash[24318]: cluster 2024-09-16T23:52:08.565717+0000 mgr.a (mgr.14150) 122 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:10.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:09 smithi089 bash[24318]: audit 2024-09-16T23:52:08.723483+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:10.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:09 smithi089 bash[24318]: audit 2024-09-16T23:52:08.727941+0000 mon.a (mon.0) 299 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:10.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:09 smithi089 bash[24318]: audit 2024-09-16T23:52:09.367423+0000 mon.a (mon.0) 300 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:52:10.012 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:09 smithi089 bash[24318]: audit 2024-09-16T23:52:09.368165+0000 mon.a (mon.0) 301 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:52:10.012 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:09 smithi089 bash[24318]: audit 2024-09-16T23:52:09.372695+0000 mon.a (mon.0) 302 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:11.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:11 smithi033 bash[22694]: cluster 2024-09-16T23:52:10.566139+0000 mgr.a (mgr.14150) 123 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:11.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:11 smithi103 bash[24637]: cluster 2024-09-16T23:52:10.566139+0000 mgr.a (mgr.14150) 123 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:12.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:11 smithi089 bash[24318]: cluster 2024-09-16T23:52:10.566139+0000 mgr.a (mgr.14150) 123 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:13.523 INFO:teuthology.orchestra.run.smithi033.stdout:Created osd(s) 0 on host 'smithi033' 2024-09-16T23:52:13.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:13 smithi103 bash[24637]: cluster 2024-09-16T23:52:12.566568+0000 mgr.a (mgr.14150) 124 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:13.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:13 smithi103 bash[24637]: audit 2024-09-16T23:52:13.197146+0000 mon.a (mon.0) 303 : audit [INF] from='osd.0 [v2:172.21.15.33:6802/4015228864,v1:172.21.15.33:6803/4015228864]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-16T23:52:13.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:13 smithi103 bash[24637]: audit 2024-09-16T23:52:13.507549+0000 mon.a (mon.0) 304 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:52:13.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:13 smithi103 bash[24637]: audit 2024-09-16T23:52:13.514681+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:13.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:13 smithi103 bash[24637]: audit 2024-09-16T23:52:13.522366+0000 mon.a (mon.0) 306 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:14.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:13 smithi033 bash[22694]: cluster 2024-09-16T23:52:12.566568+0000 mgr.a (mgr.14150) 124 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:14.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:13 smithi033 bash[22694]: audit 2024-09-16T23:52:13.197146+0000 mon.a (mon.0) 303 : audit [INF] from='osd.0 [v2:172.21.15.33:6802/4015228864,v1:172.21.15.33:6803/4015228864]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-16T23:52:14.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:13 smithi033 bash[22694]: audit 2024-09-16T23:52:13.507549+0000 mon.a (mon.0) 304 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:52:14.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:13 smithi033 bash[22694]: audit 2024-09-16T23:52:13.514681+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:14.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:13 smithi033 bash[22694]: audit 2024-09-16T23:52:13.522366+0000 mon.a (mon.0) 306 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:14.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:13 smithi089 bash[24318]: cluster 2024-09-16T23:52:12.566568+0000 mgr.a (mgr.14150) 124 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:14.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:13 smithi089 bash[24318]: audit 2024-09-16T23:52:13.197146+0000 mon.a (mon.0) 303 : audit [INF] from='osd.0 [v2:172.21.15.33:6802/4015228864,v1:172.21.15.33:6803/4015228864]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-16T23:52:14.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:13 smithi089 bash[24318]: audit 2024-09-16T23:52:13.507549+0000 mon.a (mon.0) 304 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:52:14.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:13 smithi089 bash[24318]: audit 2024-09-16T23:52:13.514681+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:14.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:13 smithi089 bash[24318]: audit 2024-09-16T23:52:13.522366+0000 mon.a (mon.0) 306 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:14.221 DEBUG:teuthology.orchestra.run.smithi033:osd.0> sudo journalctl -f -n 0 -u ceph-f4fb0768-7485-11ef-bceb-c7b262605968@osd.0.service 2024-09-16T23:52:14.224 INFO:tasks.cephadm:Deploying osd.1 on smithi033 with /dev/vg_nvme/lv_3... 2024-09-16T23:52:14.224 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_3 2024-09-16T23:52:15.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:14 smithi033 bash[22694]: audit 2024-09-16T23:52:13.740218+0000 mon.a (mon.0) 307 : audit [INF] from='osd.0 [v2:172.21.15.33:6802/4015228864,v1:172.21.15.33:6803/4015228864]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-16T23:52:15.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:14 smithi033 bash[22694]: cluster 2024-09-16T23:52:13.745061+0000 mon.a (mon.0) 308 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-16T23:52:15.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:14 smithi033 bash[22694]: audit 2024-09-16T23:52:13.745512+0000 mon.a (mon.0) 309 : audit [INF] from='osd.0 [v2:172.21.15.33:6802/4015228864,v1:172.21.15.33:6803/4015228864]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi033", "root=default"]}]: dispatch 2024-09-16T23:52:15.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:14 smithi033 bash[22694]: audit 2024-09-16T23:52:13.745953+0000 mon.a (mon.0) 310 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T23:52:15.002 INFO:journalctl@ceph.osd.0.smithi033.stdout:Sep 16 23:52:14 smithi033 bash[34876]: debug 2024-09-16T23:52:14.787+0000 7f1553b7a640 -1 osd.0 0 waiting for initial osdmap 2024-09-16T23:52:15.002 INFO:journalctl@ceph.osd.0.smithi033.stdout:Sep 16 23:52:14 smithi033 bash[34876]: debug 2024-09-16T23:52:14.791+0000 7f154f9a2640 -1 osd.0 7 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-16T23:52:15.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:14 smithi089 bash[24318]: audit 2024-09-16T23:52:13.740218+0000 mon.a (mon.0) 307 : audit [INF] from='osd.0 [v2:172.21.15.33:6802/4015228864,v1:172.21.15.33:6803/4015228864]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-16T23:52:15.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:14 smithi089 bash[24318]: cluster 2024-09-16T23:52:13.745061+0000 mon.a (mon.0) 308 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-16T23:52:15.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:14 smithi089 bash[24318]: audit 2024-09-16T23:52:13.745512+0000 mon.a (mon.0) 309 : audit [INF] from='osd.0 [v2:172.21.15.33:6802/4015228864,v1:172.21.15.33:6803/4015228864]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi033", "root=default"]}]: dispatch 2024-09-16T23:52:15.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:14 smithi089 bash[24318]: audit 2024-09-16T23:52:13.745953+0000 mon.a (mon.0) 310 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T23:52:15.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:14 smithi103 bash[24637]: audit 2024-09-16T23:52:13.740218+0000 mon.a (mon.0) 307 : audit [INF] from='osd.0 [v2:172.21.15.33:6802/4015228864,v1:172.21.15.33:6803/4015228864]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-16T23:52:15.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:14 smithi103 bash[24637]: cluster 2024-09-16T23:52:13.745061+0000 mon.a (mon.0) 308 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-16T23:52:15.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:14 smithi103 bash[24637]: audit 2024-09-16T23:52:13.745512+0000 mon.a (mon.0) 309 : audit [INF] from='osd.0 [v2:172.21.15.33:6802/4015228864,v1:172.21.15.33:6803/4015228864]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi033", "root=default"]}]: dispatch 2024-09-16T23:52:15.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:14 smithi103 bash[24637]: audit 2024-09-16T23:52:13.745953+0000 mon.a (mon.0) 310 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T23:52:16.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:15 smithi089 bash[24318]: cluster 2024-09-16T23:52:14.567001+0000 mgr.a (mgr.14150) 125 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:16.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:15 smithi089 bash[24318]: audit 2024-09-16T23:52:14.750332+0000 mon.a (mon.0) 311 : audit [INF] from='osd.0 [v2:172.21.15.33:6802/4015228864,v1:172.21.15.33:6803/4015228864]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi033", "root=default"]}]': finished 2024-09-16T23:52:16.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:15 smithi089 bash[24318]: cluster 2024-09-16T23:52:14.757769+0000 mon.a (mon.0) 312 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-16T23:52:16.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:15 smithi089 bash[24318]: audit 2024-09-16T23:52:14.759022+0000 mon.a (mon.0) 313 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T23:52:16.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:15 smithi089 bash[24318]: audit 2024-09-16T23:52:14.765022+0000 mon.a (mon.0) 314 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T23:52:16.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:15 smithi103 bash[24637]: cluster 2024-09-16T23:52:14.567001+0000 mgr.a (mgr.14150) 125 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:16.248 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:15 smithi103 bash[24637]: audit 2024-09-16T23:52:14.750332+0000 mon.a (mon.0) 311 : audit [INF] from='osd.0 [v2:172.21.15.33:6802/4015228864,v1:172.21.15.33:6803/4015228864]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi033", "root=default"]}]': finished 2024-09-16T23:52:16.248 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:15 smithi103 bash[24637]: cluster 2024-09-16T23:52:14.757769+0000 mon.a (mon.0) 312 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-16T23:52:16.248 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:15 smithi103 bash[24637]: audit 2024-09-16T23:52:14.759022+0000 mon.a (mon.0) 313 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T23:52:16.248 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:15 smithi103 bash[24637]: audit 2024-09-16T23:52:14.765022+0000 mon.a (mon.0) 314 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T23:52:16.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:15 smithi033 bash[22694]: cluster 2024-09-16T23:52:14.567001+0000 mgr.a (mgr.14150) 125 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T23:52:16.252 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:15 smithi033 bash[22694]: audit 2024-09-16T23:52:14.750332+0000 mon.a (mon.0) 311 : audit [INF] from='osd.0 [v2:172.21.15.33:6802/4015228864,v1:172.21.15.33:6803/4015228864]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi033", "root=default"]}]': finished 2024-09-16T23:52:16.252 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:15 smithi033 bash[22694]: cluster 2024-09-16T23:52:14.757769+0000 mon.a (mon.0) 312 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-16T23:52:16.252 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:15 smithi033 bash[22694]: audit 2024-09-16T23:52:14.759022+0000 mon.a (mon.0) 313 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T23:52:16.252 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:15 smithi033 bash[22694]: audit 2024-09-16T23:52:14.765022+0000 mon.a (mon.0) 314 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T23:52:17.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:16 smithi103 bash[24637]: cluster 2024-09-16T23:52:14.159176+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T23:52:17.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:16 smithi103 bash[24637]: cluster 2024-09-16T23:52:14.159240+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T23:52:17.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:16 smithi103 bash[24637]: cluster 2024-09-16T23:52:15.758180+0000 mon.a (mon.0) 315 : cluster [INF] osd.0 [v2:172.21.15.33:6802/4015228864,v1:172.21.15.33:6803/4015228864] boot 2024-09-16T23:52:17.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:16 smithi103 bash[24637]: cluster 2024-09-16T23:52:15.758275+0000 mon.a (mon.0) 316 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-16T23:52:17.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:16 smithi103 bash[24637]: audit 2024-09-16T23:52:15.759295+0000 mon.a (mon.0) 317 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T23:52:17.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:16 smithi033 bash[22694]: cluster 2024-09-16T23:52:14.159176+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T23:52:17.252 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:16 smithi033 bash[22694]: cluster 2024-09-16T23:52:14.159240+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T23:52:17.252 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:16 smithi033 bash[22694]: cluster 2024-09-16T23:52:15.758180+0000 mon.a (mon.0) 315 : cluster [INF] osd.0 [v2:172.21.15.33:6802/4015228864,v1:172.21.15.33:6803/4015228864] boot 2024-09-16T23:52:17.252 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:16 smithi033 bash[22694]: cluster 2024-09-16T23:52:15.758275+0000 mon.a (mon.0) 316 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-16T23:52:17.252 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:16 smithi033 bash[22694]: audit 2024-09-16T23:52:15.759295+0000 mon.a (mon.0) 317 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T23:52:17.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:16 smithi089 bash[24318]: cluster 2024-09-16T23:52:14.159176+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T23:52:17.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:16 smithi089 bash[24318]: cluster 2024-09-16T23:52:14.159240+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T23:52:17.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:16 smithi089 bash[24318]: cluster 2024-09-16T23:52:15.758180+0000 mon.a (mon.0) 315 : cluster [INF] osd.0 [v2:172.21.15.33:6802/4015228864,v1:172.21.15.33:6803/4015228864] boot 2024-09-16T23:52:17.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:16 smithi089 bash[24318]: cluster 2024-09-16T23:52:15.758275+0000 mon.a (mon.0) 316 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-16T23:52:17.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:16 smithi089 bash[24318]: audit 2024-09-16T23:52:15.759295+0000 mon.a (mon.0) 317 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T23:52:18.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:17 smithi103 bash[24637]: cluster 2024-09-16T23:52:16.567359+0000 mgr.a (mgr.14150) 126 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:18.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:17 smithi103 bash[24637]: cluster 2024-09-16T23:52:16.776837+0000 mon.a (mon.0) 318 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-16T23:52:18.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:17 smithi033 bash[22694]: cluster 2024-09-16T23:52:16.567359+0000 mgr.a (mgr.14150) 126 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:18.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:17 smithi033 bash[22694]: cluster 2024-09-16T23:52:16.776837+0000 mon.a (mon.0) 318 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-16T23:52:18.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:17 smithi089 bash[24318]: cluster 2024-09-16T23:52:16.567359+0000 mgr.a (mgr.14150) 126 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:18.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:17 smithi089 bash[24318]: cluster 2024-09-16T23:52:16.776837+0000 mon.a (mon.0) 318 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-16T23:52:18.565 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:52:20.202 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:19 smithi033 bash[22694]: cluster 2024-09-16T23:52:18.567825+0000 mgr.a (mgr.14150) 127 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:20.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:19 smithi103 bash[24637]: cluster 2024-09-16T23:52:18.567825+0000 mgr.a (mgr.14150) 127 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:20.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:19 smithi089 bash[24318]: cluster 2024-09-16T23:52:18.567825+0000 mgr.a (mgr.14150) 127 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:22.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:21 smithi103 bash[24637]: cluster 2024-09-16T23:52:20.568338+0000 mgr.a (mgr.14150) 128 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:22.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:21 smithi033 bash[22694]: cluster 2024-09-16T23:52:20.568338+0000 mgr.a (mgr.14150) 128 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:22.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:21 smithi089 bash[24318]: cluster 2024-09-16T23:52:20.568338+0000 mgr.a (mgr.14150) 128 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:24.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:23 smithi103 bash[24637]: cluster 2024-09-16T23:52:22.568754+0000 mgr.a (mgr.14150) 129 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:24.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:23 smithi033 bash[22694]: cluster 2024-09-16T23:52:22.568754+0000 mgr.a (mgr.14150) 129 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:24.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:23 smithi089 bash[24318]: cluster 2024-09-16T23:52:22.568754+0000 mgr.a (mgr.14150) 129 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:25.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:25 smithi103 bash[24637]: cephadm 2024-09-16T23:52:24.197551+0000 mgr.a (mgr.14150) 130 : cephadm [INF] Detected new or changed devices on smithi033 2024-09-16T23:52:25.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:25 smithi103 bash[24637]: audit 2024-09-16T23:52:24.203369+0000 mon.a (mon.0) 319 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:25.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:25 smithi103 bash[24637]: audit 2024-09-16T23:52:24.207940+0000 mon.a (mon.0) 320 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:25.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:25 smithi103 bash[24637]: audit 2024-09-16T23:52:24.209738+0000 mon.a (mon.0) 321 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:52:25.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:25 smithi103 bash[24637]: cephadm 2024-09-16T23:52:24.210648+0000 mgr.a (mgr.14150) 131 : cephadm [INF] Adjusting osd_memory_target on smithi033 to 17269M 2024-09-16T23:52:25.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:25 smithi103 bash[24637]: audit 2024-09-16T23:52:24.218922+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:25.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:25 smithi103 bash[24637]: audit 2024-09-16T23:52:24.223610+0000 mon.a (mon.0) 323 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:52:25.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:25 smithi103 bash[24637]: audit 2024-09-16T23:52:24.224669+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:52:25.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:25 smithi103 bash[24637]: audit 2024-09-16T23:52:24.231497+0000 mon.a (mon.0) 325 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:25.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:25 smithi033 bash[22694]: cephadm 2024-09-16T23:52:24.197551+0000 mgr.a (mgr.14150) 130 : cephadm [INF] Detected new or changed devices on smithi033 2024-09-16T23:52:25.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:25 smithi033 bash[22694]: audit 2024-09-16T23:52:24.203369+0000 mon.a (mon.0) 319 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:25.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:25 smithi033 bash[22694]: audit 2024-09-16T23:52:24.207940+0000 mon.a (mon.0) 320 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:25.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:25 smithi033 bash[22694]: audit 2024-09-16T23:52:24.209738+0000 mon.a (mon.0) 321 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:52:25.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:25 smithi033 bash[22694]: cephadm 2024-09-16T23:52:24.210648+0000 mgr.a (mgr.14150) 131 : cephadm [INF] Adjusting osd_memory_target on smithi033 to 17269M 2024-09-16T23:52:25.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:25 smithi033 bash[22694]: audit 2024-09-16T23:52:24.218922+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:25.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:25 smithi033 bash[22694]: audit 2024-09-16T23:52:24.223610+0000 mon.a (mon.0) 323 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:52:25.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:25 smithi033 bash[22694]: audit 2024-09-16T23:52:24.224669+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:52:25.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:25 smithi033 bash[22694]: audit 2024-09-16T23:52:24.231497+0000 mon.a (mon.0) 325 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:25.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:25 smithi089 bash[24318]: cephadm 2024-09-16T23:52:24.197551+0000 mgr.a (mgr.14150) 130 : cephadm [INF] Detected new or changed devices on smithi033 2024-09-16T23:52:25.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:25 smithi089 bash[24318]: audit 2024-09-16T23:52:24.203369+0000 mon.a (mon.0) 319 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:25.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:25 smithi089 bash[24318]: audit 2024-09-16T23:52:24.207940+0000 mon.a (mon.0) 320 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:25.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:25 smithi089 bash[24318]: audit 2024-09-16T23:52:24.209738+0000 mon.a (mon.0) 321 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:52:25.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:25 smithi089 bash[24318]: cephadm 2024-09-16T23:52:24.210648+0000 mgr.a (mgr.14150) 131 : cephadm [INF] Adjusting osd_memory_target on smithi033 to 17269M 2024-09-16T23:52:25.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:25 smithi089 bash[24318]: audit 2024-09-16T23:52:24.218922+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:25.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:25 smithi089 bash[24318]: audit 2024-09-16T23:52:24.223610+0000 mon.a (mon.0) 323 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:52:25.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:25 smithi089 bash[24318]: audit 2024-09-16T23:52:24.224669+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:52:25.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:25 smithi089 bash[24318]: audit 2024-09-16T23:52:24.231497+0000 mon.a (mon.0) 325 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:52:26.415 INFO:teuthology.orchestra.run.smithi033.stdout: 2024-09-16T23:52:26.464 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi033:vg_nvme/lv_3 2024-09-16T23:52:26.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:26 smithi103 bash[24637]: cluster 2024-09-16T23:52:24.569117+0000 mgr.a (mgr.14150) 132 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:26.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:26 smithi033 bash[22694]: cluster 2024-09-16T23:52:24.569117+0000 mgr.a (mgr.14150) 132 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:26.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:26 smithi089 bash[24318]: cluster 2024-09-16T23:52:24.569117+0000 mgr.a (mgr.14150) 132 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:28.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:28 smithi103 bash[24637]: cluster 2024-09-16T23:52:26.569444+0000 mgr.a (mgr.14150) 133 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:28.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:28 smithi033 bash[22694]: cluster 2024-09-16T23:52:26.569444+0000 mgr.a (mgr.14150) 133 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:28.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:28 smithi089 bash[24318]: cluster 2024-09-16T23:52:26.569444+0000 mgr.a (mgr.14150) 133 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:30.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:30 smithi103 bash[24637]: cluster 2024-09-16T23:52:28.569856+0000 mgr.a (mgr.14150) 134 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:30.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:30 smithi033 bash[22694]: cluster 2024-09-16T23:52:28.569856+0000 mgr.a (mgr.14150) 134 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:30.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:30 smithi089 bash[24318]: cluster 2024-09-16T23:52:28.569856+0000 mgr.a (mgr.14150) 134 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:31.208 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:52:32.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:32 smithi103 bash[24637]: cluster 2024-09-16T23:52:30.570327+0000 mgr.a (mgr.14150) 135 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:32.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:32 smithi033 bash[22694]: cluster 2024-09-16T23:52:30.570327+0000 mgr.a (mgr.14150) 135 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:32.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:32 smithi089 bash[24318]: cluster 2024-09-16T23:52:30.570327+0000 mgr.a (mgr.14150) 135 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:33.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:33 smithi033 bash[22694]: audit 2024-09-16T23:52:32.733828+0000 mon.a (mon.0) 326 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T23:52:33.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:33 smithi033 bash[22694]: audit 2024-09-16T23:52:32.738884+0000 mon.a (mon.0) 327 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T23:52:33.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:33 smithi033 bash[22694]: audit 2024-09-16T23:52:32.740111+0000 mon.a (mon.0) 328 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:52:33.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:33 smithi089 bash[24318]: audit 2024-09-16T23:52:32.733828+0000 mon.a (mon.0) 326 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T23:52:33.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:33 smithi089 bash[24318]: audit 2024-09-16T23:52:32.738884+0000 mon.a (mon.0) 327 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T23:52:33.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:33 smithi089 bash[24318]: audit 2024-09-16T23:52:32.740111+0000 mon.a (mon.0) 328 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:52:33.747 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:33 smithi103 bash[24637]: audit 2024-09-16T23:52:32.733828+0000 mon.a (mon.0) 326 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T23:52:33.747 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:33 smithi103 bash[24637]: audit 2024-09-16T23:52:32.738884+0000 mon.a (mon.0) 327 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T23:52:33.747 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:33 smithi103 bash[24637]: audit 2024-09-16T23:52:32.740111+0000 mon.a (mon.0) 328 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:52:34.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:34 smithi033 bash[22694]: cluster 2024-09-16T23:52:32.570704+0000 mgr.a (mgr.14150) 136 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:34.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:34 smithi033 bash[22694]: audit 2024-09-16T23:52:32.729213+0000 mgr.a (mgr.14150) 137 : audit [DBG] from='client.14232 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi033:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:52:34.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:34 smithi089 bash[24318]: cluster 2024-09-16T23:52:32.570704+0000 mgr.a (mgr.14150) 136 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:34.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:34 smithi089 bash[24318]: audit 2024-09-16T23:52:32.729213+0000 mgr.a (mgr.14150) 137 : audit [DBG] from='client.14232 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi033:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:52:34.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:34 smithi103 bash[24637]: cluster 2024-09-16T23:52:32.570704+0000 mgr.a (mgr.14150) 136 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:34.747 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:34 smithi103 bash[24637]: audit 2024-09-16T23:52:32.729213+0000 mgr.a (mgr.14150) 137 : audit [DBG] from='client.14232 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi033:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:52:36.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:36 smithi089 bash[24318]: cluster 2024-09-16T23:52:34.571147+0000 mgr.a (mgr.14150) 138 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:36.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:36 smithi103 bash[24637]: cluster 2024-09-16T23:52:34.571147+0000 mgr.a (mgr.14150) 138 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:36.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:36 smithi033 bash[22694]: cluster 2024-09-16T23:52:34.571147+0000 mgr.a (mgr.14150) 138 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:38.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:38 smithi089 bash[24318]: cluster 2024-09-16T23:52:36.571635+0000 mgr.a (mgr.14150) 139 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:38.716 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:38 smithi033 bash[22694]: cluster 2024-09-16T23:52:36.571635+0000 mgr.a (mgr.14150) 139 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:38.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:38 smithi103 bash[24637]: cluster 2024-09-16T23:52:36.571635+0000 mgr.a (mgr.14150) 139 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:40.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:40 smithi103 bash[24637]: cluster 2024-09-16T23:52:38.572109+0000 mgr.a (mgr.14150) 140 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:40.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:40 smithi033 bash[22694]: cluster 2024-09-16T23:52:38.572109+0000 mgr.a (mgr.14150) 140 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:40.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:40 smithi089 bash[24318]: cluster 2024-09-16T23:52:38.572109+0000 mgr.a (mgr.14150) 140 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:41.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:41 smithi103 bash[24637]: audit 2024-09-16T23:52:41.243296+0000 mon.a (mon.0) 329 : audit [INF] from='client.? 172.21.15.33:0/88030630' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1e62e273-a6b4-432b-b9d0-f4cdff282114"}]: dispatch 2024-09-16T23:52:41.747 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:41 smithi103 bash[24637]: audit 2024-09-16T23:52:41.246286+0000 mon.a (mon.0) 330 : audit [INF] from='client.? 172.21.15.33:0/88030630' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1e62e273-a6b4-432b-b9d0-f4cdff282114"}]': finished 2024-09-16T23:52:41.747 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:41 smithi103 bash[24637]: cluster 2024-09-16T23:52:41.253045+0000 mon.a (mon.0) 331 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-16T23:52:41.747 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:41 smithi103 bash[24637]: audit 2024-09-16T23:52:41.253352+0000 mon.a (mon.0) 332 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T23:52:41.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:41 smithi033 bash[22694]: audit 2024-09-16T23:52:41.243296+0000 mon.a (mon.0) 329 : audit [INF] from='client.? 172.21.15.33:0/88030630' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1e62e273-a6b4-432b-b9d0-f4cdff282114"}]: dispatch 2024-09-16T23:52:41.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:41 smithi033 bash[22694]: audit 2024-09-16T23:52:41.246286+0000 mon.a (mon.0) 330 : audit [INF] from='client.? 172.21.15.33:0/88030630' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1e62e273-a6b4-432b-b9d0-f4cdff282114"}]': finished 2024-09-16T23:52:41.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:41 smithi033 bash[22694]: cluster 2024-09-16T23:52:41.253045+0000 mon.a (mon.0) 331 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-16T23:52:41.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:41 smithi033 bash[22694]: audit 2024-09-16T23:52:41.253352+0000 mon.a (mon.0) 332 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T23:52:41.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:41 smithi089 bash[24318]: audit 2024-09-16T23:52:41.243296+0000 mon.a (mon.0) 329 : audit [INF] from='client.? 172.21.15.33:0/88030630' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1e62e273-a6b4-432b-b9d0-f4cdff282114"}]: dispatch 2024-09-16T23:52:41.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:41 smithi089 bash[24318]: audit 2024-09-16T23:52:41.246286+0000 mon.a (mon.0) 330 : audit [INF] from='client.? 172.21.15.33:0/88030630' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1e62e273-a6b4-432b-b9d0-f4cdff282114"}]': finished 2024-09-16T23:52:41.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:41 smithi089 bash[24318]: cluster 2024-09-16T23:52:41.253045+0000 mon.a (mon.0) 331 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-16T23:52:41.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:41 smithi089 bash[24318]: audit 2024-09-16T23:52:41.253352+0000 mon.a (mon.0) 332 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T23:52:42.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:42 smithi103 bash[24637]: cluster 2024-09-16T23:52:40.572427+0000 mgr.a (mgr.14150) 141 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:42.747 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:42 smithi103 bash[24637]: audit 2024-09-16T23:52:41.866402+0000 mon.a (mon.0) 333 : audit [DBG] from='client.? 172.21.15.33:0/2858454672' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T23:52:42.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:42 smithi033 bash[22694]: cluster 2024-09-16T23:52:40.572427+0000 mgr.a (mgr.14150) 141 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:42.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:42 smithi033 bash[22694]: audit 2024-09-16T23:52:41.866402+0000 mon.a (mon.0) 333 : audit [DBG] from='client.? 172.21.15.33:0/2858454672' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T23:52:42.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:42 smithi089 bash[24318]: cluster 2024-09-16T23:52:40.572427+0000 mgr.a (mgr.14150) 141 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:42.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:42 smithi089 bash[24318]: audit 2024-09-16T23:52:41.866402+0000 mon.a (mon.0) 333 : audit [DBG] from='client.? 172.21.15.33:0/2858454672' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T23:52:44.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:44 smithi103 bash[24637]: cluster 2024-09-16T23:52:42.572788+0000 mgr.a (mgr.14150) 142 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:44.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:44 smithi033 bash[22694]: cluster 2024-09-16T23:52:42.572788+0000 mgr.a (mgr.14150) 142 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:44.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:44 smithi089 bash[24318]: cluster 2024-09-16T23:52:42.572788+0000 mgr.a (mgr.14150) 142 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:46.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:46 smithi103 bash[24637]: cluster 2024-09-16T23:52:44.573273+0000 mgr.a (mgr.14150) 143 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:46.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:46 smithi033 bash[22694]: cluster 2024-09-16T23:52:44.573273+0000 mgr.a (mgr.14150) 143 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:46.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:46 smithi089 bash[24318]: cluster 2024-09-16T23:52:44.573273+0000 mgr.a (mgr.14150) 143 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:48.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:48 smithi103 bash[24637]: cluster 2024-09-16T23:52:46.573726+0000 mgr.a (mgr.14150) 144 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:48.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:48 smithi033 bash[22694]: cluster 2024-09-16T23:52:46.573726+0000 mgr.a (mgr.14150) 144 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:48.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:48 smithi089 bash[24318]: cluster 2024-09-16T23:52:46.573726+0000 mgr.a (mgr.14150) 144 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:50.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:50 smithi103 bash[24637]: cluster 2024-09-16T23:52:48.574251+0000 mgr.a (mgr.14150) 145 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:50.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:50 smithi033 bash[22694]: cluster 2024-09-16T23:52:48.574251+0000 mgr.a (mgr.14150) 145 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:50.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:50 smithi089 bash[24318]: cluster 2024-09-16T23:52:48.574251+0000 mgr.a (mgr.14150) 145 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:52.432 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:52 smithi033 bash[22694]: cluster 2024-09-16T23:52:50.574831+0000 mgr.a (mgr.14150) 146 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:52.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:52 smithi103 bash[24637]: cluster 2024-09-16T23:52:50.574831+0000 mgr.a (mgr.14150) 146 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:52.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:52 smithi089 bash[24318]: cluster 2024-09-16T23:52:50.574831+0000 mgr.a (mgr.14150) 146 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:54.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:54 smithi103 bash[24637]: cluster 2024-09-16T23:52:52.575414+0000 mgr.a (mgr.14150) 147 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:54.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:54 smithi033 bash[22694]: cluster 2024-09-16T23:52:52.575414+0000 mgr.a (mgr.14150) 147 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:54.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:54 smithi089 bash[24318]: cluster 2024-09-16T23:52:52.575414+0000 mgr.a (mgr.14150) 147 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:55.644 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:55 smithi033 bash[22694]: audit 2024-09-16T23:52:55.015463+0000 mon.a (mon.0) 334 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-16T23:52:55.644 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:55 smithi033 bash[22694]: audit 2024-09-16T23:52:55.017434+0000 mon.a (mon.0) 335 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:52:55.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:55 smithi103 bash[24637]: audit 2024-09-16T23:52:55.015463+0000 mon.a (mon.0) 334 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-16T23:52:55.747 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:55 smithi103 bash[24637]: audit 2024-09-16T23:52:55.017434+0000 mon.a (mon.0) 335 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:52:55.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:55 smithi089 bash[24318]: audit 2024-09-16T23:52:55.015463+0000 mon.a (mon.0) 334 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-16T23:52:55.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:55 smithi089 bash[24318]: audit 2024-09-16T23:52:55.017434+0000 mon.a (mon.0) 335 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:52:56.704 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:56 smithi033 bash[22694]: cluster 2024-09-16T23:52:54.575915+0000 mgr.a (mgr.14150) 148 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:56.705 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:56 smithi033 bash[22694]: cephadm 2024-09-16T23:52:55.019105+0000 mgr.a (mgr.14150) 149 : cephadm [INF] Deploying daemon osd.1 on smithi033 2024-09-16T23:52:56.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:56 smithi103 bash[24637]: cluster 2024-09-16T23:52:54.575915+0000 mgr.a (mgr.14150) 148 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:56.747 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:56 smithi103 bash[24637]: cephadm 2024-09-16T23:52:55.019105+0000 mgr.a (mgr.14150) 149 : cephadm [INF] Deploying daemon osd.1 on smithi033 2024-09-16T23:52:56.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:56 smithi089 bash[24318]: cluster 2024-09-16T23:52:54.575915+0000 mgr.a (mgr.14150) 148 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:56.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:56 smithi089 bash[24318]: cephadm 2024-09-16T23:52:55.019105+0000 mgr.a (mgr.14150) 149 : cephadm [INF] Deploying daemon osd.1 on smithi033 2024-09-16T23:52:58.564 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:58 smithi033 bash[22694]: cluster 2024-09-16T23:52:56.576507+0000 mgr.a (mgr.14150) 150 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:58.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:52:58 smithi103 bash[24637]: cluster 2024-09-16T23:52:56.576507+0000 mgr.a (mgr.14150) 150 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:58.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:52:58 smithi089 bash[24318]: cluster 2024-09-16T23:52:56.576507+0000 mgr.a (mgr.14150) 150 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:52:59.981 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:52:59 smithi033 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:52:59.981 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:52:59 smithi033 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:52:59.982 INFO:journalctl@ceph.osd.0.smithi033.stdout:Sep 16 23:52:59 smithi033 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:53:00.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:00 smithi033 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:53:00.251 INFO:journalctl@ceph.osd.0.smithi033.stdout:Sep 16 23:53:00 smithi033 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:53:00.252 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:53:00 smithi033 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:53:00.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:00 smithi103 bash[24637]: cluster 2024-09-16T23:52:58.577033+0000 mgr.a (mgr.14150) 151 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:53:00.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:00 smithi103 bash[24637]: audit 2024-09-16T23:53:00.247155+0000 mon.a (mon.0) 336 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:53:00.747 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:00 smithi103 bash[24637]: audit 2024-09-16T23:53:00.251336+0000 mon.a (mon.0) 337 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:00.747 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:00 smithi103 bash[24637]: audit 2024-09-16T23:53:00.256035+0000 mon.a (mon.0) 338 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:00.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:00 smithi033 bash[22694]: cluster 2024-09-16T23:52:58.577033+0000 mgr.a (mgr.14150) 151 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:53:00.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:00 smithi033 bash[22694]: audit 2024-09-16T23:53:00.247155+0000 mon.a (mon.0) 336 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:53:00.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:00 smithi033 bash[22694]: audit 2024-09-16T23:53:00.251336+0000 mon.a (mon.0) 337 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:00.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:00 smithi033 bash[22694]: audit 2024-09-16T23:53:00.256035+0000 mon.a (mon.0) 338 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:00.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:00 smithi089 bash[24318]: cluster 2024-09-16T23:52:58.577033+0000 mgr.a (mgr.14150) 151 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:53:00.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:00 smithi089 bash[24318]: audit 2024-09-16T23:53:00.247155+0000 mon.a (mon.0) 336 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:53:00.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:00 smithi089 bash[24318]: audit 2024-09-16T23:53:00.251336+0000 mon.a (mon.0) 337 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:00.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:00 smithi089 bash[24318]: audit 2024-09-16T23:53:00.256035+0000 mon.a (mon.0) 338 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:02.626 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:02 smithi033 bash[22694]: cluster 2024-09-16T23:53:00.577463+0000 mgr.a (mgr.14150) 152 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:53:02.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:02 smithi103 bash[24637]: cluster 2024-09-16T23:53:00.577463+0000 mgr.a (mgr.14150) 152 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:53:02.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:02 smithi089 bash[24318]: cluster 2024-09-16T23:53:00.577463+0000 mgr.a (mgr.14150) 152 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:53:04.680 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:04 smithi033 bash[22694]: cluster 2024-09-16T23:53:02.577823+0000 mgr.a (mgr.14150) 153 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:53:04.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:04 smithi103 bash[24637]: cluster 2024-09-16T23:53:02.577823+0000 mgr.a (mgr.14150) 153 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:53:04.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:04 smithi089 bash[24318]: cluster 2024-09-16T23:53:02.577823+0000 mgr.a (mgr.14150) 153 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:53:06.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:06 smithi033 bash[22694]: cluster 2024-09-16T23:53:04.578291+0000 mgr.a (mgr.14150) 154 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:53:06.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:06 smithi103 bash[24637]: cluster 2024-09-16T23:53:04.578291+0000 mgr.a (mgr.14150) 154 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:53:06.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:06 smithi089 bash[24318]: cluster 2024-09-16T23:53:04.578291+0000 mgr.a (mgr.14150) 154 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:53:07.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:07 smithi033 bash[22694]: cluster 2024-09-16T23:53:06.578648+0000 mgr.a (mgr.14150) 155 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:53:07.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:07 smithi033 bash[22694]: audit 2024-09-16T23:53:06.605211+0000 mon.a (mon.0) 339 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:07.752 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:07 smithi033 bash[22694]: audit 2024-09-16T23:53:06.609204+0000 mon.a (mon.0) 340 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:07.752 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:07 smithi033 bash[22694]: audit 2024-09-16T23:53:06.610083+0000 mon.a (mon.0) 341 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:53:07.752 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:07 smithi033 bash[22694]: audit 2024-09-16T23:53:06.610733+0000 mon.a (mon.0) 342 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:53:07.752 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:07 smithi033 bash[22694]: audit 2024-09-16T23:53:06.615396+0000 mon.a (mon.0) 343 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:07.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:07 smithi103 bash[24637]: cluster 2024-09-16T23:53:06.578648+0000 mgr.a (mgr.14150) 155 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:53:07.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:07 smithi103 bash[24637]: audit 2024-09-16T23:53:06.605211+0000 mon.a (mon.0) 339 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:07.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:07 smithi103 bash[24637]: audit 2024-09-16T23:53:06.609204+0000 mon.a (mon.0) 340 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:07.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:07 smithi103 bash[24637]: audit 2024-09-16T23:53:06.610083+0000 mon.a (mon.0) 341 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:53:07.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:07 smithi103 bash[24637]: audit 2024-09-16T23:53:06.610733+0000 mon.a (mon.0) 342 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:53:07.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:07 smithi103 bash[24637]: audit 2024-09-16T23:53:06.615396+0000 mon.a (mon.0) 343 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:08.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:07 smithi089 bash[24318]: cluster 2024-09-16T23:53:06.578648+0000 mgr.a (mgr.14150) 155 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:53:08.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:07 smithi089 bash[24318]: audit 2024-09-16T23:53:06.605211+0000 mon.a (mon.0) 339 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:08.011 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:07 smithi089 bash[24318]: audit 2024-09-16T23:53:06.609204+0000 mon.a (mon.0) 340 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:08.011 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:07 smithi089 bash[24318]: audit 2024-09-16T23:53:06.610083+0000 mon.a (mon.0) 341 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:53:08.011 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:07 smithi089 bash[24318]: audit 2024-09-16T23:53:06.610733+0000 mon.a (mon.0) 342 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:53:08.011 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:07 smithi089 bash[24318]: audit 2024-09-16T23:53:06.615396+0000 mon.a (mon.0) 343 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:09.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:09 smithi033 bash[22694]: cluster 2024-09-16T23:53:08.579076+0000 mgr.a (mgr.14150) 156 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:53:09.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:09 smithi033 bash[22694]: audit 2024-09-16T23:53:09.517888+0000 mon.a (mon.0) 344 : audit [INF] from='osd.1 [v2:172.21.15.33:6810/608637482,v1:172.21.15.33:6811/608637482]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-16T23:53:09.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:09 smithi103 bash[24637]: cluster 2024-09-16T23:53:08.579076+0000 mgr.a (mgr.14150) 156 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:53:09.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:09 smithi103 bash[24637]: audit 2024-09-16T23:53:09.517888+0000 mon.a (mon.0) 344 : audit [INF] from='osd.1 [v2:172.21.15.33:6810/608637482,v1:172.21.15.33:6811/608637482]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-16T23:53:10.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:09 smithi089 bash[24318]: cluster 2024-09-16T23:53:08.579076+0000 mgr.a (mgr.14150) 156 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:53:10.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:09 smithi089 bash[24318]: audit 2024-09-16T23:53:09.517888+0000 mon.a (mon.0) 344 : audit [INF] from='osd.1 [v2:172.21.15.33:6810/608637482,v1:172.21.15.33:6811/608637482]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-16T23:53:10.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:10 smithi103 bash[24637]: audit 2024-09-16T23:53:09.615956+0000 mon.a (mon.0) 345 : audit [INF] from='osd.1 [v2:172.21.15.33:6810/608637482,v1:172.21.15.33:6811/608637482]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-16T23:53:10.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:10 smithi103 bash[24637]: cluster 2024-09-16T23:53:09.618432+0000 mon.a (mon.0) 346 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-16T23:53:10.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:10 smithi103 bash[24637]: audit 2024-09-16T23:53:09.618750+0000 mon.a (mon.0) 347 : audit [INF] from='osd.1 [v2:172.21.15.33:6810/608637482,v1:172.21.15.33:6811/608637482]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi033", "root=default"]}]: dispatch 2024-09-16T23:53:10.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:10 smithi103 bash[24637]: audit 2024-09-16T23:53:09.619075+0000 mon.a (mon.0) 348 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T23:53:11.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:10 smithi033 bash[22694]: audit 2024-09-16T23:53:09.615956+0000 mon.a (mon.0) 345 : audit [INF] from='osd.1 [v2:172.21.15.33:6810/608637482,v1:172.21.15.33:6811/608637482]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-16T23:53:11.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:10 smithi033 bash[22694]: cluster 2024-09-16T23:53:09.618432+0000 mon.a (mon.0) 346 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-16T23:53:11.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:10 smithi033 bash[22694]: audit 2024-09-16T23:53:09.618750+0000 mon.a (mon.0) 347 : audit [INF] from='osd.1 [v2:172.21.15.33:6810/608637482,v1:172.21.15.33:6811/608637482]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi033", "root=default"]}]: dispatch 2024-09-16T23:53:11.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:10 smithi033 bash[22694]: audit 2024-09-16T23:53:09.619075+0000 mon.a (mon.0) 348 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T23:53:11.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:10 smithi089 bash[24318]: audit 2024-09-16T23:53:09.615956+0000 mon.a (mon.0) 345 : audit [INF] from='osd.1 [v2:172.21.15.33:6810/608637482,v1:172.21.15.33:6811/608637482]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-16T23:53:11.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:10 smithi089 bash[24318]: cluster 2024-09-16T23:53:09.618432+0000 mon.a (mon.0) 346 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-16T23:53:11.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:10 smithi089 bash[24318]: audit 2024-09-16T23:53:09.618750+0000 mon.a (mon.0) 347 : audit [INF] from='osd.1 [v2:172.21.15.33:6810/608637482,v1:172.21.15.33:6811/608637482]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi033", "root=default"]}]: dispatch 2024-09-16T23:53:11.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:10 smithi089 bash[24318]: audit 2024-09-16T23:53:09.619075+0000 mon.a (mon.0) 348 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T23:53:11.099 INFO:teuthology.orchestra.run.smithi033.stdout:Created osd(s) 1 on host 'smithi033' 2024-09-16T23:53:11.804 DEBUG:teuthology.orchestra.run.smithi033:osd.1> sudo journalctl -f -n 0 -u ceph-f4fb0768-7485-11ef-bceb-c7b262605968@osd.1.service 2024-09-16T23:53:11.852 INFO:tasks.cephadm:Deploying osd.2 on smithi089 with /dev/vg_nvme/lv_4... 2024-09-16T23:53:11.853 DEBUG:teuthology.orchestra.run.smithi089:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_4 2024-09-16T23:53:11.905 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:11 smithi089 bash[24318]: cluster 2024-09-16T23:53:10.579492+0000 mgr.a (mgr.14150) 157 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:53:11.906 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:11 smithi089 bash[24318]: audit 2024-09-16T23:53:10.618602+0000 mon.a (mon.0) 349 : audit [INF] from='osd.1 [v2:172.21.15.33:6810/608637482,v1:172.21.15.33:6811/608637482]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi033", "root=default"]}]': finished 2024-09-16T23:53:11.906 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:11 smithi089 bash[24318]: cluster 2024-09-16T23:53:10.623649+0000 mon.a (mon.0) 350 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-16T23:53:11.906 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:11 smithi089 bash[24318]: audit 2024-09-16T23:53:10.625365+0000 mon.a (mon.0) 351 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T23:53:11.906 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:11 smithi089 bash[24318]: audit 2024-09-16T23:53:10.646212+0000 mon.a (mon.0) 352 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T23:53:11.906 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:11 smithi089 bash[24318]: audit 2024-09-16T23:53:11.089937+0000 mon.a (mon.0) 353 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:53:11.906 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:11 smithi089 bash[24318]: audit 2024-09-16T23:53:11.094548+0000 mon.a (mon.0) 354 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:11.906 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:11 smithi089 bash[24318]: audit 2024-09-16T23:53:11.101538+0000 mon.a (mon.0) 355 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:11.906 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:11 smithi089 bash[24318]: audit 2024-09-16T23:53:11.135986+0000 mon.a (mon.0) 356 : audit [INF] from='osd.1 [v2:172.21.15.33:6810/608637482,v1:172.21.15.33:6811/608637482]' entity='osd.1' 2024-09-16T23:53:11.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:11 smithi103 bash[24637]: cluster 2024-09-16T23:53:10.579492+0000 mgr.a (mgr.14150) 157 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:53:11.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:11 smithi103 bash[24637]: audit 2024-09-16T23:53:10.618602+0000 mon.a (mon.0) 349 : audit [INF] from='osd.1 [v2:172.21.15.33:6810/608637482,v1:172.21.15.33:6811/608637482]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi033", "root=default"]}]': finished 2024-09-16T23:53:11.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:11 smithi103 bash[24637]: cluster 2024-09-16T23:53:10.623649+0000 mon.a (mon.0) 350 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-16T23:53:11.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:11 smithi103 bash[24637]: audit 2024-09-16T23:53:10.625365+0000 mon.a (mon.0) 351 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T23:53:11.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:11 smithi103 bash[24637]: audit 2024-09-16T23:53:10.646212+0000 mon.a (mon.0) 352 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T23:53:11.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:11 smithi103 bash[24637]: audit 2024-09-16T23:53:11.089937+0000 mon.a (mon.0) 353 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:53:11.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:11 smithi103 bash[24637]: audit 2024-09-16T23:53:11.094548+0000 mon.a (mon.0) 354 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:11.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:11 smithi103 bash[24637]: audit 2024-09-16T23:53:11.101538+0000 mon.a (mon.0) 355 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:11.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:11 smithi103 bash[24637]: audit 2024-09-16T23:53:11.135986+0000 mon.a (mon.0) 356 : audit [INF] from='osd.1 [v2:172.21.15.33:6810/608637482,v1:172.21.15.33:6811/608637482]' entity='osd.1' 2024-09-16T23:53:12.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:11 smithi033 bash[22694]: cluster 2024-09-16T23:53:10.579492+0000 mgr.a (mgr.14150) 157 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:53:12.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:11 smithi033 bash[22694]: audit 2024-09-16T23:53:10.618602+0000 mon.a (mon.0) 349 : audit [INF] from='osd.1 [v2:172.21.15.33:6810/608637482,v1:172.21.15.33:6811/608637482]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi033", "root=default"]}]': finished 2024-09-16T23:53:12.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:11 smithi033 bash[22694]: cluster 2024-09-16T23:53:10.623649+0000 mon.a (mon.0) 350 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-16T23:53:12.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:11 smithi033 bash[22694]: audit 2024-09-16T23:53:10.625365+0000 mon.a (mon.0) 351 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T23:53:12.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:11 smithi033 bash[22694]: audit 2024-09-16T23:53:10.646212+0000 mon.a (mon.0) 352 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T23:53:12.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:11 smithi033 bash[22694]: audit 2024-09-16T23:53:11.089937+0000 mon.a (mon.0) 353 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:53:12.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:11 smithi033 bash[22694]: audit 2024-09-16T23:53:11.094548+0000 mon.a (mon.0) 354 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:12.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:11 smithi033 bash[22694]: audit 2024-09-16T23:53:11.101538+0000 mon.a (mon.0) 355 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:12.002 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:11 smithi033 bash[22694]: audit 2024-09-16T23:53:11.135986+0000 mon.a (mon.0) 356 : audit [INF] from='osd.1 [v2:172.21.15.33:6810/608637482,v1:172.21.15.33:6811/608637482]' entity='osd.1' 2024-09-16T23:53:12.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:12 smithi103 bash[24637]: cluster 2024-09-16T23:53:10.538837+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T23:53:12.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:12 smithi103 bash[24637]: cluster 2024-09-16T23:53:10.538958+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T23:53:12.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:12 smithi103 bash[24637]: audit 2024-09-16T23:53:11.632071+0000 mon.a (mon.0) 357 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T23:53:12.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:12 smithi103 bash[24637]: cluster 2024-09-16T23:53:12.141718+0000 mon.a (mon.0) 358 : cluster [INF] osd.1 [v2:172.21.15.33:6810/608637482,v1:172.21.15.33:6811/608637482] boot 2024-09-16T23:53:12.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:12 smithi103 bash[24637]: cluster 2024-09-16T23:53:12.141772+0000 mon.a (mon.0) 359 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-16T23:53:12.997 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:12 smithi103 bash[24637]: audit 2024-09-16T23:53:12.142181+0000 mon.a (mon.0) 360 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T23:53:13.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:12 smithi033 bash[22694]: cluster 2024-09-16T23:53:10.538837+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T23:53:13.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:12 smithi033 bash[22694]: cluster 2024-09-16T23:53:10.538958+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T23:53:13.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:12 smithi033 bash[22694]: audit 2024-09-16T23:53:11.632071+0000 mon.a (mon.0) 357 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T23:53:13.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:12 smithi033 bash[22694]: cluster 2024-09-16T23:53:12.141718+0000 mon.a (mon.0) 358 : cluster [INF] osd.1 [v2:172.21.15.33:6810/608637482,v1:172.21.15.33:6811/608637482] boot 2024-09-16T23:53:13.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:12 smithi033 bash[22694]: cluster 2024-09-16T23:53:12.141772+0000 mon.a (mon.0) 359 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-16T23:53:13.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:12 smithi033 bash[22694]: audit 2024-09-16T23:53:12.142181+0000 mon.a (mon.0) 360 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T23:53:13.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:12 smithi089 bash[24318]: cluster 2024-09-16T23:53:10.538837+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T23:53:13.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:12 smithi089 bash[24318]: cluster 2024-09-16T23:53:10.538958+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T23:53:13.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:12 smithi089 bash[24318]: audit 2024-09-16T23:53:11.632071+0000 mon.a (mon.0) 357 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T23:53:13.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:12 smithi089 bash[24318]: cluster 2024-09-16T23:53:12.141718+0000 mon.a (mon.0) 358 : cluster [INF] osd.1 [v2:172.21.15.33:6810/608637482,v1:172.21.15.33:6811/608637482] boot 2024-09-16T23:53:13.011 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:12 smithi089 bash[24318]: cluster 2024-09-16T23:53:12.141772+0000 mon.a (mon.0) 359 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-16T23:53:13.011 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:12 smithi089 bash[24318]: audit 2024-09-16T23:53:12.142181+0000 mon.a (mon.0) 360 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T23:53:14.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:14 smithi103 bash[24637]: cluster 2024-09-16T23:53:12.579920+0000 mgr.a (mgr.14150) 158 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:53:14.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:14 smithi103 bash[24637]: cluster 2024-09-16T23:53:13.153938+0000 mon.a (mon.0) 361 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-16T23:53:14.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:14 smithi033 bash[22694]: cluster 2024-09-16T23:53:12.579920+0000 mgr.a (mgr.14150) 158 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:53:14.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:14 smithi033 bash[22694]: cluster 2024-09-16T23:53:13.153938+0000 mon.a (mon.0) 361 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-16T23:53:14.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:14 smithi089 bash[24318]: cluster 2024-09-16T23:53:12.579920+0000 mgr.a (mgr.14150) 158 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T23:53:14.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:14 smithi089 bash[24318]: cluster 2024-09-16T23:53:13.153938+0000 mon.a (mon.0) 361 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-16T23:53:16.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:16 smithi103 bash[24637]: cluster 2024-09-16T23:53:14.580346+0000 mgr.a (mgr.14150) 159 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:16.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:16 smithi033 bash[22694]: cluster 2024-09-16T23:53:14.580346+0000 mgr.a (mgr.14150) 159 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:16.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:16 smithi089 bash[24318]: cluster 2024-09-16T23:53:14.580346+0000 mgr.a (mgr.14150) 159 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:16.582 INFO:teuthology.orchestra.run.smithi089.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.b/config 2024-09-16T23:53:18.402 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:18 smithi033 bash[22694]: cluster 2024-09-16T23:53:16.580847+0000 mgr.a (mgr.14150) 160 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:18.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:18 smithi103 bash[24637]: cluster 2024-09-16T23:53:16.580847+0000 mgr.a (mgr.14150) 160 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:18.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:18 smithi089 bash[24318]: cluster 2024-09-16T23:53:16.580847+0000 mgr.a (mgr.14150) 160 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:20.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:20 smithi089 bash[24318]: cluster 2024-09-16T23:53:18.581360+0000 mgr.a (mgr.14150) 161 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:20.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:20 smithi103 bash[24637]: cluster 2024-09-16T23:53:18.581360+0000 mgr.a (mgr.14150) 161 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:20.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:20 smithi033 bash[22694]: cluster 2024-09-16T23:53:18.581360+0000 mgr.a (mgr.14150) 161 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:20.576 INFO:teuthology.orchestra.run.smithi089.stdout: 2024-09-16T23:53:20.626 DEBUG:teuthology.orchestra.run.smithi089:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi089:vg_nvme/lv_4 2024-09-16T23:53:22.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:22 smithi103 bash[24637]: cluster 2024-09-16T23:53:20.581671+0000 mgr.a (mgr.14150) 162 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:22.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:22 smithi103 bash[24637]: audit 2024-09-16T23:53:21.659559+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:22.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:22 smithi103 bash[24637]: audit 2024-09-16T23:53:21.667011+0000 mon.a (mon.0) 363 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:22.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:22 smithi103 bash[24637]: audit 2024-09-16T23:53:21.669516+0000 mon.a (mon.0) 364 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:53:22.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:22 smithi103 bash[24637]: audit 2024-09-16T23:53:21.671421+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:53:22.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:22 smithi103 bash[24637]: audit 2024-09-16T23:53:21.678211+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:22.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:22 smithi103 bash[24637]: audit 2024-09-16T23:53:21.682255+0000 mon.a (mon.0) 367 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:53:22.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:22 smithi103 bash[24637]: audit 2024-09-16T23:53:21.683800+0000 mon.a (mon.0) 368 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:53:22.498 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:22 smithi103 bash[24637]: audit 2024-09-16T23:53:21.692840+0000 mon.a (mon.0) 369 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:22.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:22 smithi033 bash[22694]: cluster 2024-09-16T23:53:20.581671+0000 mgr.a (mgr.14150) 162 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:22.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:22 smithi033 bash[22694]: audit 2024-09-16T23:53:21.659559+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:22.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:22 smithi033 bash[22694]: audit 2024-09-16T23:53:21.667011+0000 mon.a (mon.0) 363 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:22.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:22 smithi033 bash[22694]: audit 2024-09-16T23:53:21.669516+0000 mon.a (mon.0) 364 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:53:22.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:22 smithi033 bash[22694]: audit 2024-09-16T23:53:21.671421+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:53:22.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:22 smithi033 bash[22694]: audit 2024-09-16T23:53:21.678211+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:22.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:22 smithi033 bash[22694]: audit 2024-09-16T23:53:21.682255+0000 mon.a (mon.0) 367 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:53:22.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:22 smithi033 bash[22694]: audit 2024-09-16T23:53:21.683800+0000 mon.a (mon.0) 368 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:53:22.502 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:22 smithi033 bash[22694]: audit 2024-09-16T23:53:21.692840+0000 mon.a (mon.0) 369 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:22.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:22 smithi089 bash[24318]: cluster 2024-09-16T23:53:20.581671+0000 mgr.a (mgr.14150) 162 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:22.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:22 smithi089 bash[24318]: audit 2024-09-16T23:53:21.659559+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:22.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:22 smithi089 bash[24318]: audit 2024-09-16T23:53:21.667011+0000 mon.a (mon.0) 363 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:22.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:22 smithi089 bash[24318]: audit 2024-09-16T23:53:21.669516+0000 mon.a (mon.0) 364 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:53:22.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:22 smithi089 bash[24318]: audit 2024-09-16T23:53:21.671421+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:53:22.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:22 smithi089 bash[24318]: audit 2024-09-16T23:53:21.678211+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:22.512 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:22 smithi089 bash[24318]: audit 2024-09-16T23:53:21.682255+0000 mon.a (mon.0) 367 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:53:22.512 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:22 smithi089 bash[24318]: audit 2024-09-16T23:53:21.683800+0000 mon.a (mon.0) 368 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:53:22.512 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:22 smithi089 bash[24318]: audit 2024-09-16T23:53:21.692840+0000 mon.a (mon.0) 369 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:23.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:23 smithi103 bash[24637]: cephadm 2024-09-16T23:53:21.651681+0000 mgr.a (mgr.14150) 163 : cephadm [INF] Detected new or changed devices on smithi033 2024-09-16T23:53:23.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:23 smithi103 bash[24637]: cephadm 2024-09-16T23:53:21.672737+0000 mgr.a (mgr.14150) 164 : cephadm [INF] Adjusting osd_memory_target on smithi033 to 8634M 2024-09-16T23:53:23.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:23 smithi033 bash[22694]: cephadm 2024-09-16T23:53:21.651681+0000 mgr.a (mgr.14150) 163 : cephadm [INF] Detected new or changed devices on smithi033 2024-09-16T23:53:23.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:23 smithi033 bash[22694]: cephadm 2024-09-16T23:53:21.672737+0000 mgr.a (mgr.14150) 164 : cephadm [INF] Adjusting osd_memory_target on smithi033 to 8634M 2024-09-16T23:53:23.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:23 smithi089 bash[24318]: cephadm 2024-09-16T23:53:21.651681+0000 mgr.a (mgr.14150) 163 : cephadm [INF] Detected new or changed devices on smithi033 2024-09-16T23:53:23.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:23 smithi089 bash[24318]: cephadm 2024-09-16T23:53:21.672737+0000 mgr.a (mgr.14150) 164 : cephadm [INF] Adjusting osd_memory_target on smithi033 to 8634M 2024-09-16T23:53:24.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:24 smithi103 bash[24637]: cluster 2024-09-16T23:53:22.582097+0000 mgr.a (mgr.14150) 165 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:24.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:24 smithi033 bash[22694]: cluster 2024-09-16T23:53:22.582097+0000 mgr.a (mgr.14150) 165 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:24.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:24 smithi089 bash[24318]: cluster 2024-09-16T23:53:22.582097+0000 mgr.a (mgr.14150) 165 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:25.352 INFO:teuthology.orchestra.run.smithi089.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.b/config 2024-09-16T23:53:26.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:26 smithi103 bash[24637]: cluster 2024-09-16T23:53:24.582564+0000 mgr.a (mgr.14150) 166 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:26.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:26 smithi033 bash[22694]: cluster 2024-09-16T23:53:24.582564+0000 mgr.a (mgr.14150) 166 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:26.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:26 smithi089 bash[24318]: cluster 2024-09-16T23:53:24.582564+0000 mgr.a (mgr.14150) 166 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:27.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:27 smithi103 bash[24637]: audit 2024-09-16T23:53:26.692120+0000 mon.a (mon.0) 370 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T23:53:27.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:27 smithi103 bash[24637]: audit 2024-09-16T23:53:26.698564+0000 mon.a (mon.0) 371 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T23:53:27.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:27 smithi103 bash[24637]: audit 2024-09-16T23:53:26.700381+0000 mon.a (mon.0) 372 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:53:27.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:27 smithi033 bash[22694]: audit 2024-09-16T23:53:26.692120+0000 mon.a (mon.0) 370 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T23:53:27.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:27 smithi033 bash[22694]: audit 2024-09-16T23:53:26.698564+0000 mon.a (mon.0) 371 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T23:53:27.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:27 smithi033 bash[22694]: audit 2024-09-16T23:53:26.700381+0000 mon.a (mon.0) 372 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:53:27.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:27 smithi089 bash[24318]: audit 2024-09-16T23:53:26.692120+0000 mon.a (mon.0) 370 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T23:53:27.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:27 smithi089 bash[24318]: audit 2024-09-16T23:53:26.698564+0000 mon.a (mon.0) 371 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T23:53:27.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:27 smithi089 bash[24318]: audit 2024-09-16T23:53:26.700381+0000 mon.a (mon.0) 372 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:53:28.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:28 smithi103 bash[24637]: cluster 2024-09-16T23:53:26.583060+0000 mgr.a (mgr.14150) 167 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:28.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:28 smithi103 bash[24637]: audit 2024-09-16T23:53:26.685415+0000 mgr.a (mgr.14150) 168 : audit [DBG] from='client.24158 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi089:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:53:28.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:28 smithi033 bash[22694]: cluster 2024-09-16T23:53:26.583060+0000 mgr.a (mgr.14150) 167 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:28.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:28 smithi033 bash[22694]: audit 2024-09-16T23:53:26.685415+0000 mgr.a (mgr.14150) 168 : audit [DBG] from='client.24158 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi089:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:53:28.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:28 smithi089 bash[24318]: cluster 2024-09-16T23:53:26.583060+0000 mgr.a (mgr.14150) 167 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:28.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:28 smithi089 bash[24318]: audit 2024-09-16T23:53:26.685415+0000 mgr.a (mgr.14150) 168 : audit [DBG] from='client.24158 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi089:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:53:30.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:30 smithi103 bash[24637]: cluster 2024-09-16T23:53:28.583542+0000 mgr.a (mgr.14150) 169 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:30.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:30 smithi033 bash[22694]: cluster 2024-09-16T23:53:28.583542+0000 mgr.a (mgr.14150) 169 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:30.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:30 smithi089 bash[24318]: cluster 2024-09-16T23:53:28.583542+0000 mgr.a (mgr.14150) 169 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:32.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:32 smithi103 bash[24637]: cluster 2024-09-16T23:53:30.584009+0000 mgr.a (mgr.14150) 170 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:32.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:32 smithi033 bash[22694]: cluster 2024-09-16T23:53:30.584009+0000 mgr.a (mgr.14150) 170 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:32.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:32 smithi089 bash[24318]: cluster 2024-09-16T23:53:30.584009+0000 mgr.a (mgr.14150) 170 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:34.483 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:34 smithi089 bash[24318]: cluster 2024-09-16T23:53:32.584469+0000 mgr.a (mgr.14150) 171 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:34.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:34 smithi103 bash[24637]: cluster 2024-09-16T23:53:32.584469+0000 mgr.a (mgr.14150) 171 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:34.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:34 smithi033 bash[22694]: cluster 2024-09-16T23:53:32.584469+0000 mgr.a (mgr.14150) 171 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:36.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:36 smithi103 bash[24637]: cluster 2024-09-16T23:53:34.584937+0000 mgr.a (mgr.14150) 172 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:36.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:36 smithi103 bash[24637]: audit 2024-09-16T23:53:35.269693+0000 mon.b (mon.2) 6 : audit [INF] from='client.? 172.21.15.89:0/1269452356' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6813416c-9b23-4b42-a23e-e1f6cb8375d2"}]: dispatch 2024-09-16T23:53:36.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:36 smithi103 bash[24637]: audit 2024-09-16T23:53:35.272634+0000 mon.a (mon.0) 373 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6813416c-9b23-4b42-a23e-e1f6cb8375d2"}]: dispatch 2024-09-16T23:53:36.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:36 smithi103 bash[24637]: audit 2024-09-16T23:53:35.277060+0000 mon.a (mon.0) 374 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "6813416c-9b23-4b42-a23e-e1f6cb8375d2"}]': finished 2024-09-16T23:53:36.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:36 smithi103 bash[24637]: cluster 2024-09-16T23:53:35.283597+0000 mon.a (mon.0) 375 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-16T23:53:36.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:36 smithi103 bash[24637]: audit 2024-09-16T23:53:35.284060+0000 mon.a (mon.0) 376 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T23:53:36.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:36 smithi103 bash[24637]: audit 2024-09-16T23:53:35.934787+0000 mon.b (mon.2) 7 : audit [DBG] from='client.? 172.21.15.89:0/313816884' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T23:53:36.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:36 smithi033 bash[22694]: cluster 2024-09-16T23:53:34.584937+0000 mgr.a (mgr.14150) 172 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:36.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:36 smithi033 bash[22694]: audit 2024-09-16T23:53:35.269693+0000 mon.b (mon.2) 6 : audit [INF] from='client.? 172.21.15.89:0/1269452356' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6813416c-9b23-4b42-a23e-e1f6cb8375d2"}]: dispatch 2024-09-16T23:53:36.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:36 smithi033 bash[22694]: audit 2024-09-16T23:53:35.272634+0000 mon.a (mon.0) 373 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6813416c-9b23-4b42-a23e-e1f6cb8375d2"}]: dispatch 2024-09-16T23:53:36.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:36 smithi033 bash[22694]: audit 2024-09-16T23:53:35.277060+0000 mon.a (mon.0) 374 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "6813416c-9b23-4b42-a23e-e1f6cb8375d2"}]': finished 2024-09-16T23:53:36.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:36 smithi033 bash[22694]: cluster 2024-09-16T23:53:35.283597+0000 mon.a (mon.0) 375 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-16T23:53:36.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:36 smithi033 bash[22694]: audit 2024-09-16T23:53:35.284060+0000 mon.a (mon.0) 376 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T23:53:36.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:36 smithi033 bash[22694]: audit 2024-09-16T23:53:35.934787+0000 mon.b (mon.2) 7 : audit [DBG] from='client.? 172.21.15.89:0/313816884' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T23:53:36.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:36 smithi089 bash[24318]: cluster 2024-09-16T23:53:34.584937+0000 mgr.a (mgr.14150) 172 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:36.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:36 smithi089 bash[24318]: audit 2024-09-16T23:53:35.269693+0000 mon.b (mon.2) 6 : audit [INF] from='client.? 172.21.15.89:0/1269452356' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6813416c-9b23-4b42-a23e-e1f6cb8375d2"}]: dispatch 2024-09-16T23:53:36.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:36 smithi089 bash[24318]: audit 2024-09-16T23:53:35.272634+0000 mon.a (mon.0) 373 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6813416c-9b23-4b42-a23e-e1f6cb8375d2"}]: dispatch 2024-09-16T23:53:36.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:36 smithi089 bash[24318]: audit 2024-09-16T23:53:35.277060+0000 mon.a (mon.0) 374 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "6813416c-9b23-4b42-a23e-e1f6cb8375d2"}]': finished 2024-09-16T23:53:36.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:36 smithi089 bash[24318]: cluster 2024-09-16T23:53:35.283597+0000 mon.a (mon.0) 375 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-16T23:53:36.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:36 smithi089 bash[24318]: audit 2024-09-16T23:53:35.284060+0000 mon.a (mon.0) 376 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T23:53:36.511 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:36 smithi089 bash[24318]: audit 2024-09-16T23:53:35.934787+0000 mon.b (mon.2) 7 : audit [DBG] from='client.? 172.21.15.89:0/313816884' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T23:53:38.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:38 smithi103 bash[24637]: cluster 2024-09-16T23:53:36.585404+0000 mgr.a (mgr.14150) 173 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:38.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:38 smithi033 bash[22694]: cluster 2024-09-16T23:53:36.585404+0000 mgr.a (mgr.14150) 173 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:38.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:38 smithi089 bash[24318]: cluster 2024-09-16T23:53:36.585404+0000 mgr.a (mgr.14150) 173 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:40.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:40 smithi103 bash[24637]: cluster 2024-09-16T23:53:38.585881+0000 mgr.a (mgr.14150) 174 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:40.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:40 smithi033 bash[22694]: cluster 2024-09-16T23:53:38.585881+0000 mgr.a (mgr.14150) 174 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:40.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:40 smithi089 bash[24318]: cluster 2024-09-16T23:53:38.585881+0000 mgr.a (mgr.14150) 174 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:42.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:42 smithi103 bash[24637]: cluster 2024-09-16T23:53:40.586351+0000 mgr.a (mgr.14150) 175 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:42.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:42 smithi033 bash[22694]: cluster 2024-09-16T23:53:40.586351+0000 mgr.a (mgr.14150) 175 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:42.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:42 smithi089 bash[24318]: cluster 2024-09-16T23:53:40.586351+0000 mgr.a (mgr.14150) 175 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:44.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:44 smithi103 bash[24637]: cluster 2024-09-16T23:53:42.586827+0000 mgr.a (mgr.14150) 176 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:44.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:44 smithi033 bash[22694]: cluster 2024-09-16T23:53:42.586827+0000 mgr.a (mgr.14150) 176 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:44.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:44 smithi089 bash[24318]: cluster 2024-09-16T23:53:42.586827+0000 mgr.a (mgr.14150) 176 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:46.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:46 smithi103 bash[24637]: cluster 2024-09-16T23:53:44.587304+0000 mgr.a (mgr.14150) 177 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:46.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:46 smithi033 bash[22694]: cluster 2024-09-16T23:53:44.587304+0000 mgr.a (mgr.14150) 177 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:46.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:46 smithi089 bash[24318]: cluster 2024-09-16T23:53:44.587304+0000 mgr.a (mgr.14150) 177 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:48.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:48 smithi103 bash[24637]: cluster 2024-09-16T23:53:46.587780+0000 mgr.a (mgr.14150) 178 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:48.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:48 smithi033 bash[22694]: cluster 2024-09-16T23:53:46.587780+0000 mgr.a (mgr.14150) 178 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:48.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:48 smithi089 bash[24318]: cluster 2024-09-16T23:53:46.587780+0000 mgr.a (mgr.14150) 178 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:49.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:49 smithi103 bash[24637]: audit 2024-09-16T23:53:48.478665+0000 mon.a (mon.0) 377 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-16T23:53:49.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:49 smithi103 bash[24637]: audit 2024-09-16T23:53:48.480517+0000 mon.a (mon.0) 378 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:53:49.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:49 smithi103 bash[24637]: cephadm 2024-09-16T23:53:48.482018+0000 mgr.a (mgr.14150) 179 : cephadm [INF] Deploying daemon osd.2 on smithi089 2024-09-16T23:53:49.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:49 smithi033 bash[22694]: audit 2024-09-16T23:53:48.478665+0000 mon.a (mon.0) 377 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-16T23:53:49.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:49 smithi033 bash[22694]: audit 2024-09-16T23:53:48.480517+0000 mon.a (mon.0) 378 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:53:49.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:49 smithi033 bash[22694]: cephadm 2024-09-16T23:53:48.482018+0000 mgr.a (mgr.14150) 179 : cephadm [INF] Deploying daemon osd.2 on smithi089 2024-09-16T23:53:49.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:49 smithi089 bash[24318]: audit 2024-09-16T23:53:48.478665+0000 mon.a (mon.0) 377 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-16T23:53:49.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:49 smithi089 bash[24318]: audit 2024-09-16T23:53:48.480517+0000 mon.a (mon.0) 378 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:53:49.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:49 smithi089 bash[24318]: cephadm 2024-09-16T23:53:48.482018+0000 mgr.a (mgr.14150) 179 : cephadm [INF] Deploying daemon osd.2 on smithi089 2024-09-16T23:53:50.295 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:50 smithi089 bash[24318]: cluster 2024-09-16T23:53:48.588235+0000 mgr.a (mgr.14150) 180 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:50.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:50 smithi103 bash[24637]: cluster 2024-09-16T23:53:48.588235+0000 mgr.a (mgr.14150) 180 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:50.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:50 smithi033 bash[22694]: cluster 2024-09-16T23:53:48.588235+0000 mgr.a (mgr.14150) 180 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:52.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:52 smithi103 bash[24637]: cluster 2024-09-16T23:53:50.588705+0000 mgr.a (mgr.14150) 181 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:52.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:52 smithi033 bash[22694]: cluster 2024-09-16T23:53:50.588705+0000 mgr.a (mgr.14150) 181 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:52.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:52 smithi089 bash[24318]: cluster 2024-09-16T23:53:50.588705+0000 mgr.a (mgr.14150) 181 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:52.854 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:52 smithi089 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:53:52.854 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:53:52 smithi089 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:53:53.249 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:52 smithi089 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:53:53.250 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:53:52 smithi089 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:53:53.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:53 smithi033 bash[22694]: audit 2024-09-16T23:53:53.007749+0000 mon.a (mon.0) 379 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:53:53.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:53 smithi033 bash[22694]: audit 2024-09-16T23:53:53.015656+0000 mon.a (mon.0) 380 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:53.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:53 smithi033 bash[22694]: audit 2024-09-16T23:53:53.023447+0000 mon.a (mon.0) 381 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:53.512 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:53 smithi089 bash[24318]: audit 2024-09-16T23:53:53.007749+0000 mon.a (mon.0) 379 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:53:53.512 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:53 smithi089 bash[24318]: audit 2024-09-16T23:53:53.015656+0000 mon.a (mon.0) 380 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:53.512 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:53 smithi089 bash[24318]: audit 2024-09-16T23:53:53.023447+0000 mon.a (mon.0) 381 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:53.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:53 smithi103 bash[24637]: audit 2024-09-16T23:53:53.007749+0000 mon.a (mon.0) 379 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:53:53.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:53 smithi103 bash[24637]: audit 2024-09-16T23:53:53.015656+0000 mon.a (mon.0) 380 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:53.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:53 smithi103 bash[24637]: audit 2024-09-16T23:53:53.023447+0000 mon.a (mon.0) 381 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:53:54.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:54 smithi089 bash[24318]: cluster 2024-09-16T23:53:52.589178+0000 mgr.a (mgr.14150) 182 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:54.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:54 smithi103 bash[24637]: cluster 2024-09-16T23:53:52.589178+0000 mgr.a (mgr.14150) 182 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:54.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:54 smithi033 bash[22694]: cluster 2024-09-16T23:53:52.589178+0000 mgr.a (mgr.14150) 182 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:56.351 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:56 smithi089 bash[24318]: cluster 2024-09-16T23:53:54.589652+0000 mgr.a (mgr.14150) 183 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:56.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:56 smithi103 bash[24637]: cluster 2024-09-16T23:53:54.589652+0000 mgr.a (mgr.14150) 183 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:56.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:56 smithi033 bash[22694]: cluster 2024-09-16T23:53:54.589652+0000 mgr.a (mgr.14150) 183 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:58.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:53:58 smithi103 bash[24637]: cluster 2024-09-16T23:53:56.590130+0000 mgr.a (mgr.14150) 184 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:58.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:53:58 smithi033 bash[22694]: cluster 2024-09-16T23:53:56.590130+0000 mgr.a (mgr.14150) 184 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:53:58.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:53:58 smithi089 bash[24318]: cluster 2024-09-16T23:53:56.590130+0000 mgr.a (mgr.14150) 184 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:54:00.675 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:00 smithi089 bash[24318]: cluster 2024-09-16T23:53:58.590614+0000 mgr.a (mgr.14150) 185 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:54:00.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:00 smithi103 bash[24637]: cluster 2024-09-16T23:53:58.590614+0000 mgr.a (mgr.14150) 185 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:54:00.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:00 smithi033 bash[22694]: cluster 2024-09-16T23:53:58.590614+0000 mgr.a (mgr.14150) 185 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:54:01.918 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:01 smithi089 bash[24318]: cluster 2024-09-16T23:54:00.591092+0000 mgr.a (mgr.14150) 186 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:54:01.918 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:01 smithi089 bash[24318]: audit 2024-09-16T23:54:00.809075+0000 mon.a (mon.0) 382 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:01.918 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:01 smithi089 bash[24318]: audit 2024-09-16T23:54:00.816914+0000 mon.a (mon.0) 383 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:01.918 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:01 smithi089 bash[24318]: audit 2024-09-16T23:54:00.818703+0000 mon.a (mon.0) 384 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:54:01.918 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:01 smithi089 bash[24318]: audit 2024-09-16T23:54:00.820567+0000 mon.a (mon.0) 385 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:54:01.918 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:01 smithi089 bash[24318]: audit 2024-09-16T23:54:00.831569+0000 mon.a (mon.0) 386 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:02.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:01 smithi103 bash[24637]: cluster 2024-09-16T23:54:00.591092+0000 mgr.a (mgr.14150) 186 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:54:02.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:01 smithi103 bash[24637]: audit 2024-09-16T23:54:00.809075+0000 mon.a (mon.0) 382 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:02.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:01 smithi103 bash[24637]: audit 2024-09-16T23:54:00.816914+0000 mon.a (mon.0) 383 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:02.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:01 smithi103 bash[24637]: audit 2024-09-16T23:54:00.818703+0000 mon.a (mon.0) 384 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:54:02.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:01 smithi103 bash[24637]: audit 2024-09-16T23:54:00.820567+0000 mon.a (mon.0) 385 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:54:02.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:01 smithi103 bash[24637]: audit 2024-09-16T23:54:00.831569+0000 mon.a (mon.0) 386 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:02.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:01 smithi033 bash[22694]: cluster 2024-09-16T23:54:00.591092+0000 mgr.a (mgr.14150) 186 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:54:02.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:01 smithi033 bash[22694]: audit 2024-09-16T23:54:00.809075+0000 mon.a (mon.0) 382 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:02.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:01 smithi033 bash[22694]: audit 2024-09-16T23:54:00.816914+0000 mon.a (mon.0) 383 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:02.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:01 smithi033 bash[22694]: audit 2024-09-16T23:54:00.818703+0000 mon.a (mon.0) 384 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:54:02.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:01 smithi033 bash[22694]: audit 2024-09-16T23:54:00.820567+0000 mon.a (mon.0) 385 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:54:02.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:01 smithi033 bash[22694]: audit 2024-09-16T23:54:00.831569+0000 mon.a (mon.0) 386 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:04.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:03 smithi103 bash[24637]: cluster 2024-09-16T23:54:02.591636+0000 mgr.a (mgr.14150) 187 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:54:04.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:03 smithi103 bash[24637]: audit 2024-09-16T23:54:03.469153+0000 mon.b (mon.2) 8 : audit [INF] from='osd.2 [v2:172.21.15.89:6800/3334294688,v1:172.21.15.89:6801/3334294688]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-16T23:54:04.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:03 smithi103 bash[24637]: audit 2024-09-16T23:54:03.472081+0000 mon.a (mon.0) 387 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-16T23:54:04.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:03 smithi033 bash[22694]: cluster 2024-09-16T23:54:02.591636+0000 mgr.a (mgr.14150) 187 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:54:04.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:03 smithi033 bash[22694]: audit 2024-09-16T23:54:03.469153+0000 mon.b (mon.2) 8 : audit [INF] from='osd.2 [v2:172.21.15.89:6800/3334294688,v1:172.21.15.89:6801/3334294688]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-16T23:54:04.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:03 smithi033 bash[22694]: audit 2024-09-16T23:54:03.472081+0000 mon.a (mon.0) 387 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-16T23:54:04.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:03 smithi089 bash[24318]: cluster 2024-09-16T23:54:02.591636+0000 mgr.a (mgr.14150) 187 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:54:04.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:03 smithi089 bash[24318]: audit 2024-09-16T23:54:03.469153+0000 mon.b (mon.2) 8 : audit [INF] from='osd.2 [v2:172.21.15.89:6800/3334294688,v1:172.21.15.89:6801/3334294688]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-16T23:54:04.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:03 smithi089 bash[24318]: audit 2024-09-16T23:54:03.472081+0000 mon.a (mon.0) 387 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-16T23:54:05.199 INFO:teuthology.orchestra.run.smithi089.stdout:Created osd(s) 2 on host 'smithi089' 2024-09-16T23:54:05.217 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:04 smithi089 bash[24318]: audit 2024-09-16T23:54:03.812494+0000 mon.a (mon.0) 388 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-16T23:54:05.217 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:04 smithi089 bash[24318]: audit 2024-09-16T23:54:03.817233+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.89:6800/3334294688,v1:172.21.15.89:6801/3334294688]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi089", "root=default"]}]: dispatch 2024-09-16T23:54:05.217 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:04 smithi089 bash[24318]: cluster 2024-09-16T23:54:03.817818+0000 mon.a (mon.0) 389 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-16T23:54:05.217 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:04 smithi089 bash[24318]: audit 2024-09-16T23:54:03.818681+0000 mon.a (mon.0) 390 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T23:54:05.217 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:04 smithi089 bash[24318]: audit 2024-09-16T23:54:03.826287+0000 mon.a (mon.0) 391 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi089", "root=default"]}]: dispatch 2024-09-16T23:54:05.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:04 smithi103 bash[24637]: audit 2024-09-16T23:54:03.812494+0000 mon.a (mon.0) 388 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-16T23:54:05.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:04 smithi103 bash[24637]: audit 2024-09-16T23:54:03.817233+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.89:6800/3334294688,v1:172.21.15.89:6801/3334294688]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi089", "root=default"]}]: dispatch 2024-09-16T23:54:05.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:04 smithi103 bash[24637]: cluster 2024-09-16T23:54:03.817818+0000 mon.a (mon.0) 389 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-16T23:54:05.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:04 smithi103 bash[24637]: audit 2024-09-16T23:54:03.818681+0000 mon.a (mon.0) 390 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T23:54:05.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:04 smithi103 bash[24637]: audit 2024-09-16T23:54:03.826287+0000 mon.a (mon.0) 391 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi089", "root=default"]}]: dispatch 2024-09-16T23:54:05.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:04 smithi033 bash[22694]: audit 2024-09-16T23:54:03.812494+0000 mon.a (mon.0) 388 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-16T23:54:05.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:04 smithi033 bash[22694]: audit 2024-09-16T23:54:03.817233+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.89:6800/3334294688,v1:172.21.15.89:6801/3334294688]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi089", "root=default"]}]: dispatch 2024-09-16T23:54:05.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:04 smithi033 bash[22694]: cluster 2024-09-16T23:54:03.817818+0000 mon.a (mon.0) 389 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-16T23:54:05.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:04 smithi033 bash[22694]: audit 2024-09-16T23:54:03.818681+0000 mon.a (mon.0) 390 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T23:54:05.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:04 smithi033 bash[22694]: audit 2024-09-16T23:54:03.826287+0000 mon.a (mon.0) 391 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi089", "root=default"]}]: dispatch 2024-09-16T23:54:05.795 DEBUG:teuthology.orchestra.run.smithi089:osd.2> sudo journalctl -f -n 0 -u ceph-f4fb0768-7485-11ef-bceb-c7b262605968@osd.2.service 2024-09-16T23:54:05.797 INFO:tasks.cephadm:Deploying osd.3 on smithi089 with /dev/vg_nvme/lv_3... 2024-09-16T23:54:05.798 DEBUG:teuthology.orchestra.run.smithi089:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_3 2024-09-16T23:54:06.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:05 smithi103 bash[24637]: cluster 2024-09-16T23:54:04.592245+0000 mgr.a (mgr.14150) 188 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:54:06.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:05 smithi103 bash[24637]: audit 2024-09-16T23:54:04.822066+0000 mon.a (mon.0) 392 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi089", "root=default"]}]': finished 2024-09-16T23:54:06.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:05 smithi103 bash[24637]: cluster 2024-09-16T23:54:04.827404+0000 mon.a (mon.0) 393 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-16T23:54:06.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:05 smithi103 bash[24637]: audit 2024-09-16T23:54:04.828288+0000 mon.a (mon.0) 394 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T23:54:06.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:05 smithi103 bash[24637]: audit 2024-09-16T23:54:04.837092+0000 mon.a (mon.0) 395 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T23:54:06.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:05 smithi103 bash[24637]: audit 2024-09-16T23:54:05.183065+0000 mon.a (mon.0) 396 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:54:06.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:05 smithi103 bash[24637]: audit 2024-09-16T23:54:05.190335+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:06.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:05 smithi103 bash[24637]: audit 2024-09-16T23:54:05.198208+0000 mon.a (mon.0) 398 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:06.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:05 smithi033 bash[22694]: cluster 2024-09-16T23:54:04.592245+0000 mgr.a (mgr.14150) 188 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:54:06.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:05 smithi033 bash[22694]: audit 2024-09-16T23:54:04.822066+0000 mon.a (mon.0) 392 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi089", "root=default"]}]': finished 2024-09-16T23:54:06.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:05 smithi033 bash[22694]: cluster 2024-09-16T23:54:04.827404+0000 mon.a (mon.0) 393 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-16T23:54:06.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:05 smithi033 bash[22694]: audit 2024-09-16T23:54:04.828288+0000 mon.a (mon.0) 394 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T23:54:06.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:05 smithi033 bash[22694]: audit 2024-09-16T23:54:04.837092+0000 mon.a (mon.0) 395 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T23:54:06.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:05 smithi033 bash[22694]: audit 2024-09-16T23:54:05.183065+0000 mon.a (mon.0) 396 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:54:06.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:05 smithi033 bash[22694]: audit 2024-09-16T23:54:05.190335+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:06.251 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:05 smithi033 bash[22694]: audit 2024-09-16T23:54:05.198208+0000 mon.a (mon.0) 398 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:06.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:05 smithi089 bash[24318]: cluster 2024-09-16T23:54:04.592245+0000 mgr.a (mgr.14150) 188 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:54:06.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:05 smithi089 bash[24318]: audit 2024-09-16T23:54:04.822066+0000 mon.a (mon.0) 392 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi089", "root=default"]}]': finished 2024-09-16T23:54:06.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:05 smithi089 bash[24318]: cluster 2024-09-16T23:54:04.827404+0000 mon.a (mon.0) 393 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-16T23:54:06.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:05 smithi089 bash[24318]: audit 2024-09-16T23:54:04.828288+0000 mon.a (mon.0) 394 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T23:54:06.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:05 smithi089 bash[24318]: audit 2024-09-16T23:54:04.837092+0000 mon.a (mon.0) 395 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T23:54:06.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:05 smithi089 bash[24318]: audit 2024-09-16T23:54:05.183065+0000 mon.a (mon.0) 396 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:54:06.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:05 smithi089 bash[24318]: audit 2024-09-16T23:54:05.190335+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:06.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:05 smithi089 bash[24318]: audit 2024-09-16T23:54:05.198208+0000 mon.a (mon.0) 398 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:07.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:07 smithi103 bash[24637]: cluster 2024-09-16T23:54:04.467837+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T23:54:07.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:07 smithi103 bash[24637]: cluster 2024-09-16T23:54:04.467922+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T23:54:07.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:07 smithi103 bash[24637]: cluster 2024-09-16T23:54:05.839266+0000 mon.a (mon.0) 399 : cluster [INF] osd.2 [v2:172.21.15.89:6800/3334294688,v1:172.21.15.89:6801/3334294688] boot 2024-09-16T23:54:07.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:07 smithi103 bash[24637]: cluster 2024-09-16T23:54:05.839372+0000 mon.a (mon.0) 400 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-16T23:54:07.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:07 smithi103 bash[24637]: audit 2024-09-16T23:54:05.840515+0000 mon.a (mon.0) 401 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T23:54:07.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:07 smithi103 bash[24637]: audit 2024-09-16T23:54:06.773018+0000 mon.a (mon.0) 402 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-09-16T23:54:07.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:07 smithi033 bash[22694]: cluster 2024-09-16T23:54:04.467837+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T23:54:07.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:07 smithi033 bash[22694]: cluster 2024-09-16T23:54:04.467922+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T23:54:07.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:07 smithi033 bash[22694]: cluster 2024-09-16T23:54:05.839266+0000 mon.a (mon.0) 399 : cluster [INF] osd.2 [v2:172.21.15.89:6800/3334294688,v1:172.21.15.89:6801/3334294688] boot 2024-09-16T23:54:07.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:07 smithi033 bash[22694]: cluster 2024-09-16T23:54:05.839372+0000 mon.a (mon.0) 400 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-16T23:54:07.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:07 smithi033 bash[22694]: audit 2024-09-16T23:54:05.840515+0000 mon.a (mon.0) 401 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T23:54:07.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:07 smithi033 bash[22694]: audit 2024-09-16T23:54:06.773018+0000 mon.a (mon.0) 402 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-09-16T23:54:07.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:07 smithi089 bash[24318]: cluster 2024-09-16T23:54:04.467837+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T23:54:07.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:07 smithi089 bash[24318]: cluster 2024-09-16T23:54:04.467922+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T23:54:07.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:07 smithi089 bash[24318]: cluster 2024-09-16T23:54:05.839266+0000 mon.a (mon.0) 399 : cluster [INF] osd.2 [v2:172.21.15.89:6800/3334294688,v1:172.21.15.89:6801/3334294688] boot 2024-09-16T23:54:07.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:07 smithi089 bash[24318]: cluster 2024-09-16T23:54:05.839372+0000 mon.a (mon.0) 400 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-16T23:54:07.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:07 smithi089 bash[24318]: audit 2024-09-16T23:54:05.840515+0000 mon.a (mon.0) 401 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T23:54:07.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:07 smithi089 bash[24318]: audit 2024-09-16T23:54:06.773018+0000 mon.a (mon.0) 402 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-09-16T23:54:08.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:08 smithi103 bash[24637]: cluster 2024-09-16T23:54:06.592784+0000 mgr.a (mgr.14150) 189 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:54:08.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:08 smithi103 bash[24637]: audit 2024-09-16T23:54:07.230774+0000 mon.a (mon.0) 403 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-16T23:54:08.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:08 smithi103 bash[24637]: cluster 2024-09-16T23:54:07.234200+0000 mon.a (mon.0) 404 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-16T23:54:08.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:08 smithi103 bash[24637]: audit 2024-09-16T23:54:07.235218+0000 mon.a (mon.0) 405 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-16T23:54:08.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:08 smithi033 bash[22694]: cluster 2024-09-16T23:54:06.592784+0000 mgr.a (mgr.14150) 189 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:54:08.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:08 smithi033 bash[22694]: audit 2024-09-16T23:54:07.230774+0000 mon.a (mon.0) 403 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-16T23:54:08.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:08 smithi033 bash[22694]: cluster 2024-09-16T23:54:07.234200+0000 mon.a (mon.0) 404 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-16T23:54:08.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:08 smithi033 bash[22694]: audit 2024-09-16T23:54:07.235218+0000 mon.a (mon.0) 405 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-16T23:54:08.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:08 smithi089 bash[24318]: cluster 2024-09-16T23:54:06.592784+0000 mgr.a (mgr.14150) 189 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-16T23:54:08.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:08 smithi089 bash[24318]: audit 2024-09-16T23:54:07.230774+0000 mon.a (mon.0) 403 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-16T23:54:08.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:08 smithi089 bash[24318]: cluster 2024-09-16T23:54:07.234200+0000 mon.a (mon.0) 404 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-16T23:54:08.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:08 smithi089 bash[24318]: audit 2024-09-16T23:54:07.235218+0000 mon.a (mon.0) 405 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-16T23:54:09.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:09 smithi033 bash[22694]: audit 2024-09-16T23:54:08.233386+0000 mon.a (mon.0) 406 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-16T23:54:09.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:09 smithi033 bash[22694]: cluster 2024-09-16T23:54:08.238601+0000 mon.a (mon.0) 407 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-16T23:54:09.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:09 smithi089 bash[24318]: audit 2024-09-16T23:54:08.233386+0000 mon.a (mon.0) 406 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-16T23:54:09.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:09 smithi089 bash[24318]: cluster 2024-09-16T23:54:08.238601+0000 mon.a (mon.0) 407 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-16T23:54:09.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:09 smithi103 bash[24637]: audit 2024-09-16T23:54:08.233386+0000 mon.a (mon.0) 406 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-16T23:54:09.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:09 smithi103 bash[24637]: cluster 2024-09-16T23:54:08.238601+0000 mon.a (mon.0) 407 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-16T23:54:10.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:10 smithi033 bash[22694]: cluster 2024-09-16T23:54:08.593292+0000 mgr.a (mgr.14150) 190 : cluster [DBG] pgmap v148: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:10.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:10 smithi033 bash[22694]: cluster 2024-09-16T23:54:09.268115+0000 mon.a (mon.0) 408 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-16T23:54:10.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:10 smithi033 bash[22694]: cluster 2024-09-16T23:54:09.268186+0000 mon.a (mon.0) 409 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-16T23:54:10.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:10 smithi033 bash[22694]: audit 2024-09-16T23:54:09.550365+0000 mon.a (mon.0) 410 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:10.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:10 smithi089 bash[24318]: cluster 2024-09-16T23:54:08.593292+0000 mgr.a (mgr.14150) 190 : cluster [DBG] pgmap v148: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:10.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:10 smithi089 bash[24318]: cluster 2024-09-16T23:54:09.268115+0000 mon.a (mon.0) 408 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-16T23:54:10.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:10 smithi089 bash[24318]: cluster 2024-09-16T23:54:09.268186+0000 mon.a (mon.0) 409 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-16T23:54:10.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:10 smithi089 bash[24318]: audit 2024-09-16T23:54:09.550365+0000 mon.a (mon.0) 410 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:10.552 INFO:teuthology.orchestra.run.smithi089.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.b/config 2024-09-16T23:54:10.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:10 smithi103 bash[24637]: cluster 2024-09-16T23:54:08.593292+0000 mgr.a (mgr.14150) 190 : cluster [DBG] pgmap v148: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:10.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:10 smithi103 bash[24637]: cluster 2024-09-16T23:54:09.268115+0000 mon.a (mon.0) 408 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-16T23:54:10.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:10 smithi103 bash[24637]: cluster 2024-09-16T23:54:09.268186+0000 mon.a (mon.0) 409 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-16T23:54:10.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:10 smithi103 bash[24637]: audit 2024-09-16T23:54:09.550365+0000 mon.a (mon.0) 410 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:13.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:13 smithi103 bash[24637]: cluster 2024-09-16T23:54:10.593768+0000 mgr.a (mgr.14150) 191 : cluster [DBG] pgmap v150: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:13.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:13 smithi103 bash[24637]: audit 2024-09-16T23:54:11.403542+0000 mon.a (mon.0) 411 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:13.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:13 smithi103 bash[24637]: audit 2024-09-16T23:54:11.406374+0000 mon.a (mon.0) 412 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T23:54:13.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:13 smithi103 bash[24637]: audit 2024-09-16T23:54:12.327922+0000 mon.a (mon.0) 413 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T23:54:13.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:13 smithi103 bash[24637]: audit 2024-09-16T23:54:12.329459+0000 mon.a (mon.0) 414 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T23:54:13.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:13 smithi103 bash[24637]: audit 2024-09-16T23:54:12.329981+0000 mon.a (mon.0) 415 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:54:13.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:13 smithi103 bash[24637]: audit 2024-09-16T23:54:12.330486+0000 mon.a (mon.0) 416 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:54:13.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:13 smithi103 bash[24637]: audit 2024-09-16T23:54:12.334149+0000 mon.a (mon.0) 417 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T23:54:13.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:13 smithi103 bash[24637]: audit 2024-09-16T23:54:12.334679+0000 mon.a (mon.0) 418 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:54:13.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:13 smithi103 bash[24637]: audit 2024-09-16T23:54:12.335166+0000 mon.a (mon.0) 419 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:54:13.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:13 smithi033 bash[22694]: cluster 2024-09-16T23:54:10.593768+0000 mgr.a (mgr.14150) 191 : cluster [DBG] pgmap v150: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:13.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:13 smithi033 bash[22694]: audit 2024-09-16T23:54:11.403542+0000 mon.a (mon.0) 411 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:13.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:13 smithi033 bash[22694]: audit 2024-09-16T23:54:11.406374+0000 mon.a (mon.0) 412 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T23:54:13.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:13 smithi033 bash[22694]: audit 2024-09-16T23:54:12.327922+0000 mon.a (mon.0) 413 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T23:54:13.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:13 smithi033 bash[22694]: audit 2024-09-16T23:54:12.329459+0000 mon.a (mon.0) 414 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T23:54:13.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:13 smithi033 bash[22694]: audit 2024-09-16T23:54:12.329981+0000 mon.a (mon.0) 415 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:54:13.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:13 smithi033 bash[22694]: audit 2024-09-16T23:54:12.330486+0000 mon.a (mon.0) 416 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:54:13.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:13 smithi033 bash[22694]: audit 2024-09-16T23:54:12.334149+0000 mon.a (mon.0) 417 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T23:54:13.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:13 smithi033 bash[22694]: audit 2024-09-16T23:54:12.334679+0000 mon.a (mon.0) 418 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:54:13.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:13 smithi033 bash[22694]: audit 2024-09-16T23:54:12.335166+0000 mon.a (mon.0) 419 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:54:13.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:13 smithi089 bash[24318]: cluster 2024-09-16T23:54:10.593768+0000 mgr.a (mgr.14150) 191 : cluster [DBG] pgmap v150: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:13.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:13 smithi089 bash[24318]: audit 2024-09-16T23:54:11.403542+0000 mon.a (mon.0) 411 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:13.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:13 smithi089 bash[24318]: audit 2024-09-16T23:54:11.406374+0000 mon.a (mon.0) 412 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T23:54:13.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:13 smithi089 bash[24318]: audit 2024-09-16T23:54:12.327922+0000 mon.a (mon.0) 413 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T23:54:13.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:13 smithi089 bash[24318]: audit 2024-09-16T23:54:12.329459+0000 mon.a (mon.0) 414 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T23:54:13.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:13 smithi089 bash[24318]: audit 2024-09-16T23:54:12.329981+0000 mon.a (mon.0) 415 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:54:13.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:13 smithi089 bash[24318]: audit 2024-09-16T23:54:12.330486+0000 mon.a (mon.0) 416 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:54:13.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:13 smithi089 bash[24318]: audit 2024-09-16T23:54:12.334149+0000 mon.a (mon.0) 417 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T23:54:13.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:13 smithi089 bash[24318]: audit 2024-09-16T23:54:12.334679+0000 mon.a (mon.0) 418 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:54:13.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:13 smithi089 bash[24318]: audit 2024-09-16T23:54:12.335166+0000 mon.a (mon.0) 419 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:54:14.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:14 smithi103 bash[24637]: audit 2024-09-16T23:54:12.332502+0000 mon.c (mon.1) 3 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T23:54:14.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:14 smithi103 bash[24637]: cluster 2024-09-16T23:54:12.594373+0000 mgr.a (mgr.14150) 192 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:14.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:14 smithi103 bash[24637]: audit 2024-09-16T23:54:13.235612+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T23:54:14.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:14 smithi103 bash[24637]: audit 2024-09-16T23:54:13.276305+0000 mon.a (mon.0) 420 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:14.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:14 smithi103 bash[24637]: audit 2024-09-16T23:54:13.277200+0000 mon.b (mon.2) 10 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T23:54:14.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:14 smithi103 bash[24637]: audit 2024-09-16T23:54:13.279792+0000 mon.a (mon.0) 421 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T23:54:14.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:14 smithi103 bash[24637]: audit 2024-09-16T23:54:13.280306+0000 mon.a (mon.0) 422 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:54:14.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:14 smithi103 bash[24637]: audit 2024-09-16T23:54:13.280788+0000 mon.a (mon.0) 423 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:54:14.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:14 smithi103 bash[24637]: audit 2024-09-16T23:54:14.166433+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T23:54:14.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:14 smithi033 bash[22694]: audit 2024-09-16T23:54:12.332502+0000 mon.c (mon.1) 3 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T23:54:14.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:14 smithi033 bash[22694]: cluster 2024-09-16T23:54:12.594373+0000 mgr.a (mgr.14150) 192 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:14.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:14 smithi033 bash[22694]: audit 2024-09-16T23:54:13.235612+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T23:54:14.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:14 smithi033 bash[22694]: audit 2024-09-16T23:54:13.276305+0000 mon.a (mon.0) 420 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:14.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:14 smithi033 bash[22694]: audit 2024-09-16T23:54:13.277200+0000 mon.b (mon.2) 10 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T23:54:14.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:14 smithi033 bash[22694]: audit 2024-09-16T23:54:13.279792+0000 mon.a (mon.0) 421 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T23:54:14.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:14 smithi033 bash[22694]: audit 2024-09-16T23:54:13.280306+0000 mon.a (mon.0) 422 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:54:14.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:14 smithi033 bash[22694]: audit 2024-09-16T23:54:13.280788+0000 mon.a (mon.0) 423 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:54:14.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:14 smithi033 bash[22694]: audit 2024-09-16T23:54:14.166433+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T23:54:14.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:14 smithi089 bash[24318]: audit 2024-09-16T23:54:12.332502+0000 mon.c (mon.1) 3 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T23:54:14.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:14 smithi089 bash[24318]: cluster 2024-09-16T23:54:12.594373+0000 mgr.a (mgr.14150) 192 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:14.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:14 smithi089 bash[24318]: audit 2024-09-16T23:54:13.235612+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T23:54:14.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:14 smithi089 bash[24318]: audit 2024-09-16T23:54:13.276305+0000 mon.a (mon.0) 420 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:14.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:14 smithi089 bash[24318]: audit 2024-09-16T23:54:13.277200+0000 mon.b (mon.2) 10 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T23:54:14.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:14 smithi089 bash[24318]: audit 2024-09-16T23:54:13.279792+0000 mon.a (mon.0) 421 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T23:54:14.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:14 smithi089 bash[24318]: audit 2024-09-16T23:54:13.280306+0000 mon.a (mon.0) 422 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:54:14.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:14 smithi089 bash[24318]: audit 2024-09-16T23:54:13.280788+0000 mon.a (mon.0) 423 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T23:54:14.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:14 smithi089 bash[24318]: audit 2024-09-16T23:54:14.166433+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T23:54:16.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:16 smithi103 bash[24637]: cluster 2024-09-16T23:54:14.594951+0000 mgr.a (mgr.14150) 193 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:16.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:16 smithi103 bash[24637]: audit 2024-09-16T23:54:15.972323+0000 mon.a (mon.0) 424 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:16.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:16 smithi103 bash[24637]: audit 2024-09-16T23:54:15.980498+0000 mon.a (mon.0) 425 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:16.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:16 smithi103 bash[24637]: audit 2024-09-16T23:54:15.983076+0000 mon.a (mon.0) 426 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:54:16.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:16 smithi103 bash[24637]: audit 2024-09-16T23:54:15.992037+0000 mon.a (mon.0) 427 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:16.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:16 smithi103 bash[24637]: audit 2024-09-16T23:54:15.996036+0000 mon.a (mon.0) 428 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:54:16.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:16 smithi103 bash[24637]: audit 2024-09-16T23:54:15.997929+0000 mon.a (mon.0) 429 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:54:16.497 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:16 smithi103 bash[24637]: audit 2024-09-16T23:54:16.007356+0000 mon.a (mon.0) 430 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:16.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:16 smithi033 bash[22694]: cluster 2024-09-16T23:54:14.594951+0000 mgr.a (mgr.14150) 193 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:16.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:16 smithi033 bash[22694]: audit 2024-09-16T23:54:15.972323+0000 mon.a (mon.0) 424 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:16.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:16 smithi033 bash[22694]: audit 2024-09-16T23:54:15.980498+0000 mon.a (mon.0) 425 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:16.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:16 smithi033 bash[22694]: audit 2024-09-16T23:54:15.983076+0000 mon.a (mon.0) 426 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:54:16.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:16 smithi033 bash[22694]: audit 2024-09-16T23:54:15.992037+0000 mon.a (mon.0) 427 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:16.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:16 smithi033 bash[22694]: audit 2024-09-16T23:54:15.996036+0000 mon.a (mon.0) 428 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:54:16.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:16 smithi033 bash[22694]: audit 2024-09-16T23:54:15.997929+0000 mon.a (mon.0) 429 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:54:16.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:16 smithi033 bash[22694]: audit 2024-09-16T23:54:16.007356+0000 mon.a (mon.0) 430 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:16.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:16 smithi089 bash[24318]: cluster 2024-09-16T23:54:14.594951+0000 mgr.a (mgr.14150) 193 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:16.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:16 smithi089 bash[24318]: audit 2024-09-16T23:54:15.972323+0000 mon.a (mon.0) 424 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:16.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:16 smithi089 bash[24318]: audit 2024-09-16T23:54:15.980498+0000 mon.a (mon.0) 425 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:16.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:16 smithi089 bash[24318]: audit 2024-09-16T23:54:15.983076+0000 mon.a (mon.0) 426 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:54:16.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:16 smithi089 bash[24318]: audit 2024-09-16T23:54:15.992037+0000 mon.a (mon.0) 427 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:16.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:16 smithi089 bash[24318]: audit 2024-09-16T23:54:15.996036+0000 mon.a (mon.0) 428 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:54:16.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:16 smithi089 bash[24318]: audit 2024-09-16T23:54:15.997929+0000 mon.a (mon.0) 429 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:54:16.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:16 smithi089 bash[24318]: audit 2024-09-16T23:54:16.007356+0000 mon.a (mon.0) 430 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:17.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:17 smithi033 bash[22694]: cephadm 2024-09-16T23:54:15.964171+0000 mgr.a (mgr.14150) 194 : cephadm [INF] Detected new or changed devices on smithi089 2024-09-16T23:54:17.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:17 smithi033 bash[22694]: cephadm 2024-09-16T23:54:15.984478+0000 mgr.a (mgr.14150) 195 : cephadm [INF] Adjusting osd_memory_target on smithi089 to 17265M 2024-09-16T23:54:17.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:17 smithi089 bash[24318]: cephadm 2024-09-16T23:54:15.964171+0000 mgr.a (mgr.14150) 194 : cephadm [INF] Detected new or changed devices on smithi089 2024-09-16T23:54:17.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:17 smithi089 bash[24318]: cephadm 2024-09-16T23:54:15.984478+0000 mgr.a (mgr.14150) 195 : cephadm [INF] Adjusting osd_memory_target on smithi089 to 17265M 2024-09-16T23:54:17.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:17 smithi103 bash[24637]: cephadm 2024-09-16T23:54:15.964171+0000 mgr.a (mgr.14150) 194 : cephadm [INF] Detected new or changed devices on smithi089 2024-09-16T23:54:17.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:17 smithi103 bash[24637]: cephadm 2024-09-16T23:54:15.984478+0000 mgr.a (mgr.14150) 195 : cephadm [INF] Adjusting osd_memory_target on smithi089 to 17265M 2024-09-16T23:54:18.216 INFO:teuthology.orchestra.run.smithi089.stdout: 2024-09-16T23:54:18.251 DEBUG:teuthology.orchestra.run.smithi089:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi089:vg_nvme/lv_3 2024-09-16T23:54:18.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:18 smithi089 bash[24318]: cluster 2024-09-16T23:54:16.595480+0000 mgr.a (mgr.14150) 196 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:18.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:18 smithi103 bash[24637]: cluster 2024-09-16T23:54:16.595480+0000 mgr.a (mgr.14150) 196 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:18.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:18 smithi033 bash[22694]: cluster 2024-09-16T23:54:16.595480+0000 mgr.a (mgr.14150) 196 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:20.510 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:20 smithi089 bash[24318]: cluster 2024-09-16T23:54:18.596055+0000 mgr.a (mgr.14150) 197 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 3.0 KiB/s rd, 131 KiB/s wr, 9 op/s 2024-09-16T23:54:20.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:20 smithi103 bash[24637]: cluster 2024-09-16T23:54:18.596055+0000 mgr.a (mgr.14150) 197 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 3.0 KiB/s rd, 131 KiB/s wr, 9 op/s 2024-09-16T23:54:20.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:20 smithi033 bash[22694]: cluster 2024-09-16T23:54:18.596055+0000 mgr.a (mgr.14150) 197 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 3.0 KiB/s rd, 131 KiB/s wr, 9 op/s 2024-09-16T23:54:22.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:22 smithi103 bash[24637]: cluster 2024-09-16T23:54:20.596626+0000 mgr.a (mgr.14150) 198 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 98 KiB/s wr, 6 op/s 2024-09-16T23:54:22.754 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:22 smithi033 bash[22694]: cluster 2024-09-16T23:54:20.596626+0000 mgr.a (mgr.14150) 198 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 98 KiB/s wr, 6 op/s 2024-09-16T23:54:22.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:22 smithi089 bash[24318]: cluster 2024-09-16T23:54:20.596626+0000 mgr.a (mgr.14150) 198 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 98 KiB/s wr, 6 op/s 2024-09-16T23:54:22.984 INFO:teuthology.orchestra.run.smithi089.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.b/config 2024-09-16T23:54:24.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:24 smithi103 bash[24637]: cluster 2024-09-16T23:54:22.597187+0000 mgr.a (mgr.14150) 199 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 1.8 KiB/s rd, 78 KiB/s wr, 5 op/s 2024-09-16T23:54:24.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:24 smithi033 bash[22694]: cluster 2024-09-16T23:54:22.597187+0000 mgr.a (mgr.14150) 199 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 1.8 KiB/s rd, 78 KiB/s wr, 5 op/s 2024-09-16T23:54:24.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:24 smithi089 bash[24318]: cluster 2024-09-16T23:54:22.597187+0000 mgr.a (mgr.14150) 199 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 1.8 KiB/s rd, 78 KiB/s wr, 5 op/s 2024-09-16T23:54:25.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:25 smithi103 bash[24637]: audit 2024-09-16T23:54:24.365394+0000 mgr.a (mgr.14150) 200 : audit [DBG] from='client.24194 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi089:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:54:25.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:25 smithi103 bash[24637]: audit 2024-09-16T23:54:24.371708+0000 mon.a (mon.0) 431 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T23:54:25.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:25 smithi103 bash[24637]: audit 2024-09-16T23:54:24.377717+0000 mon.a (mon.0) 432 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T23:54:25.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:25 smithi103 bash[24637]: audit 2024-09-16T23:54:24.379628+0000 mon.a (mon.0) 433 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:54:25.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:25 smithi033 bash[22694]: audit 2024-09-16T23:54:24.365394+0000 mgr.a (mgr.14150) 200 : audit [DBG] from='client.24194 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi089:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:54:25.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:25 smithi033 bash[22694]: audit 2024-09-16T23:54:24.371708+0000 mon.a (mon.0) 431 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T23:54:25.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:25 smithi033 bash[22694]: audit 2024-09-16T23:54:24.377717+0000 mon.a (mon.0) 432 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T23:54:25.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:25 smithi033 bash[22694]: audit 2024-09-16T23:54:24.379628+0000 mon.a (mon.0) 433 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:54:25.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:25 smithi089 bash[24318]: audit 2024-09-16T23:54:24.365394+0000 mgr.a (mgr.14150) 200 : audit [DBG] from='client.24194 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi089:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:54:25.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:25 smithi089 bash[24318]: audit 2024-09-16T23:54:24.371708+0000 mon.a (mon.0) 431 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T23:54:25.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:25 smithi089 bash[24318]: audit 2024-09-16T23:54:24.377717+0000 mon.a (mon.0) 432 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T23:54:25.760 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:25 smithi089 bash[24318]: audit 2024-09-16T23:54:24.379628+0000 mon.a (mon.0) 433 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:54:26.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:26 smithi103 bash[24637]: cluster 2024-09-16T23:54:24.597722+0000 mgr.a (mgr.14150) 201 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-16T23:54:26.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:26 smithi033 bash[22694]: cluster 2024-09-16T23:54:24.597722+0000 mgr.a (mgr.14150) 201 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-16T23:54:26.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:26 smithi089 bash[24318]: cluster 2024-09-16T23:54:24.597722+0000 mgr.a (mgr.14150) 201 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-16T23:54:28.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:28 smithi103 bash[24637]: cluster 2024-09-16T23:54:26.598278+0000 mgr.a (mgr.14150) 202 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-16T23:54:28.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:28 smithi033 bash[22694]: cluster 2024-09-16T23:54:26.598278+0000 mgr.a (mgr.14150) 202 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-16T23:54:28.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:28 smithi089 bash[24318]: cluster 2024-09-16T23:54:26.598278+0000 mgr.a (mgr.14150) 202 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-16T23:54:30.632 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:30 smithi089 bash[24318]: cluster 2024-09-16T23:54:28.598818+0000 mgr.a (mgr.14150) 203 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-16T23:54:30.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:30 smithi103 bash[24637]: cluster 2024-09-16T23:54:28.598818+0000 mgr.a (mgr.14150) 203 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-16T23:54:30.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:30 smithi033 bash[22694]: cluster 2024-09-16T23:54:28.598818+0000 mgr.a (mgr.14150) 203 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-16T23:54:32.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:32 smithi103 bash[24637]: cluster 2024-09-16T23:54:30.599336+0000 mgr.a (mgr.14150) 204 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:32.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:32 smithi033 bash[22694]: cluster 2024-09-16T23:54:30.599336+0000 mgr.a (mgr.14150) 204 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:32.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:32 smithi089 bash[24318]: cluster 2024-09-16T23:54:30.599336+0000 mgr.a (mgr.14150) 204 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:33.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:33 smithi103 bash[24637]: audit 2024-09-16T23:54:32.686931+0000 mon.b (mon.2) 12 : audit [INF] from='client.? 172.21.15.89:0/4161289959' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0f344e8e-367a-42d0-9db9-bd5c3ac25162"}]: dispatch 2024-09-16T23:54:33.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:33 smithi103 bash[24637]: audit 2024-09-16T23:54:32.689616+0000 mon.a (mon.0) 434 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0f344e8e-367a-42d0-9db9-bd5c3ac25162"}]: dispatch 2024-09-16T23:54:33.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:33 smithi103 bash[24637]: audit 2024-09-16T23:54:32.693446+0000 mon.a (mon.0) 435 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0f344e8e-367a-42d0-9db9-bd5c3ac25162"}]': finished 2024-09-16T23:54:33.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:33 smithi103 bash[24637]: cluster 2024-09-16T23:54:32.699229+0000 mon.a (mon.0) 436 : cluster [DBG] osdmap e22: 4 total, 3 up, 4 in 2024-09-16T23:54:33.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:33 smithi103 bash[24637]: audit 2024-09-16T23:54:32.699886+0000 mon.a (mon.0) 437 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T23:54:33.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:33 smithi033 bash[22694]: audit 2024-09-16T23:54:32.686931+0000 mon.b (mon.2) 12 : audit [INF] from='client.? 172.21.15.89:0/4161289959' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0f344e8e-367a-42d0-9db9-bd5c3ac25162"}]: dispatch 2024-09-16T23:54:33.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:33 smithi033 bash[22694]: audit 2024-09-16T23:54:32.689616+0000 mon.a (mon.0) 434 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0f344e8e-367a-42d0-9db9-bd5c3ac25162"}]: dispatch 2024-09-16T23:54:33.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:33 smithi033 bash[22694]: audit 2024-09-16T23:54:32.693446+0000 mon.a (mon.0) 435 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0f344e8e-367a-42d0-9db9-bd5c3ac25162"}]': finished 2024-09-16T23:54:33.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:33 smithi033 bash[22694]: cluster 2024-09-16T23:54:32.699229+0000 mon.a (mon.0) 436 : cluster [DBG] osdmap e22: 4 total, 3 up, 4 in 2024-09-16T23:54:33.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:33 smithi033 bash[22694]: audit 2024-09-16T23:54:32.699886+0000 mon.a (mon.0) 437 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T23:54:33.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:33 smithi089 bash[24318]: audit 2024-09-16T23:54:32.686931+0000 mon.b (mon.2) 12 : audit [INF] from='client.? 172.21.15.89:0/4161289959' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0f344e8e-367a-42d0-9db9-bd5c3ac25162"}]: dispatch 2024-09-16T23:54:33.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:33 smithi089 bash[24318]: audit 2024-09-16T23:54:32.689616+0000 mon.a (mon.0) 434 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0f344e8e-367a-42d0-9db9-bd5c3ac25162"}]: dispatch 2024-09-16T23:54:33.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:33 smithi089 bash[24318]: audit 2024-09-16T23:54:32.693446+0000 mon.a (mon.0) 435 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0f344e8e-367a-42d0-9db9-bd5c3ac25162"}]': finished 2024-09-16T23:54:33.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:33 smithi089 bash[24318]: cluster 2024-09-16T23:54:32.699229+0000 mon.a (mon.0) 436 : cluster [DBG] osdmap e22: 4 total, 3 up, 4 in 2024-09-16T23:54:33.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:33 smithi089 bash[24318]: audit 2024-09-16T23:54:32.699886+0000 mon.a (mon.0) 437 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T23:54:34.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:34 smithi103 bash[24637]: cluster 2024-09-16T23:54:32.599869+0000 mgr.a (mgr.14150) 205 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:34.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:34 smithi103 bash[24637]: audit 2024-09-16T23:54:33.342966+0000 mon.b (mon.2) 13 : audit [DBG] from='client.? 172.21.15.89:0/1497985332' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T23:54:34.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:34 smithi033 bash[22694]: cluster 2024-09-16T23:54:32.599869+0000 mgr.a (mgr.14150) 205 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:34.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:34 smithi033 bash[22694]: audit 2024-09-16T23:54:33.342966+0000 mon.b (mon.2) 13 : audit [DBG] from='client.? 172.21.15.89:0/1497985332' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T23:54:34.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:34 smithi089 bash[24318]: cluster 2024-09-16T23:54:32.599869+0000 mgr.a (mgr.14150) 205 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:34.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:34 smithi089 bash[24318]: audit 2024-09-16T23:54:33.342966+0000 mon.b (mon.2) 13 : audit [DBG] from='client.? 172.21.15.89:0/1497985332' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T23:54:36.576 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:36 smithi089 bash[24318]: cluster 2024-09-16T23:54:34.600502+0000 mgr.a (mgr.14150) 206 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:36.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:36 smithi103 bash[24637]: cluster 2024-09-16T23:54:34.600502+0000 mgr.a (mgr.14150) 206 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:36.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:36 smithi033 bash[22694]: cluster 2024-09-16T23:54:34.600502+0000 mgr.a (mgr.14150) 206 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:38.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:38 smithi103 bash[24637]: cluster 2024-09-16T23:54:36.601164+0000 mgr.a (mgr.14150) 207 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:38.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:38 smithi033 bash[22694]: cluster 2024-09-16T23:54:36.601164+0000 mgr.a (mgr.14150) 207 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:38.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:38 smithi089 bash[24318]: cluster 2024-09-16T23:54:36.601164+0000 mgr.a (mgr.14150) 207 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:40.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:40 smithi103 bash[24637]: cluster 2024-09-16T23:54:38.601741+0000 mgr.a (mgr.14150) 208 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:40.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:40 smithi033 bash[22694]: cluster 2024-09-16T23:54:38.601741+0000 mgr.a (mgr.14150) 208 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:40.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:40 smithi089 bash[24318]: cluster 2024-09-16T23:54:38.601741+0000 mgr.a (mgr.14150) 208 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:42.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:42 smithi103 bash[24637]: cluster 2024-09-16T23:54:40.602276+0000 mgr.a (mgr.14150) 209 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:42.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:42 smithi033 bash[22694]: cluster 2024-09-16T23:54:40.602276+0000 mgr.a (mgr.14150) 209 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:42.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:42 smithi089 bash[24318]: cluster 2024-09-16T23:54:40.602276+0000 mgr.a (mgr.14150) 209 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:44.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:44 smithi089 bash[24318]: cluster 2024-09-16T23:54:42.602817+0000 mgr.a (mgr.14150) 210 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:44.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:44 smithi103 bash[24637]: cluster 2024-09-16T23:54:42.602817+0000 mgr.a (mgr.14150) 210 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:44.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:44 smithi033 bash[22694]: cluster 2024-09-16T23:54:42.602817+0000 mgr.a (mgr.14150) 210 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:46.641 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:46 smithi089 bash[24318]: cluster 2024-09-16T23:54:44.603338+0000 mgr.a (mgr.14150) 211 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:46.641 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:46 smithi089 bash[24318]: audit 2024-09-16T23:54:46.024943+0000 mon.a (mon.0) 438 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-16T23:54:46.641 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:46 smithi089 bash[24318]: audit 2024-09-16T23:54:46.026814+0000 mon.a (mon.0) 439 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:54:46.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:46 smithi103 bash[24637]: cluster 2024-09-16T23:54:44.603338+0000 mgr.a (mgr.14150) 211 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:46.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:46 smithi103 bash[24637]: audit 2024-09-16T23:54:46.024943+0000 mon.a (mon.0) 438 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-16T23:54:46.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:46 smithi103 bash[24637]: audit 2024-09-16T23:54:46.026814+0000 mon.a (mon.0) 439 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:54:46.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:46 smithi033 bash[22694]: cluster 2024-09-16T23:54:44.603338+0000 mgr.a (mgr.14150) 211 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:46.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:46 smithi033 bash[22694]: audit 2024-09-16T23:54:46.024943+0000 mon.a (mon.0) 438 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-16T23:54:46.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:46 smithi033 bash[22694]: audit 2024-09-16T23:54:46.026814+0000 mon.a (mon.0) 439 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:54:47.651 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:47 smithi089 bash[24318]: cephadm 2024-09-16T23:54:46.028539+0000 mgr.a (mgr.14150) 212 : cephadm [INF] Deploying daemon osd.3 on smithi089 2024-09-16T23:54:47.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:47 smithi103 bash[24637]: cephadm 2024-09-16T23:54:46.028539+0000 mgr.a (mgr.14150) 212 : cephadm [INF] Deploying daemon osd.3 on smithi089 2024-09-16T23:54:47.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:47 smithi033 bash[22694]: cephadm 2024-09-16T23:54:46.028539+0000 mgr.a (mgr.14150) 212 : cephadm [INF] Deploying daemon osd.3 on smithi089 2024-09-16T23:54:48.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:48 smithi103 bash[24637]: cluster 2024-09-16T23:54:46.603863+0000 mgr.a (mgr.14150) 213 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:48.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:48 smithi033 bash[22694]: cluster 2024-09-16T23:54:46.603863+0000 mgr.a (mgr.14150) 213 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:48.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:48 smithi089 bash[24318]: cluster 2024-09-16T23:54:46.603863+0000 mgr.a (mgr.14150) 213 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:50.438 INFO:journalctl@ceph.osd.2.smithi089.stdout:Sep 16 23:54:50 smithi089 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:54:50.439 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:50 smithi089 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:54:50.439 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:50 smithi089 bash[24318]: cluster 2024-09-16T23:54:48.604426+0000 mgr.a (mgr.14150) 214 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:50.439 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:54:50 smithi089 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:54:50.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:50 smithi103 bash[24637]: cluster 2024-09-16T23:54:48.604426+0000 mgr.a (mgr.14150) 214 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:50.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:50 smithi033 bash[22694]: cluster 2024-09-16T23:54:48.604426+0000 mgr.a (mgr.14150) 214 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:50.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:50 smithi089 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:54:50.759 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:54:50 smithi089 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:54:50.759 INFO:journalctl@ceph.osd.2.smithi089.stdout:Sep 16 23:54:50 smithi089 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:54:51.679 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:51 smithi089 bash[24318]: audit 2024-09-16T23:54:50.713521+0000 mon.a (mon.0) 440 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:54:51.680 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:51 smithi089 bash[24318]: audit 2024-09-16T23:54:50.720982+0000 mon.a (mon.0) 441 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:51.680 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:51 smithi089 bash[24318]: audit 2024-09-16T23:54:50.729330+0000 mon.a (mon.0) 442 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:51.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:51 smithi103 bash[24637]: audit 2024-09-16T23:54:50.713521+0000 mon.a (mon.0) 440 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:54:51.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:51 smithi103 bash[24637]: audit 2024-09-16T23:54:50.720982+0000 mon.a (mon.0) 441 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:51.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:51 smithi103 bash[24637]: audit 2024-09-16T23:54:50.729330+0000 mon.a (mon.0) 442 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:51.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:51 smithi033 bash[22694]: audit 2024-09-16T23:54:50.713521+0000 mon.a (mon.0) 440 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:54:51.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:51 smithi033 bash[22694]: audit 2024-09-16T23:54:50.720982+0000 mon.a (mon.0) 441 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:51.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:51 smithi033 bash[22694]: audit 2024-09-16T23:54:50.729330+0000 mon.a (mon.0) 442 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:52.746 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:52 smithi103 bash[24637]: cluster 2024-09-16T23:54:50.604952+0000 mgr.a (mgr.14150) 215 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:52.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:52 smithi033 bash[22694]: cluster 2024-09-16T23:54:50.604952+0000 mgr.a (mgr.14150) 215 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:52.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:52 smithi089 bash[24318]: cluster 2024-09-16T23:54:50.604952+0000 mgr.a (mgr.14150) 215 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:54.745 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:54 smithi103 bash[24637]: cluster 2024-09-16T23:54:52.605500+0000 mgr.a (mgr.14150) 216 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:54.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:54 smithi033 bash[22694]: cluster 2024-09-16T23:54:52.605500+0000 mgr.a (mgr.14150) 216 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:54.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:54 smithi089 bash[24318]: cluster 2024-09-16T23:54:52.605500+0000 mgr.a (mgr.14150) 216 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:56.745 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:56 smithi103 bash[24637]: cluster 2024-09-16T23:54:54.606037+0000 mgr.a (mgr.14150) 217 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:56.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:56 smithi033 bash[22694]: cluster 2024-09-16T23:54:54.606037+0000 mgr.a (mgr.14150) 217 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:56.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:56 smithi089 bash[24318]: cluster 2024-09-16T23:54:54.606037+0000 mgr.a (mgr.14150) 217 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:58.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:58 smithi103 bash[24637]: cluster 2024-09-16T23:54:56.606567+0000 mgr.a (mgr.14150) 218 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:58.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:58 smithi103 bash[24637]: audit 2024-09-16T23:54:57.087838+0000 mon.a (mon.0) 443 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:58.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:58 smithi103 bash[24637]: audit 2024-09-16T23:54:57.096279+0000 mon.a (mon.0) 444 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:58.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:58 smithi103 bash[24637]: audit 2024-09-16T23:54:57.098381+0000 mon.a (mon.0) 445 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:54:58.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:58 smithi103 bash[24637]: audit 2024-09-16T23:54:57.100667+0000 mon.a (mon.0) 446 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:54:58.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:54:58 smithi103 bash[24637]: audit 2024-09-16T23:54:57.110713+0000 mon.a (mon.0) 447 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:58.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:58 smithi033 bash[22694]: cluster 2024-09-16T23:54:56.606567+0000 mgr.a (mgr.14150) 218 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:58.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:58 smithi033 bash[22694]: audit 2024-09-16T23:54:57.087838+0000 mon.a (mon.0) 443 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:58.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:58 smithi033 bash[22694]: audit 2024-09-16T23:54:57.096279+0000 mon.a (mon.0) 444 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:58.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:58 smithi033 bash[22694]: audit 2024-09-16T23:54:57.098381+0000 mon.a (mon.0) 445 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:54:58.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:58 smithi033 bash[22694]: audit 2024-09-16T23:54:57.100667+0000 mon.a (mon.0) 446 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:54:58.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:54:58 smithi033 bash[22694]: audit 2024-09-16T23:54:57.110713+0000 mon.a (mon.0) 447 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:58.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:58 smithi089 bash[24318]: cluster 2024-09-16T23:54:56.606567+0000 mgr.a (mgr.14150) 218 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:54:58.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:58 smithi089 bash[24318]: audit 2024-09-16T23:54:57.087838+0000 mon.a (mon.0) 443 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:58.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:58 smithi089 bash[24318]: audit 2024-09-16T23:54:57.096279+0000 mon.a (mon.0) 444 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:54:58.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:58 smithi089 bash[24318]: audit 2024-09-16T23:54:57.098381+0000 mon.a (mon.0) 445 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:54:58.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:58 smithi089 bash[24318]: audit 2024-09-16T23:54:57.100667+0000 mon.a (mon.0) 446 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:54:58.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:54:58 smithi089 bash[24318]: audit 2024-09-16T23:54:57.110713+0000 mon.a (mon.0) 447 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:00.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:00 smithi103 bash[24637]: cluster 2024-09-16T23:54:58.607098+0000 mgr.a (mgr.14150) 219 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:55:00.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:00 smithi103 bash[24637]: audit 2024-09-16T23:54:59.187260+0000 mon.b (mon.2) 14 : audit [INF] from='osd.3 [v2:172.21.15.89:6808/2861233868,v1:172.21.15.89:6809/2861233868]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-16T23:55:00.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:00 smithi103 bash[24637]: audit 2024-09-16T23:54:59.189759+0000 mon.a (mon.0) 448 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-16T23:55:00.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:00 smithi033 bash[22694]: cluster 2024-09-16T23:54:58.607098+0000 mgr.a (mgr.14150) 219 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:55:00.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:00 smithi033 bash[22694]: audit 2024-09-16T23:54:59.187260+0000 mon.b (mon.2) 14 : audit [INF] from='osd.3 [v2:172.21.15.89:6808/2861233868,v1:172.21.15.89:6809/2861233868]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-16T23:55:00.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:00 smithi033 bash[22694]: audit 2024-09-16T23:54:59.189759+0000 mon.a (mon.0) 448 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-16T23:55:00.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:00 smithi089 bash[24318]: cluster 2024-09-16T23:54:58.607098+0000 mgr.a (mgr.14150) 219 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:55:00.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:00 smithi089 bash[24318]: audit 2024-09-16T23:54:59.187260+0000 mon.b (mon.2) 14 : audit [INF] from='osd.3 [v2:172.21.15.89:6808/2861233868,v1:172.21.15.89:6809/2861233868]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-16T23:55:00.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:00 smithi089 bash[24318]: audit 2024-09-16T23:54:59.189759+0000 mon.a (mon.0) 448 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-16T23:55:01.300 INFO:teuthology.orchestra.run.smithi089.stdout:Created osd(s) 3 on host 'smithi089' 2024-09-16T23:55:01.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:01 smithi103 bash[24637]: audit 2024-09-16T23:55:00.100603+0000 mon.a (mon.0) 449 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-16T23:55:01.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:01 smithi103 bash[24637]: audit 2024-09-16T23:55:00.103738+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.89:6808/2861233868,v1:172.21.15.89:6809/2861233868]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi089", "root=default"]}]: dispatch 2024-09-16T23:55:01.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:01 smithi103 bash[24637]: cluster 2024-09-16T23:55:00.107299+0000 mon.a (mon.0) 450 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-16T23:55:01.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:01 smithi103 bash[24637]: audit 2024-09-16T23:55:00.107724+0000 mon.a (mon.0) 451 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T23:55:01.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:01 smithi103 bash[24637]: audit 2024-09-16T23:55:00.108340+0000 mon.a (mon.0) 452 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi089", "root=default"]}]: dispatch 2024-09-16T23:55:01.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:01 smithi033 bash[22694]: audit 2024-09-16T23:55:00.100603+0000 mon.a (mon.0) 449 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-16T23:55:01.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:01 smithi033 bash[22694]: audit 2024-09-16T23:55:00.103738+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.89:6808/2861233868,v1:172.21.15.89:6809/2861233868]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi089", "root=default"]}]: dispatch 2024-09-16T23:55:01.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:01 smithi033 bash[22694]: cluster 2024-09-16T23:55:00.107299+0000 mon.a (mon.0) 450 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-16T23:55:01.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:01 smithi033 bash[22694]: audit 2024-09-16T23:55:00.107724+0000 mon.a (mon.0) 451 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T23:55:01.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:01 smithi033 bash[22694]: audit 2024-09-16T23:55:00.108340+0000 mon.a (mon.0) 452 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi089", "root=default"]}]: dispatch 2024-09-16T23:55:01.501 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:01 smithi089 bash[24318]: audit 2024-09-16T23:55:00.100603+0000 mon.a (mon.0) 449 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-16T23:55:01.501 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:01 smithi089 bash[24318]: audit 2024-09-16T23:55:00.103738+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.89:6808/2861233868,v1:172.21.15.89:6809/2861233868]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi089", "root=default"]}]: dispatch 2024-09-16T23:55:01.501 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:01 smithi089 bash[24318]: cluster 2024-09-16T23:55:00.107299+0000 mon.a (mon.0) 450 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-16T23:55:01.501 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:01 smithi089 bash[24318]: audit 2024-09-16T23:55:00.107724+0000 mon.a (mon.0) 451 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T23:55:01.501 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:01 smithi089 bash[24318]: audit 2024-09-16T23:55:00.108340+0000 mon.a (mon.0) 452 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi089", "root=default"]}]: dispatch 2024-09-16T23:55:01.894 DEBUG:teuthology.orchestra.run.smithi089:osd.3> sudo journalctl -f -n 0 -u ceph-f4fb0768-7485-11ef-bceb-c7b262605968@osd.3.service 2024-09-16T23:55:01.897 INFO:tasks.cephadm:Deploying osd.4 on smithi103 with /dev/vg_nvme/lv_4... 2024-09-16T23:55:01.897 DEBUG:teuthology.orchestra.run.smithi103:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_4 2024-09-16T23:55:02.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:02 smithi103 bash[24637]: cluster 2024-09-16T23:55:00.607622+0000 mgr.a (mgr.14150) 220 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:55:02.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:02 smithi103 bash[24637]: audit 2024-09-16T23:55:01.103110+0000 mon.a (mon.0) 453 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi089", "root=default"]}]': finished 2024-09-16T23:55:02.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:02 smithi103 bash[24637]: cluster 2024-09-16T23:55:01.111092+0000 mon.a (mon.0) 454 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-16T23:55:02.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:02 smithi103 bash[24637]: audit 2024-09-16T23:55:01.112209+0000 mon.a (mon.0) 455 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T23:55:02.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:02 smithi103 bash[24637]: audit 2024-09-16T23:55:01.121201+0000 mon.a (mon.0) 456 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T23:55:02.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:02 smithi103 bash[24637]: audit 2024-09-16T23:55:01.222738+0000 mon.a (mon.0) 457 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:55:02.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:02 smithi103 bash[24637]: audit 2024-09-16T23:55:01.250177+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:02.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:02 smithi103 bash[24637]: audit 2024-09-16T23:55:01.301093+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:02.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:02 smithi103 bash[24637]: audit 2024-09-16T23:55:01.581748+0000 mon.a (mon.0) 460 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-16T23:55:02.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:02 smithi103 bash[24637]: cluster 2024-09-16T23:55:02.111280+0000 mon.a (mon.0) 461 : cluster [INF] osd.3 [v2:172.21.15.89:6808/2861233868,v1:172.21.15.89:6809/2861233868] boot 2024-09-16T23:55:02.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:02 smithi103 bash[24637]: cluster 2024-09-16T23:55:02.111394+0000 mon.a (mon.0) 462 : cluster [DBG] osdmap e25: 4 total, 4 up, 4 in 2024-09-16T23:55:02.247 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:02 smithi103 bash[24637]: audit 2024-09-16T23:55:02.111906+0000 mon.a (mon.0) 463 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T23:55:02.259 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:02 smithi089 bash[24318]: cluster 2024-09-16T23:55:00.607622+0000 mgr.a (mgr.14150) 220 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:55:02.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:02 smithi089 bash[24318]: audit 2024-09-16T23:55:01.103110+0000 mon.a (mon.0) 453 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi089", "root=default"]}]': finished 2024-09-16T23:55:02.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:02 smithi089 bash[24318]: cluster 2024-09-16T23:55:01.111092+0000 mon.a (mon.0) 454 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-16T23:55:02.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:02 smithi089 bash[24318]: audit 2024-09-16T23:55:01.112209+0000 mon.a (mon.0) 455 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T23:55:02.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:02 smithi089 bash[24318]: audit 2024-09-16T23:55:01.121201+0000 mon.a (mon.0) 456 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T23:55:02.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:02 smithi089 bash[24318]: audit 2024-09-16T23:55:01.222738+0000 mon.a (mon.0) 457 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:55:02.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:02 smithi089 bash[24318]: audit 2024-09-16T23:55:01.250177+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:02.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:02 smithi089 bash[24318]: audit 2024-09-16T23:55:01.301093+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:02.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:02 smithi089 bash[24318]: audit 2024-09-16T23:55:01.581748+0000 mon.a (mon.0) 460 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-16T23:55:02.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:02 smithi089 bash[24318]: cluster 2024-09-16T23:55:02.111280+0000 mon.a (mon.0) 461 : cluster [INF] osd.3 [v2:172.21.15.89:6808/2861233868,v1:172.21.15.89:6809/2861233868] boot 2024-09-16T23:55:02.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:02 smithi089 bash[24318]: cluster 2024-09-16T23:55:02.111394+0000 mon.a (mon.0) 462 : cluster [DBG] osdmap e25: 4 total, 4 up, 4 in 2024-09-16T23:55:02.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:02 smithi089 bash[24318]: audit 2024-09-16T23:55:02.111906+0000 mon.a (mon.0) 463 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T23:55:02.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:02 smithi033 bash[22694]: cluster 2024-09-16T23:55:00.607622+0000 mgr.a (mgr.14150) 220 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-16T23:55:02.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:02 smithi033 bash[22694]: audit 2024-09-16T23:55:01.103110+0000 mon.a (mon.0) 453 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi089", "root=default"]}]': finished 2024-09-16T23:55:02.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:02 smithi033 bash[22694]: cluster 2024-09-16T23:55:01.111092+0000 mon.a (mon.0) 454 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-16T23:55:02.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:02 smithi033 bash[22694]: audit 2024-09-16T23:55:01.112209+0000 mon.a (mon.0) 455 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T23:55:02.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:02 smithi033 bash[22694]: audit 2024-09-16T23:55:01.121201+0000 mon.a (mon.0) 456 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T23:55:02.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:02 smithi033 bash[22694]: audit 2024-09-16T23:55:01.222738+0000 mon.a (mon.0) 457 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:55:02.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:02 smithi033 bash[22694]: audit 2024-09-16T23:55:01.250177+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:02.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:02 smithi033 bash[22694]: audit 2024-09-16T23:55:01.301093+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:02.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:02 smithi033 bash[22694]: audit 2024-09-16T23:55:01.581748+0000 mon.a (mon.0) 460 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-16T23:55:02.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:02 smithi033 bash[22694]: cluster 2024-09-16T23:55:02.111280+0000 mon.a (mon.0) 461 : cluster [INF] osd.3 [v2:172.21.15.89:6808/2861233868,v1:172.21.15.89:6809/2861233868] boot 2024-09-16T23:55:02.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:02 smithi033 bash[22694]: cluster 2024-09-16T23:55:02.111394+0000 mon.a (mon.0) 462 : cluster [DBG] osdmap e25: 4 total, 4 up, 4 in 2024-09-16T23:55:02.501 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:02 smithi033 bash[22694]: audit 2024-09-16T23:55:02.111906+0000 mon.a (mon.0) 463 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T23:55:03.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:03 smithi103 bash[24637]: cluster 2024-09-16T23:55:00.188273+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T23:55:03.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:03 smithi103 bash[24637]: cluster 2024-09-16T23:55:00.188348+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T23:55:03.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:03 smithi103 bash[24637]: cluster 2024-09-16T23:55:03.114135+0000 mon.a (mon.0) 464 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-09-16T23:55:03.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:03 smithi033 bash[22694]: cluster 2024-09-16T23:55:00.188273+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T23:55:03.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:03 smithi033 bash[22694]: cluster 2024-09-16T23:55:00.188348+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T23:55:03.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:03 smithi033 bash[22694]: cluster 2024-09-16T23:55:03.114135+0000 mon.a (mon.0) 464 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-09-16T23:55:03.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:03 smithi089 bash[24318]: cluster 2024-09-16T23:55:00.188273+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T23:55:03.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:03 smithi089 bash[24318]: cluster 2024-09-16T23:55:00.188348+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T23:55:03.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:03 smithi089 bash[24318]: cluster 2024-09-16T23:55:03.114135+0000 mon.a (mon.0) 464 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-09-16T23:55:04.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:04 smithi103 bash[24637]: cluster 2024-09-16T23:55:02.608140+0000 mgr.a (mgr.14150) 221 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:04.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:04 smithi103 bash[24637]: cluster 2024-09-16T23:55:04.116185+0000 mon.a (mon.0) 465 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-16T23:55:04.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:04 smithi033 bash[22694]: cluster 2024-09-16T23:55:02.608140+0000 mgr.a (mgr.14150) 221 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:04.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:04 smithi033 bash[22694]: cluster 2024-09-16T23:55:04.116185+0000 mon.a (mon.0) 465 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-16T23:55:04.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:04 smithi089 bash[24318]: cluster 2024-09-16T23:55:02.608140+0000 mgr.a (mgr.14150) 221 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:04.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:04 smithi089 bash[24318]: cluster 2024-09-16T23:55:04.116185+0000 mon.a (mon.0) 465 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-16T23:55:05.612 INFO:teuthology.orchestra.run.smithi103.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.c/config 2024-09-16T23:55:06.480 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:06 smithi089 bash[24318]: cluster 2024-09-16T23:55:04.608669+0000 mgr.a (mgr.14150) 222 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:06.480 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:06 smithi089 bash[24318]: cluster 2024-09-16T23:55:05.138265+0000 mon.a (mon.0) 466 : cluster [DBG] osdmap e28: 4 total, 4 up, 4 in 2024-09-16T23:55:06.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:06 smithi103 bash[24637]: cluster 2024-09-16T23:55:04.608669+0000 mgr.a (mgr.14150) 222 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:06.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:06 smithi103 bash[24637]: cluster 2024-09-16T23:55:05.138265+0000 mon.a (mon.0) 466 : cluster [DBG] osdmap e28: 4 total, 4 up, 4 in 2024-09-16T23:55:06.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:06 smithi033 bash[22694]: cluster 2024-09-16T23:55:04.608669+0000 mgr.a (mgr.14150) 222 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:06.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:06 smithi033 bash[22694]: cluster 2024-09-16T23:55:05.138265+0000 mon.a (mon.0) 466 : cluster [DBG] osdmap e28: 4 total, 4 up, 4 in 2024-09-16T23:55:07.418 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:07 smithi089 bash[24318]: cluster 2024-09-16T23:55:06.143351+0000 mon.a (mon.0) 467 : cluster [DBG] osdmap e29: 4 total, 4 up, 4 in 2024-09-16T23:55:07.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:07 smithi103 bash[24637]: cluster 2024-09-16T23:55:06.143351+0000 mon.a (mon.0) 467 : cluster [DBG] osdmap e29: 4 total, 4 up, 4 in 2024-09-16T23:55:07.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:07 smithi033 bash[22694]: cluster 2024-09-16T23:55:06.143351+0000 mon.a (mon.0) 467 : cluster [DBG] osdmap e29: 4 total, 4 up, 4 in 2024-09-16T23:55:08.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:08 smithi103 bash[24637]: cluster 2024-09-16T23:55:06.609208+0000 mgr.a (mgr.14150) 223 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:08.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:08 smithi033 bash[22694]: cluster 2024-09-16T23:55:06.609208+0000 mgr.a (mgr.14150) 223 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:08.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:08 smithi089 bash[24318]: cluster 2024-09-16T23:55:06.609208+0000 mgr.a (mgr.14150) 223 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:09.402 INFO:teuthology.orchestra.run.smithi103.stdout: 2024-09-16T23:55:09.451 DEBUG:teuthology.orchestra.run.smithi103:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi103:vg_nvme/lv_4 2024-09-16T23:55:10.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:10 smithi103 bash[24637]: cluster 2024-09-16T23:55:08.609796+0000 mgr.a (mgr.14150) 224 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 105 KiB/s, 0 objects/s recovering 2024-09-16T23:55:10.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:10 smithi033 bash[22694]: cluster 2024-09-16T23:55:08.609796+0000 mgr.a (mgr.14150) 224 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 105 KiB/s, 0 objects/s recovering 2024-09-16T23:55:10.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:10 smithi089 bash[24318]: cluster 2024-09-16T23:55:08.609796+0000 mgr.a (mgr.14150) 224 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 105 KiB/s, 0 objects/s recovering 2024-09-16T23:55:12.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:11 smithi033 bash[22694]: cluster 2024-09-16T23:55:10.610352+0000 mgr.a (mgr.14150) 225 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 89 KiB/s, 0 objects/s recovering 2024-09-16T23:55:12.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:11 smithi033 bash[22694]: cephadm 2024-09-16T23:55:10.745273+0000 mgr.a (mgr.14150) 226 : cephadm [INF] Detected new or changed devices on smithi089 2024-09-16T23:55:12.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:11 smithi033 bash[22694]: audit 2024-09-16T23:55:10.754868+0000 mon.a (mon.0) 468 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:12.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:11 smithi033 bash[22694]: audit 2024-09-16T23:55:10.764194+0000 mon.a (mon.0) 469 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:12.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:11 smithi033 bash[22694]: audit 2024-09-16T23:55:10.766706+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:55:12.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:11 smithi033 bash[22694]: audit 2024-09-16T23:55:10.768470+0000 mon.a (mon.0) 471 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:55:12.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:11 smithi033 bash[22694]: cephadm 2024-09-16T23:55:10.769816+0000 mgr.a (mgr.14150) 227 : cephadm [INF] Adjusting osd_memory_target on smithi089 to 8632M 2024-09-16T23:55:12.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:11 smithi033 bash[22694]: audit 2024-09-16T23:55:10.777066+0000 mon.a (mon.0) 472 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:12.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:11 smithi033 bash[22694]: audit 2024-09-16T23:55:10.781024+0000 mon.a (mon.0) 473 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:55:12.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:11 smithi033 bash[22694]: audit 2024-09-16T23:55:10.782581+0000 mon.a (mon.0) 474 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:55:12.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:11 smithi033 bash[22694]: audit 2024-09-16T23:55:10.793990+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:12.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:11 smithi089 bash[24318]: cluster 2024-09-16T23:55:10.610352+0000 mgr.a (mgr.14150) 225 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 89 KiB/s, 0 objects/s recovering 2024-09-16T23:55:12.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:11 smithi089 bash[24318]: cephadm 2024-09-16T23:55:10.745273+0000 mgr.a (mgr.14150) 226 : cephadm [INF] Detected new or changed devices on smithi089 2024-09-16T23:55:12.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:11 smithi089 bash[24318]: audit 2024-09-16T23:55:10.754868+0000 mon.a (mon.0) 468 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:12.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:11 smithi089 bash[24318]: audit 2024-09-16T23:55:10.764194+0000 mon.a (mon.0) 469 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:12.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:11 smithi089 bash[24318]: audit 2024-09-16T23:55:10.766706+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:55:12.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:11 smithi089 bash[24318]: audit 2024-09-16T23:55:10.768470+0000 mon.a (mon.0) 471 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:55:12.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:11 smithi089 bash[24318]: cephadm 2024-09-16T23:55:10.769816+0000 mgr.a (mgr.14150) 227 : cephadm [INF] Adjusting osd_memory_target on smithi089 to 8632M 2024-09-16T23:55:12.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:11 smithi089 bash[24318]: audit 2024-09-16T23:55:10.777066+0000 mon.a (mon.0) 472 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:12.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:11 smithi089 bash[24318]: audit 2024-09-16T23:55:10.781024+0000 mon.a (mon.0) 473 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:55:12.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:11 smithi089 bash[24318]: audit 2024-09-16T23:55:10.782581+0000 mon.a (mon.0) 474 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:55:12.010 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:11 smithi089 bash[24318]: audit 2024-09-16T23:55:10.793990+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:12.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:11 smithi103 bash[24637]: cluster 2024-09-16T23:55:10.610352+0000 mgr.a (mgr.14150) 225 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 89 KiB/s, 0 objects/s recovering 2024-09-16T23:55:12.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:11 smithi103 bash[24637]: cephadm 2024-09-16T23:55:10.745273+0000 mgr.a (mgr.14150) 226 : cephadm [INF] Detected new or changed devices on smithi089 2024-09-16T23:55:12.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:11 smithi103 bash[24637]: audit 2024-09-16T23:55:10.754868+0000 mon.a (mon.0) 468 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:12.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:11 smithi103 bash[24637]: audit 2024-09-16T23:55:10.764194+0000 mon.a (mon.0) 469 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:12.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:11 smithi103 bash[24637]: audit 2024-09-16T23:55:10.766706+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:55:12.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:11 smithi103 bash[24637]: audit 2024-09-16T23:55:10.768470+0000 mon.a (mon.0) 471 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:55:12.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:11 smithi103 bash[24637]: cephadm 2024-09-16T23:55:10.769816+0000 mgr.a (mgr.14150) 227 : cephadm [INF] Adjusting osd_memory_target on smithi089 to 8632M 2024-09-16T23:55:12.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:11 smithi103 bash[24637]: audit 2024-09-16T23:55:10.777066+0000 mon.a (mon.0) 472 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:12.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:11 smithi103 bash[24637]: audit 2024-09-16T23:55:10.781024+0000 mon.a (mon.0) 473 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:55:12.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:11 smithi103 bash[24637]: audit 2024-09-16T23:55:10.782581+0000 mon.a (mon.0) 474 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:55:12.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:11 smithi103 bash[24637]: audit 2024-09-16T23:55:10.793990+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:13.170 INFO:teuthology.orchestra.run.smithi103.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.c/config 2024-09-16T23:55:14.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:13 smithi089 bash[24318]: cluster 2024-09-16T23:55:12.610924+0000 mgr.a (mgr.14150) 228 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-16T23:55:14.152 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:13 smithi103 bash[24637]: cluster 2024-09-16T23:55:12.610924+0000 mgr.a (mgr.14150) 228 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-16T23:55:14.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:13 smithi033 bash[22694]: cluster 2024-09-16T23:55:12.610924+0000 mgr.a (mgr.14150) 228 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-16T23:55:15.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:14 smithi103 bash[24637]: audit 2024-09-16T23:55:14.512264+0000 mgr.a (mgr.14150) 229 : audit [DBG] from='client.24190 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi103:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:55:15.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:14 smithi103 bash[24637]: audit 2024-09-16T23:55:14.519054+0000 mon.a (mon.0) 476 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T23:55:15.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:14 smithi103 bash[24637]: audit 2024-09-16T23:55:14.525127+0000 mon.a (mon.0) 477 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T23:55:15.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:14 smithi103 bash[24637]: audit 2024-09-16T23:55:14.526935+0000 mon.a (mon.0) 478 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:55:15.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:14 smithi033 bash[22694]: audit 2024-09-16T23:55:14.512264+0000 mgr.a (mgr.14150) 229 : audit [DBG] from='client.24190 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi103:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:55:15.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:14 smithi033 bash[22694]: audit 2024-09-16T23:55:14.519054+0000 mon.a (mon.0) 476 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T23:55:15.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:14 smithi033 bash[22694]: audit 2024-09-16T23:55:14.525127+0000 mon.a (mon.0) 477 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T23:55:15.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:14 smithi033 bash[22694]: audit 2024-09-16T23:55:14.526935+0000 mon.a (mon.0) 478 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:55:15.259 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:14 smithi089 bash[24318]: audit 2024-09-16T23:55:14.512264+0000 mgr.a (mgr.14150) 229 : audit [DBG] from='client.24190 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi103:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:55:15.259 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:14 smithi089 bash[24318]: audit 2024-09-16T23:55:14.519054+0000 mon.a (mon.0) 476 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T23:55:15.259 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:14 smithi089 bash[24318]: audit 2024-09-16T23:55:14.525127+0000 mon.a (mon.0) 477 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T23:55:15.259 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:14 smithi089 bash[24318]: audit 2024-09-16T23:55:14.526935+0000 mon.a (mon.0) 478 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:55:16.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:15 smithi103 bash[24637]: cluster 2024-09-16T23:55:14.611509+0000 mgr.a (mgr.14150) 230 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 61 KiB/s, 0 objects/s recovering 2024-09-16T23:55:16.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:15 smithi033 bash[22694]: cluster 2024-09-16T23:55:14.611509+0000 mgr.a (mgr.14150) 230 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 61 KiB/s, 0 objects/s recovering 2024-09-16T23:55:16.259 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:15 smithi089 bash[24318]: cluster 2024-09-16T23:55:14.611509+0000 mgr.a (mgr.14150) 230 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 61 KiB/s, 0 objects/s recovering 2024-09-16T23:55:18.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:17 smithi103 bash[24637]: cluster 2024-09-16T23:55:16.612038+0000 mgr.a (mgr.14150) 231 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 55 KiB/s, 0 objects/s recovering 2024-09-16T23:55:18.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:17 smithi033 bash[22694]: cluster 2024-09-16T23:55:16.612038+0000 mgr.a (mgr.14150) 231 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 55 KiB/s, 0 objects/s recovering 2024-09-16T23:55:18.259 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:17 smithi089 bash[24318]: cluster 2024-09-16T23:55:16.612038+0000 mgr.a (mgr.14150) 231 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 55 KiB/s, 0 objects/s recovering 2024-09-16T23:55:19.995 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:19 smithi103 bash[24637]: cluster 2024-09-16T23:55:18.612608+0000 mgr.a (mgr.14150) 232 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-16T23:55:20.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:19 smithi033 bash[22694]: cluster 2024-09-16T23:55:18.612608+0000 mgr.a (mgr.14150) 232 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-16T23:55:20.259 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:19 smithi089 bash[24318]: cluster 2024-09-16T23:55:18.612608+0000 mgr.a (mgr.14150) 232 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-16T23:55:22.048 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:21 smithi103 bash[24637]: cluster 2024-09-16T23:55:20.613141+0000 mgr.a (mgr.14150) 233 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:22.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:21 smithi033 bash[22694]: cluster 2024-09-16T23:55:20.613141+0000 mgr.a (mgr.14150) 233 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:22.260 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:21 smithi089 bash[24318]: cluster 2024-09-16T23:55:20.613141+0000 mgr.a (mgr.14150) 233 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:24.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:23 smithi103 bash[24637]: cluster 2024-09-16T23:55:22.613624+0000 mgr.a (mgr.14150) 234 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:24.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:23 smithi103 bash[24637]: audit 2024-09-16T23:55:22.785247+0000 mon.c (mon.1) 5 : audit [INF] from='client.? 172.21.15.103:0/2383845011' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cc9935c5-54eb-42bf-b96e-43c7c6e8ce5d"}]: dispatch 2024-09-16T23:55:24.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:23 smithi103 bash[24637]: audit 2024-09-16T23:55:22.787273+0000 mon.a (mon.0) 479 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cc9935c5-54eb-42bf-b96e-43c7c6e8ce5d"}]: dispatch 2024-09-16T23:55:24.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:23 smithi103 bash[24637]: audit 2024-09-16T23:55:22.791143+0000 mon.a (mon.0) 480 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cc9935c5-54eb-42bf-b96e-43c7c6e8ce5d"}]': finished 2024-09-16T23:55:24.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:23 smithi103 bash[24637]: cluster 2024-09-16T23:55:22.795998+0000 mon.a (mon.0) 481 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-16T23:55:24.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:23 smithi103 bash[24637]: audit 2024-09-16T23:55:22.796512+0000 mon.a (mon.0) 482 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T23:55:24.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:23 smithi103 bash[24637]: audit 2024-09-16T23:55:23.409925+0000 mon.c (mon.1) 6 : audit [DBG] from='client.? 172.21.15.103:0/3606041557' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T23:55:24.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:23 smithi033 bash[22694]: cluster 2024-09-16T23:55:22.613624+0000 mgr.a (mgr.14150) 234 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:24.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:23 smithi033 bash[22694]: audit 2024-09-16T23:55:22.785247+0000 mon.c (mon.1) 5 : audit [INF] from='client.? 172.21.15.103:0/2383845011' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cc9935c5-54eb-42bf-b96e-43c7c6e8ce5d"}]: dispatch 2024-09-16T23:55:24.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:23 smithi033 bash[22694]: audit 2024-09-16T23:55:22.787273+0000 mon.a (mon.0) 479 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cc9935c5-54eb-42bf-b96e-43c7c6e8ce5d"}]: dispatch 2024-09-16T23:55:24.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:23 smithi033 bash[22694]: audit 2024-09-16T23:55:22.791143+0000 mon.a (mon.0) 480 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cc9935c5-54eb-42bf-b96e-43c7c6e8ce5d"}]': finished 2024-09-16T23:55:24.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:23 smithi033 bash[22694]: cluster 2024-09-16T23:55:22.795998+0000 mon.a (mon.0) 481 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-16T23:55:24.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:23 smithi033 bash[22694]: audit 2024-09-16T23:55:22.796512+0000 mon.a (mon.0) 482 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T23:55:24.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:23 smithi033 bash[22694]: audit 2024-09-16T23:55:23.409925+0000 mon.c (mon.1) 6 : audit [DBG] from='client.? 172.21.15.103:0/3606041557' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T23:55:24.259 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:23 smithi089 bash[24318]: cluster 2024-09-16T23:55:22.613624+0000 mgr.a (mgr.14150) 234 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:24.259 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:23 smithi089 bash[24318]: audit 2024-09-16T23:55:22.785247+0000 mon.c (mon.1) 5 : audit [INF] from='client.? 172.21.15.103:0/2383845011' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cc9935c5-54eb-42bf-b96e-43c7c6e8ce5d"}]: dispatch 2024-09-16T23:55:24.259 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:23 smithi089 bash[24318]: audit 2024-09-16T23:55:22.787273+0000 mon.a (mon.0) 479 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cc9935c5-54eb-42bf-b96e-43c7c6e8ce5d"}]: dispatch 2024-09-16T23:55:24.259 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:23 smithi089 bash[24318]: audit 2024-09-16T23:55:22.791143+0000 mon.a (mon.0) 480 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cc9935c5-54eb-42bf-b96e-43c7c6e8ce5d"}]': finished 2024-09-16T23:55:24.259 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:23 smithi089 bash[24318]: cluster 2024-09-16T23:55:22.795998+0000 mon.a (mon.0) 481 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-16T23:55:24.259 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:23 smithi089 bash[24318]: audit 2024-09-16T23:55:22.796512+0000 mon.a (mon.0) 482 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T23:55:24.259 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:23 smithi089 bash[24318]: audit 2024-09-16T23:55:23.409925+0000 mon.c (mon.1) 6 : audit [DBG] from='client.? 172.21.15.103:0/3606041557' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T23:55:26.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:25 smithi103 bash[24637]: cluster 2024-09-16T23:55:24.614137+0000 mgr.a (mgr.14150) 235 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:26.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:25 smithi033 bash[22694]: cluster 2024-09-16T23:55:24.614137+0000 mgr.a (mgr.14150) 235 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:26.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:25 smithi089 bash[24318]: cluster 2024-09-16T23:55:24.614137+0000 mgr.a (mgr.14150) 235 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:28.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:27 smithi103 bash[24637]: cluster 2024-09-16T23:55:26.614665+0000 mgr.a (mgr.14150) 236 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:28.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:27 smithi033 bash[22694]: cluster 2024-09-16T23:55:26.614665+0000 mgr.a (mgr.14150) 236 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:28.259 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:27 smithi089 bash[24318]: cluster 2024-09-16T23:55:26.614665+0000 mgr.a (mgr.14150) 236 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:30.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:29 smithi103 bash[24637]: cluster 2024-09-16T23:55:28.615185+0000 mgr.a (mgr.14150) 237 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:30.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:29 smithi033 bash[22694]: cluster 2024-09-16T23:55:28.615185+0000 mgr.a (mgr.14150) 237 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:30.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:29 smithi089 bash[24318]: cluster 2024-09-16T23:55:28.615185+0000 mgr.a (mgr.14150) 237 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:32.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:31 smithi103 bash[24637]: cluster 2024-09-16T23:55:30.615751+0000 mgr.a (mgr.14150) 238 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:32.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:31 smithi033 bash[22694]: cluster 2024-09-16T23:55:30.615751+0000 mgr.a (mgr.14150) 238 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:32.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:31 smithi089 bash[24318]: cluster 2024-09-16T23:55:30.615751+0000 mgr.a (mgr.14150) 238 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:33.995 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:33 smithi103 bash[24637]: cluster 2024-09-16T23:55:32.616266+0000 mgr.a (mgr.14150) 239 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:34.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:33 smithi033 bash[22694]: cluster 2024-09-16T23:55:32.616266+0000 mgr.a (mgr.14150) 239 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:34.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:33 smithi089 bash[24318]: cluster 2024-09-16T23:55:32.616266+0000 mgr.a (mgr.14150) 239 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:36.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:35 smithi103 bash[24637]: cluster 2024-09-16T23:55:34.616774+0000 mgr.a (mgr.14150) 240 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:36.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:35 smithi103 bash[24637]: audit 2024-09-16T23:55:35.802302+0000 mon.a (mon.0) 483 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-16T23:55:36.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:35 smithi103 bash[24637]: audit 2024-09-16T23:55:35.803977+0000 mon.a (mon.0) 484 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:55:36.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:35 smithi033 bash[22694]: cluster 2024-09-16T23:55:34.616774+0000 mgr.a (mgr.14150) 240 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:36.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:35 smithi033 bash[22694]: audit 2024-09-16T23:55:35.802302+0000 mon.a (mon.0) 483 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-16T23:55:36.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:35 smithi033 bash[22694]: audit 2024-09-16T23:55:35.803977+0000 mon.a (mon.0) 484 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:55:36.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:35 smithi089 bash[24318]: cluster 2024-09-16T23:55:34.616774+0000 mgr.a (mgr.14150) 240 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:36.259 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:35 smithi089 bash[24318]: audit 2024-09-16T23:55:35.802302+0000 mon.a (mon.0) 483 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-16T23:55:36.259 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:35 smithi089 bash[24318]: audit 2024-09-16T23:55:35.803977+0000 mon.a (mon.0) 484 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:55:37.220 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:36 smithi103 bash[24637]: cephadm 2024-09-16T23:55:35.805514+0000 mgr.a (mgr.14150) 241 : cephadm [INF] Deploying daemon osd.4 on smithi103 2024-09-16T23:55:37.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:36 smithi033 bash[22694]: cephadm 2024-09-16T23:55:35.805514+0000 mgr.a (mgr.14150) 241 : cephadm [INF] Deploying daemon osd.4 on smithi103 2024-09-16T23:55:37.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:36 smithi089 bash[24318]: cephadm 2024-09-16T23:55:35.805514+0000 mgr.a (mgr.14150) 241 : cephadm [INF] Deploying daemon osd.4 on smithi103 2024-09-16T23:55:38.166 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:37 smithi103 bash[24637]: cluster 2024-09-16T23:55:36.617288+0000 mgr.a (mgr.14150) 242 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:38.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:37 smithi033 bash[22694]: cluster 2024-09-16T23:55:36.617288+0000 mgr.a (mgr.14150) 242 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:38.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:37 smithi089 bash[24318]: cluster 2024-09-16T23:55:36.617288+0000 mgr.a (mgr.14150) 242 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:40.119 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:39 smithi103 bash[24637]: cluster 2024-09-16T23:55:38.617833+0000 mgr.a (mgr.14150) 243 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:40.119 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:40 smithi103 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:55:40.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:39 smithi033 bash[22694]: cluster 2024-09-16T23:55:38.617833+0000 mgr.a (mgr.14150) 243 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:40.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:39 smithi089 bash[24318]: cluster 2024-09-16T23:55:38.617833+0000 mgr.a (mgr.14150) 243 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:40.462 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:40 smithi103 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:55:41.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:40 smithi103 bash[24637]: audit 2024-09-16T23:55:40.388055+0000 mon.a (mon.0) 485 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:55:41.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:40 smithi103 bash[24637]: audit 2024-09-16T23:55:40.395466+0000 mon.a (mon.0) 486 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:41.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:40 smithi103 bash[24637]: audit 2024-09-16T23:55:40.403139+0000 mon.a (mon.0) 487 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:41.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:40 smithi033 bash[22694]: audit 2024-09-16T23:55:40.388055+0000 mon.a (mon.0) 485 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:55:41.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:40 smithi033 bash[22694]: audit 2024-09-16T23:55:40.395466+0000 mon.a (mon.0) 486 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:41.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:40 smithi033 bash[22694]: audit 2024-09-16T23:55:40.403139+0000 mon.a (mon.0) 487 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:41.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:40 smithi089 bash[24318]: audit 2024-09-16T23:55:40.388055+0000 mon.a (mon.0) 485 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:55:41.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:40 smithi089 bash[24318]: audit 2024-09-16T23:55:40.395466+0000 mon.a (mon.0) 486 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:41.259 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:40 smithi089 bash[24318]: audit 2024-09-16T23:55:40.403139+0000 mon.a (mon.0) 487 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:42.745 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:42 smithi103 bash[24637]: cluster 2024-09-16T23:55:40.618339+0000 mgr.a (mgr.14150) 244 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:42.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:42 smithi033 bash[22694]: cluster 2024-09-16T23:55:40.618339+0000 mgr.a (mgr.14150) 244 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:42.758 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:42 smithi089 bash[24318]: cluster 2024-09-16T23:55:40.618339+0000 mgr.a (mgr.14150) 244 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:44.745 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:44 smithi103 bash[24637]: cluster 2024-09-16T23:55:42.618883+0000 mgr.a (mgr.14150) 245 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:44.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:44 smithi033 bash[22694]: cluster 2024-09-16T23:55:42.618883+0000 mgr.a (mgr.14150) 245 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:44.758 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:44 smithi089 bash[24318]: cluster 2024-09-16T23:55:42.618883+0000 mgr.a (mgr.14150) 245 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:46.745 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:46 smithi103 bash[24637]: cluster 2024-09-16T23:55:44.619434+0000 mgr.a (mgr.14150) 246 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:46.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:46 smithi033 bash[22694]: cluster 2024-09-16T23:55:44.619434+0000 mgr.a (mgr.14150) 246 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:46.758 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:46 smithi089 bash[24318]: cluster 2024-09-16T23:55:44.619434+0000 mgr.a (mgr.14150) 246 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:47.995 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:47 smithi103 bash[24637]: cluster 2024-09-16T23:55:46.619964+0000 mgr.a (mgr.14150) 247 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:47.995 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:47 smithi103 bash[24637]: audit 2024-09-16T23:55:46.717280+0000 mon.a (mon.0) 488 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:47.995 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:47 smithi103 bash[24637]: audit 2024-09-16T23:55:46.726215+0000 mon.a (mon.0) 489 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:47.995 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:47 smithi103 bash[24637]: audit 2024-09-16T23:55:47.437603+0000 mon.a (mon.0) 490 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:55:47.995 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:47 smithi103 bash[24637]: audit 2024-09-16T23:55:47.439145+0000 mon.a (mon.0) 491 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:55:47.995 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:47 smithi103 bash[24637]: audit 2024-09-16T23:55:47.449889+0000 mon.a (mon.0) 492 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:47.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:47 smithi033 bash[22694]: cluster 2024-09-16T23:55:46.619964+0000 mgr.a (mgr.14150) 247 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:48.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:47 smithi033 bash[22694]: audit 2024-09-16T23:55:46.717280+0000 mon.a (mon.0) 488 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:48.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:47 smithi033 bash[22694]: audit 2024-09-16T23:55:46.726215+0000 mon.a (mon.0) 489 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:48.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:47 smithi033 bash[22694]: audit 2024-09-16T23:55:47.437603+0000 mon.a (mon.0) 490 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:55:48.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:47 smithi033 bash[22694]: audit 2024-09-16T23:55:47.439145+0000 mon.a (mon.0) 491 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:55:48.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:47 smithi033 bash[22694]: audit 2024-09-16T23:55:47.449889+0000 mon.a (mon.0) 492 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:48.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:47 smithi089 bash[24318]: cluster 2024-09-16T23:55:46.619964+0000 mgr.a (mgr.14150) 247 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:48.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:47 smithi089 bash[24318]: audit 2024-09-16T23:55:46.717280+0000 mon.a (mon.0) 488 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:48.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:47 smithi089 bash[24318]: audit 2024-09-16T23:55:46.726215+0000 mon.a (mon.0) 489 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:48.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:47 smithi089 bash[24318]: audit 2024-09-16T23:55:47.437603+0000 mon.a (mon.0) 490 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:55:48.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:47 smithi089 bash[24318]: audit 2024-09-16T23:55:47.439145+0000 mon.a (mon.0) 491 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:55:48.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:47 smithi089 bash[24318]: audit 2024-09-16T23:55:47.449889+0000 mon.a (mon.0) 492 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:49.995 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:49 smithi103 bash[24637]: cluster 2024-09-16T23:55:48.620567+0000 mgr.a (mgr.14150) 248 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:49.995 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:49 smithi103 bash[24637]: audit 2024-09-16T23:55:49.313090+0000 mon.c (mon.1) 7 : audit [INF] from='osd.4 [v2:172.21.15.103:6800/757670800,v1:172.21.15.103:6801/757670800]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-16T23:55:49.995 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:49 smithi103 bash[24637]: audit 2024-09-16T23:55:49.314969+0000 mon.a (mon.0) 493 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-16T23:55:49.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:49 smithi033 bash[22694]: cluster 2024-09-16T23:55:48.620567+0000 mgr.a (mgr.14150) 248 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:49.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:49 smithi033 bash[22694]: audit 2024-09-16T23:55:49.313090+0000 mon.c (mon.1) 7 : audit [INF] from='osd.4 [v2:172.21.15.103:6800/757670800,v1:172.21.15.103:6801/757670800]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-16T23:55:50.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:49 smithi033 bash[22694]: audit 2024-09-16T23:55:49.314969+0000 mon.a (mon.0) 493 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-16T23:55:50.008 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:49 smithi089 bash[24318]: cluster 2024-09-16T23:55:48.620567+0000 mgr.a (mgr.14150) 248 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:50.008 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:49 smithi089 bash[24318]: audit 2024-09-16T23:55:49.313090+0000 mon.c (mon.1) 7 : audit [INF] from='osd.4 [v2:172.21.15.103:6800/757670800,v1:172.21.15.103:6801/757670800]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-16T23:55:50.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:49 smithi089 bash[24318]: audit 2024-09-16T23:55:49.314969+0000 mon.a (mon.0) 493 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-16T23:55:50.995 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:50 smithi103 bash[24637]: audit 2024-09-16T23:55:49.729373+0000 mon.a (mon.0) 494 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-16T23:55:50.995 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:50 smithi103 bash[24637]: audit 2024-09-16T23:55:49.734250+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.103:6800/757670800,v1:172.21.15.103:6801/757670800]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi103", "root=default"]}]: dispatch 2024-09-16T23:55:50.995 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:50 smithi103 bash[24637]: cluster 2024-09-16T23:55:49.735423+0000 mon.a (mon.0) 495 : cluster [DBG] osdmap e31: 5 total, 4 up, 5 in 2024-09-16T23:55:50.995 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:50 smithi103 bash[24637]: audit 2024-09-16T23:55:49.735924+0000 mon.a (mon.0) 496 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T23:55:50.995 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:50 smithi103 bash[24637]: audit 2024-09-16T23:55:49.736684+0000 mon.a (mon.0) 497 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi103", "root=default"]}]: dispatch 2024-09-16T23:55:51.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:50 smithi033 bash[22694]: audit 2024-09-16T23:55:49.729373+0000 mon.a (mon.0) 494 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-16T23:55:51.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:50 smithi033 bash[22694]: audit 2024-09-16T23:55:49.734250+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.103:6800/757670800,v1:172.21.15.103:6801/757670800]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi103", "root=default"]}]: dispatch 2024-09-16T23:55:51.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:50 smithi033 bash[22694]: cluster 2024-09-16T23:55:49.735423+0000 mon.a (mon.0) 495 : cluster [DBG] osdmap e31: 5 total, 4 up, 5 in 2024-09-16T23:55:51.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:50 smithi033 bash[22694]: audit 2024-09-16T23:55:49.735924+0000 mon.a (mon.0) 496 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T23:55:51.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:50 smithi033 bash[22694]: audit 2024-09-16T23:55:49.736684+0000 mon.a (mon.0) 497 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi103", "root=default"]}]: dispatch 2024-09-16T23:55:51.008 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:50 smithi089 bash[24318]: audit 2024-09-16T23:55:49.729373+0000 mon.a (mon.0) 494 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-16T23:55:51.008 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:50 smithi089 bash[24318]: audit 2024-09-16T23:55:49.734250+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.103:6800/757670800,v1:172.21.15.103:6801/757670800]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi103", "root=default"]}]: dispatch 2024-09-16T23:55:51.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:50 smithi089 bash[24318]: cluster 2024-09-16T23:55:49.735423+0000 mon.a (mon.0) 495 : cluster [DBG] osdmap e31: 5 total, 4 up, 5 in 2024-09-16T23:55:51.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:50 smithi089 bash[24318]: audit 2024-09-16T23:55:49.735924+0000 mon.a (mon.0) 496 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T23:55:51.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:50 smithi089 bash[24318]: audit 2024-09-16T23:55:49.736684+0000 mon.a (mon.0) 497 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi103", "root=default"]}]: dispatch 2024-09-16T23:55:51.114 INFO:teuthology.orchestra.run.smithi103.stdout:Created osd(s) 4 on host 'smithi103' 2024-09-16T23:55:51.697 DEBUG:teuthology.orchestra.run.smithi103:osd.4> sudo journalctl -f -n 0 -u ceph-f4fb0768-7485-11ef-bceb-c7b262605968@osd.4.service 2024-09-16T23:55:51.700 INFO:tasks.cephadm:Deploying osd.5 on smithi103 with /dev/vg_nvme/lv_3... 2024-09-16T23:55:51.700 DEBUG:teuthology.orchestra.run.smithi103:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_3 2024-09-16T23:55:51.995 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:51 smithi103 bash[24637]: cluster 2024-09-16T23:55:50.621097+0000 mgr.a (mgr.14150) 249 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:51.996 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:51 smithi103 bash[24637]: audit 2024-09-16T23:55:50.733062+0000 mon.a (mon.0) 498 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi103", "root=default"]}]': finished 2024-09-16T23:55:51.996 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:51 smithi103 bash[24637]: cluster 2024-09-16T23:55:50.740775+0000 mon.a (mon.0) 499 : cluster [DBG] osdmap e32: 5 total, 4 up, 5 in 2024-09-16T23:55:51.996 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:51 smithi103 bash[24637]: audit 2024-09-16T23:55:50.741766+0000 mon.a (mon.0) 500 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T23:55:51.996 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:51 smithi103 bash[24637]: audit 2024-09-16T23:55:50.750922+0000 mon.a (mon.0) 501 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T23:55:51.996 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:51 smithi103 bash[24637]: audit 2024-09-16T23:55:51.023991+0000 mon.a (mon.0) 502 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:55:51.996 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:51 smithi103 bash[24637]: audit 2024-09-16T23:55:51.057304+0000 mon.a (mon.0) 503 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:51.996 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:51 smithi103 bash[24637]: audit 2024-09-16T23:55:51.116098+0000 mon.a (mon.0) 504 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:51.996 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:51 smithi103 bash[24637]: audit 2024-09-16T23:55:51.235393+0000 mon.a (mon.0) 505 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-16T23:55:51.996 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:51 smithi103 bash[24637]: cluster 2024-09-16T23:55:51.740574+0000 mon.a (mon.0) 506 : cluster [INF] osd.4 [v2:172.21.15.103:6800/757670800,v1:172.21.15.103:6801/757670800] boot 2024-09-16T23:55:51.996 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:51 smithi103 bash[24637]: cluster 2024-09-16T23:55:51.740681+0000 mon.a (mon.0) 507 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-16T23:55:51.996 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:51 smithi103 bash[24637]: audit 2024-09-16T23:55:51.741021+0000 mon.a (mon.0) 508 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T23:55:52.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:51 smithi033 bash[22694]: cluster 2024-09-16T23:55:50.621097+0000 mgr.a (mgr.14150) 249 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:52.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:51 smithi033 bash[22694]: audit 2024-09-16T23:55:50.733062+0000 mon.a (mon.0) 498 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi103", "root=default"]}]': finished 2024-09-16T23:55:52.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:51 smithi033 bash[22694]: cluster 2024-09-16T23:55:50.740775+0000 mon.a (mon.0) 499 : cluster [DBG] osdmap e32: 5 total, 4 up, 5 in 2024-09-16T23:55:52.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:51 smithi033 bash[22694]: audit 2024-09-16T23:55:50.741766+0000 mon.a (mon.0) 500 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T23:55:52.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:51 smithi033 bash[22694]: audit 2024-09-16T23:55:50.750922+0000 mon.a (mon.0) 501 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T23:55:52.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:51 smithi033 bash[22694]: audit 2024-09-16T23:55:51.023991+0000 mon.a (mon.0) 502 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:55:52.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:51 smithi033 bash[22694]: audit 2024-09-16T23:55:51.057304+0000 mon.a (mon.0) 503 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:52.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:51 smithi033 bash[22694]: audit 2024-09-16T23:55:51.116098+0000 mon.a (mon.0) 504 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:52.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:51 smithi033 bash[22694]: audit 2024-09-16T23:55:51.235393+0000 mon.a (mon.0) 505 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-16T23:55:52.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:51 smithi033 bash[22694]: cluster 2024-09-16T23:55:51.740574+0000 mon.a (mon.0) 506 : cluster [INF] osd.4 [v2:172.21.15.103:6800/757670800,v1:172.21.15.103:6801/757670800] boot 2024-09-16T23:55:52.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:51 smithi033 bash[22694]: cluster 2024-09-16T23:55:51.740681+0000 mon.a (mon.0) 507 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-16T23:55:52.001 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:51 smithi033 bash[22694]: audit 2024-09-16T23:55:51.741021+0000 mon.a (mon.0) 508 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T23:55:52.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:51 smithi089 bash[24318]: cluster 2024-09-16T23:55:50.621097+0000 mgr.a (mgr.14150) 249 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:55:52.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:51 smithi089 bash[24318]: audit 2024-09-16T23:55:50.733062+0000 mon.a (mon.0) 498 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi103", "root=default"]}]': finished 2024-09-16T23:55:52.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:51 smithi089 bash[24318]: cluster 2024-09-16T23:55:50.740775+0000 mon.a (mon.0) 499 : cluster [DBG] osdmap e32: 5 total, 4 up, 5 in 2024-09-16T23:55:52.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:51 smithi089 bash[24318]: audit 2024-09-16T23:55:50.741766+0000 mon.a (mon.0) 500 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T23:55:52.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:51 smithi089 bash[24318]: audit 2024-09-16T23:55:50.750922+0000 mon.a (mon.0) 501 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T23:55:52.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:51 smithi089 bash[24318]: audit 2024-09-16T23:55:51.023991+0000 mon.a (mon.0) 502 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:55:52.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:51 smithi089 bash[24318]: audit 2024-09-16T23:55:51.057304+0000 mon.a (mon.0) 503 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:52.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:51 smithi089 bash[24318]: audit 2024-09-16T23:55:51.116098+0000 mon.a (mon.0) 504 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:55:52.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:51 smithi089 bash[24318]: audit 2024-09-16T23:55:51.235393+0000 mon.a (mon.0) 505 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-16T23:55:52.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:51 smithi089 bash[24318]: cluster 2024-09-16T23:55:51.740574+0000 mon.a (mon.0) 506 : cluster [INF] osd.4 [v2:172.21.15.103:6800/757670800,v1:172.21.15.103:6801/757670800] boot 2024-09-16T23:55:52.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:51 smithi089 bash[24318]: cluster 2024-09-16T23:55:51.740681+0000 mon.a (mon.0) 507 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-16T23:55:52.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:51 smithi089 bash[24318]: audit 2024-09-16T23:55:51.741021+0000 mon.a (mon.0) 508 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T23:55:53.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:52 smithi033 bash[22694]: cluster 2024-09-16T23:55:50.309623+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T23:55:53.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:52 smithi033 bash[22694]: cluster 2024-09-16T23:55:50.309727+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T23:55:53.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:52 smithi033 bash[22694]: cluster 2024-09-16T23:55:52.743294+0000 mon.a (mon.0) 509 : cluster [DBG] osdmap e34: 5 total, 5 up, 5 in 2024-09-16T23:55:53.008 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:52 smithi089 bash[24318]: cluster 2024-09-16T23:55:50.309623+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T23:55:53.008 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:52 smithi089 bash[24318]: cluster 2024-09-16T23:55:50.309727+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T23:55:53.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:52 smithi089 bash[24318]: cluster 2024-09-16T23:55:52.743294+0000 mon.a (mon.0) 509 : cluster [DBG] osdmap e34: 5 total, 5 up, 5 in 2024-09-16T23:55:53.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:52 smithi103 bash[24637]: cluster 2024-09-16T23:55:50.309623+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T23:55:53.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:52 smithi103 bash[24637]: cluster 2024-09-16T23:55:50.309727+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T23:55:53.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:52 smithi103 bash[24637]: cluster 2024-09-16T23:55:52.743294+0000 mon.a (mon.0) 509 : cluster [DBG] osdmap e34: 5 total, 5 up, 5 in 2024-09-16T23:55:53.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:53 smithi033 bash[22694]: cluster 2024-09-16T23:55:52.621647+0000 mgr.a (mgr.14150) 250 : cluster [DBG] pgmap v213: 1 pgs: 1 remapped+peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:55:54.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:53 smithi033 bash[22694]: cluster 2024-09-16T23:55:53.745457+0000 mon.a (mon.0) 510 : cluster [DBG] osdmap e35: 5 total, 5 up, 5 in 2024-09-16T23:55:54.008 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:53 smithi089 bash[24318]: cluster 2024-09-16T23:55:52.621647+0000 mgr.a (mgr.14150) 250 : cluster [DBG] pgmap v213: 1 pgs: 1 remapped+peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:55:54.009 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:53 smithi089 bash[24318]: cluster 2024-09-16T23:55:53.745457+0000 mon.a (mon.0) 510 : cluster [DBG] osdmap e35: 5 total, 5 up, 5 in 2024-09-16T23:55:54.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:53 smithi103 bash[24637]: cluster 2024-09-16T23:55:52.621647+0000 mgr.a (mgr.14150) 250 : cluster [DBG] pgmap v213: 1 pgs: 1 remapped+peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:55:54.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:53 smithi103 bash[24637]: cluster 2024-09-16T23:55:53.745457+0000 mon.a (mon.0) 510 : cluster [DBG] osdmap e35: 5 total, 5 up, 5 in 2024-09-16T23:55:56.130 INFO:teuthology.orchestra.run.smithi103.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.c/config 2024-09-16T23:55:56.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:55 smithi103 bash[24637]: cluster 2024-09-16T23:55:54.622209+0000 mgr.a (mgr.14150) 251 : cluster [DBG] pgmap v216: 1 pgs: 1 remapped+peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:55:56.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:55 smithi103 bash[24637]: cluster 2024-09-16T23:55:54.766941+0000 mon.a (mon.0) 511 : cluster [DBG] osdmap e36: 5 total, 5 up, 5 in 2024-09-16T23:55:56.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:55 smithi033 bash[22694]: cluster 2024-09-16T23:55:54.622209+0000 mgr.a (mgr.14150) 251 : cluster [DBG] pgmap v216: 1 pgs: 1 remapped+peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:55:56.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:55 smithi033 bash[22694]: cluster 2024-09-16T23:55:54.766941+0000 mon.a (mon.0) 511 : cluster [DBG] osdmap e36: 5 total, 5 up, 5 in 2024-09-16T23:55:56.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:55 smithi089 bash[24318]: cluster 2024-09-16T23:55:54.622209+0000 mgr.a (mgr.14150) 251 : cluster [DBG] pgmap v216: 1 pgs: 1 remapped+peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:55:56.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:55 smithi089 bash[24318]: cluster 2024-09-16T23:55:54.766941+0000 mon.a (mon.0) 511 : cluster [DBG] osdmap e36: 5 total, 5 up, 5 in 2024-09-16T23:55:57.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:56 smithi103 bash[24637]: cluster 2024-09-16T23:55:55.774020+0000 mon.a (mon.0) 512 : cluster [DBG] osdmap e37: 5 total, 5 up, 5 in 2024-09-16T23:55:57.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:56 smithi033 bash[22694]: cluster 2024-09-16T23:55:55.774020+0000 mon.a (mon.0) 512 : cluster [DBG] osdmap e37: 5 total, 5 up, 5 in 2024-09-16T23:55:57.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:56 smithi089 bash[24318]: cluster 2024-09-16T23:55:55.774020+0000 mon.a (mon.0) 512 : cluster [DBG] osdmap e37: 5 total, 5 up, 5 in 2024-09-16T23:55:57.995 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:57 smithi103 bash[24637]: cluster 2024-09-16T23:55:56.622777+0000 mgr.a (mgr.14150) 252 : cluster [DBG] pgmap v219: 1 pgs: 1 remapped+peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:55:58.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:57 smithi033 bash[22694]: cluster 2024-09-16T23:55:56.622777+0000 mgr.a (mgr.14150) 252 : cluster [DBG] pgmap v219: 1 pgs: 1 remapped+peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:55:58.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:57 smithi089 bash[24318]: cluster 2024-09-16T23:55:56.622777+0000 mgr.a (mgr.14150) 252 : cluster [DBG] pgmap v219: 1 pgs: 1 remapped+peering; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:00.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:55:59 smithi103 bash[24637]: cluster 2024-09-16T23:55:58.623376+0000 mgr.a (mgr.14150) 253 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail; 98 KiB/s, 0 objects/s recovering 2024-09-16T23:56:00.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:55:59 smithi033 bash[22694]: cluster 2024-09-16T23:55:58.623376+0000 mgr.a (mgr.14150) 253 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail; 98 KiB/s, 0 objects/s recovering 2024-09-16T23:56:00.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:55:59 smithi089 bash[24318]: cluster 2024-09-16T23:55:58.623376+0000 mgr.a (mgr.14150) 253 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail; 98 KiB/s, 0 objects/s recovering 2024-09-16T23:56:01.015 INFO:teuthology.orchestra.run.smithi103.stdout: 2024-09-16T23:56:01.058 DEBUG:teuthology.orchestra.run.smithi103:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi103:vg_nvme/lv_3 2024-09-16T23:56:02.042 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:01 smithi103 bash[24637]: cluster 2024-09-16T23:56:00.623922+0000 mgr.a (mgr.14150) 254 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail; 84 KiB/s, 0 objects/s recovering 2024-09-16T23:56:02.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:01 smithi033 bash[22694]: cluster 2024-09-16T23:56:00.623922+0000 mgr.a (mgr.14150) 254 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail; 84 KiB/s, 0 objects/s recovering 2024-09-16T23:56:02.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:01 smithi089 bash[24318]: cluster 2024-09-16T23:56:00.623922+0000 mgr.a (mgr.14150) 254 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail; 84 KiB/s, 0 objects/s recovering 2024-09-16T23:56:04.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:03 smithi103 bash[24637]: cluster 2024-09-16T23:56:02.624531+0000 mgr.a (mgr.14150) 255 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-16T23:56:04.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:03 smithi103 bash[24637]: audit 2024-09-16T23:56:03.694650+0000 mon.a (mon.0) 513 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:04.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:03 smithi103 bash[24637]: audit 2024-09-16T23:56:03.703442+0000 mon.a (mon.0) 514 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:04.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:03 smithi103 bash[24637]: audit 2024-09-16T23:56:03.705864+0000 mon.a (mon.0) 515 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:56:04.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:03 smithi103 bash[24637]: audit 2024-09-16T23:56:03.713228+0000 mon.a (mon.0) 516 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:04.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:03 smithi103 bash[24637]: audit 2024-09-16T23:56:03.717376+0000 mon.a (mon.0) 517 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:56:04.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:03 smithi103 bash[24637]: audit 2024-09-16T23:56:03.719188+0000 mon.a (mon.0) 518 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:56:04.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:03 smithi103 bash[24637]: audit 2024-09-16T23:56:03.728982+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:04.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:03 smithi033 bash[22694]: cluster 2024-09-16T23:56:02.624531+0000 mgr.a (mgr.14150) 255 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-16T23:56:04.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:03 smithi033 bash[22694]: audit 2024-09-16T23:56:03.694650+0000 mon.a (mon.0) 513 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:04.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:03 smithi033 bash[22694]: audit 2024-09-16T23:56:03.703442+0000 mon.a (mon.0) 514 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:04.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:03 smithi033 bash[22694]: audit 2024-09-16T23:56:03.705864+0000 mon.a (mon.0) 515 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:56:04.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:03 smithi033 bash[22694]: audit 2024-09-16T23:56:03.713228+0000 mon.a (mon.0) 516 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:04.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:03 smithi033 bash[22694]: audit 2024-09-16T23:56:03.717376+0000 mon.a (mon.0) 517 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:56:04.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:03 smithi033 bash[22694]: audit 2024-09-16T23:56:03.719188+0000 mon.a (mon.0) 518 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:56:04.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:03 smithi033 bash[22694]: audit 2024-09-16T23:56:03.728982+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:04.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:03 smithi089 bash[24318]: cluster 2024-09-16T23:56:02.624531+0000 mgr.a (mgr.14150) 255 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-16T23:56:04.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:03 smithi089 bash[24318]: audit 2024-09-16T23:56:03.694650+0000 mon.a (mon.0) 513 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:04.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:03 smithi089 bash[24318]: audit 2024-09-16T23:56:03.703442+0000 mon.a (mon.0) 514 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:04.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:03 smithi089 bash[24318]: audit 2024-09-16T23:56:03.705864+0000 mon.a (mon.0) 515 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:56:04.259 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:03 smithi089 bash[24318]: audit 2024-09-16T23:56:03.713228+0000 mon.a (mon.0) 516 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:04.259 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:03 smithi089 bash[24318]: audit 2024-09-16T23:56:03.717376+0000 mon.a (mon.0) 517 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:56:04.259 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:03 smithi089 bash[24318]: audit 2024-09-16T23:56:03.719188+0000 mon.a (mon.0) 518 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:56:04.259 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:03 smithi089 bash[24318]: audit 2024-09-16T23:56:03.728982+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:05.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:04 smithi103 bash[24637]: cephadm 2024-09-16T23:56:03.686477+0000 mgr.a (mgr.14150) 256 : cephadm [INF] Detected new or changed devices on smithi103 2024-09-16T23:56:05.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:04 smithi103 bash[24637]: cephadm 2024-09-16T23:56:03.707329+0000 mgr.a (mgr.14150) 257 : cephadm [INF] Adjusting osd_memory_target on smithi103 to 21361M 2024-09-16T23:56:05.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:04 smithi033 bash[22694]: cephadm 2024-09-16T23:56:03.686477+0000 mgr.a (mgr.14150) 256 : cephadm [INF] Detected new or changed devices on smithi103 2024-09-16T23:56:05.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:04 smithi033 bash[22694]: cephadm 2024-09-16T23:56:03.707329+0000 mgr.a (mgr.14150) 257 : cephadm [INF] Adjusting osd_memory_target on smithi103 to 21361M 2024-09-16T23:56:05.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:04 smithi089 bash[24318]: cephadm 2024-09-16T23:56:03.686477+0000 mgr.a (mgr.14150) 256 : cephadm [INF] Detected new or changed devices on smithi103 2024-09-16T23:56:05.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:04 smithi089 bash[24318]: cephadm 2024-09-16T23:56:03.707329+0000 mgr.a (mgr.14150) 257 : cephadm [INF] Adjusting osd_memory_target on smithi103 to 21361M 2024-09-16T23:56:06.140 INFO:teuthology.orchestra.run.smithi103.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.c/config 2024-09-16T23:56:06.236 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:05 smithi103 bash[24637]: cluster 2024-09-16T23:56:04.625092+0000 mgr.a (mgr.14150) 258 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-16T23:56:06.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:05 smithi033 bash[22694]: cluster 2024-09-16T23:56:04.625092+0000 mgr.a (mgr.14150) 258 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-16T23:56:06.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:05 smithi089 bash[24318]: cluster 2024-09-16T23:56:04.625092+0000 mgr.a (mgr.14150) 258 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-16T23:56:08.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:07 smithi103 bash[24637]: cluster 2024-09-16T23:56:06.625670+0000 mgr.a (mgr.14150) 259 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 53 KiB/s, 0 objects/s recovering 2024-09-16T23:56:08.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:07 smithi103 bash[24637]: audit 2024-09-16T23:56:07.454447+0000 mgr.a (mgr.14150) 260 : audit [DBG] from='client.24217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi103:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:56:08.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:07 smithi103 bash[24637]: audit 2024-09-16T23:56:07.460824+0000 mon.a (mon.0) 520 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T23:56:08.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:07 smithi103 bash[24637]: audit 2024-09-16T23:56:07.466796+0000 mon.a (mon.0) 521 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T23:56:08.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:07 smithi103 bash[24637]: audit 2024-09-16T23:56:07.468508+0000 mon.a (mon.0) 522 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:56:08.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:07 smithi033 bash[22694]: cluster 2024-09-16T23:56:06.625670+0000 mgr.a (mgr.14150) 259 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 53 KiB/s, 0 objects/s recovering 2024-09-16T23:56:08.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:07 smithi033 bash[22694]: audit 2024-09-16T23:56:07.454447+0000 mgr.a (mgr.14150) 260 : audit [DBG] from='client.24217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi103:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:56:08.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:07 smithi033 bash[22694]: audit 2024-09-16T23:56:07.460824+0000 mon.a (mon.0) 520 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T23:56:08.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:07 smithi033 bash[22694]: audit 2024-09-16T23:56:07.466796+0000 mon.a (mon.0) 521 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T23:56:08.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:07 smithi033 bash[22694]: audit 2024-09-16T23:56:07.468508+0000 mon.a (mon.0) 522 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:56:08.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:07 smithi089 bash[24318]: cluster 2024-09-16T23:56:06.625670+0000 mgr.a (mgr.14150) 259 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 53 KiB/s, 0 objects/s recovering 2024-09-16T23:56:08.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:07 smithi089 bash[24318]: audit 2024-09-16T23:56:07.454447+0000 mgr.a (mgr.14150) 260 : audit [DBG] from='client.24217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi103:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:56:08.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:07 smithi089 bash[24318]: audit 2024-09-16T23:56:07.460824+0000 mon.a (mon.0) 520 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T23:56:08.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:07 smithi089 bash[24318]: audit 2024-09-16T23:56:07.466796+0000 mon.a (mon.0) 521 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T23:56:08.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:07 smithi089 bash[24318]: audit 2024-09-16T23:56:07.468508+0000 mon.a (mon.0) 522 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:56:10.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:09 smithi103 bash[24637]: cluster 2024-09-16T23:56:08.626275+0000 mgr.a (mgr.14150) 261 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-16T23:56:10.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:09 smithi033 bash[22694]: cluster 2024-09-16T23:56:08.626275+0000 mgr.a (mgr.14150) 261 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-16T23:56:10.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:09 smithi089 bash[24318]: cluster 2024-09-16T23:56:08.626275+0000 mgr.a (mgr.14150) 261 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-16T23:56:12.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:11 smithi103 bash[24637]: cluster 2024-09-16T23:56:10.626800+0000 mgr.a (mgr.14150) 262 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:12.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:11 smithi033 bash[22694]: cluster 2024-09-16T23:56:10.626800+0000 mgr.a (mgr.14150) 262 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:12.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:11 smithi089 bash[24318]: cluster 2024-09-16T23:56:10.626800+0000 mgr.a (mgr.14150) 262 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:13.995 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:13 smithi103 bash[24637]: cluster 2024-09-16T23:56:12.627363+0000 mgr.a (mgr.14150) 263 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:14.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:13 smithi033 bash[22694]: cluster 2024-09-16T23:56:12.627363+0000 mgr.a (mgr.14150) 263 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:14.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:13 smithi089 bash[24318]: cluster 2024-09-16T23:56:12.627363+0000 mgr.a (mgr.14150) 263 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:16.244 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:15 smithi103 bash[24637]: cluster 2024-09-16T23:56:14.627912+0000 mgr.a (mgr.14150) 264 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:16.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:15 smithi033 bash[22694]: cluster 2024-09-16T23:56:14.627912+0000 mgr.a (mgr.14150) 264 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:16.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:15 smithi089 bash[24318]: cluster 2024-09-16T23:56:14.627912+0000 mgr.a (mgr.14150) 264 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:17.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:16 smithi103 bash[24637]: audit 2024-09-16T23:56:15.830152+0000 mon.c (mon.1) 9 : audit [INF] from='client.? 172.21.15.103:0/2865695690' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7d8a977e-95b9-4ed7-9392-99d412ea259f"}]: dispatch 2024-09-16T23:56:17.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:16 smithi103 bash[24637]: audit 2024-09-16T23:56:15.832236+0000 mon.a (mon.0) 523 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7d8a977e-95b9-4ed7-9392-99d412ea259f"}]: dispatch 2024-09-16T23:56:17.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:16 smithi103 bash[24637]: audit 2024-09-16T23:56:15.844848+0000 mon.a (mon.0) 524 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7d8a977e-95b9-4ed7-9392-99d412ea259f"}]': finished 2024-09-16T23:56:17.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:16 smithi103 bash[24637]: cluster 2024-09-16T23:56:15.851432+0000 mon.a (mon.0) 525 : cluster [DBG] osdmap e38: 6 total, 5 up, 6 in 2024-09-16T23:56:17.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:16 smithi103 bash[24637]: audit 2024-09-16T23:56:15.852038+0000 mon.a (mon.0) 526 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T23:56:17.246 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:16 smithi103 bash[24637]: audit 2024-09-16T23:56:16.498030+0000 mon.c (mon.1) 10 : audit [DBG] from='client.? 172.21.15.103:0/1399444580' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T23:56:17.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:16 smithi033 bash[22694]: audit 2024-09-16T23:56:15.830152+0000 mon.c (mon.1) 9 : audit [INF] from='client.? 172.21.15.103:0/2865695690' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7d8a977e-95b9-4ed7-9392-99d412ea259f"}]: dispatch 2024-09-16T23:56:17.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:16 smithi033 bash[22694]: audit 2024-09-16T23:56:15.832236+0000 mon.a (mon.0) 523 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7d8a977e-95b9-4ed7-9392-99d412ea259f"}]: dispatch 2024-09-16T23:56:17.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:16 smithi033 bash[22694]: audit 2024-09-16T23:56:15.844848+0000 mon.a (mon.0) 524 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7d8a977e-95b9-4ed7-9392-99d412ea259f"}]': finished 2024-09-16T23:56:17.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:16 smithi033 bash[22694]: cluster 2024-09-16T23:56:15.851432+0000 mon.a (mon.0) 525 : cluster [DBG] osdmap e38: 6 total, 5 up, 6 in 2024-09-16T23:56:17.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:16 smithi033 bash[22694]: audit 2024-09-16T23:56:15.852038+0000 mon.a (mon.0) 526 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T23:56:17.250 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:16 smithi033 bash[22694]: audit 2024-09-16T23:56:16.498030+0000 mon.c (mon.1) 10 : audit [DBG] from='client.? 172.21.15.103:0/1399444580' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T23:56:17.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:16 smithi089 bash[24318]: audit 2024-09-16T23:56:15.830152+0000 mon.c (mon.1) 9 : audit [INF] from='client.? 172.21.15.103:0/2865695690' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7d8a977e-95b9-4ed7-9392-99d412ea259f"}]: dispatch 2024-09-16T23:56:17.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:16 smithi089 bash[24318]: audit 2024-09-16T23:56:15.832236+0000 mon.a (mon.0) 523 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7d8a977e-95b9-4ed7-9392-99d412ea259f"}]: dispatch 2024-09-16T23:56:17.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:16 smithi089 bash[24318]: audit 2024-09-16T23:56:15.844848+0000 mon.a (mon.0) 524 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7d8a977e-95b9-4ed7-9392-99d412ea259f"}]': finished 2024-09-16T23:56:17.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:16 smithi089 bash[24318]: cluster 2024-09-16T23:56:15.851432+0000 mon.a (mon.0) 525 : cluster [DBG] osdmap e38: 6 total, 5 up, 6 in 2024-09-16T23:56:17.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:16 smithi089 bash[24318]: audit 2024-09-16T23:56:15.852038+0000 mon.a (mon.0) 526 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T23:56:17.259 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:16 smithi089 bash[24318]: audit 2024-09-16T23:56:16.498030+0000 mon.c (mon.1) 10 : audit [DBG] from='client.? 172.21.15.103:0/1399444580' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T23:56:18.244 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:17 smithi103 bash[24637]: cluster 2024-09-16T23:56:16.628488+0000 mgr.a (mgr.14150) 265 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:18.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:17 smithi033 bash[22694]: cluster 2024-09-16T23:56:16.628488+0000 mgr.a (mgr.14150) 265 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:18.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:17 smithi089 bash[24318]: cluster 2024-09-16T23:56:16.628488+0000 mgr.a (mgr.14150) 265 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:19.995 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:19 smithi103 bash[24637]: cluster 2024-09-16T23:56:18.628993+0000 mgr.a (mgr.14150) 266 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:20.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:19 smithi033 bash[22694]: cluster 2024-09-16T23:56:18.628993+0000 mgr.a (mgr.14150) 266 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:20.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:19 smithi089 bash[24318]: cluster 2024-09-16T23:56:18.628993+0000 mgr.a (mgr.14150) 266 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:22.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:21 smithi103 bash[24637]: cluster 2024-09-16T23:56:20.629504+0000 mgr.a (mgr.14150) 267 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:22.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:21 smithi033 bash[22694]: cluster 2024-09-16T23:56:20.629504+0000 mgr.a (mgr.14150) 267 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:22.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:21 smithi089 bash[24318]: cluster 2024-09-16T23:56:20.629504+0000 mgr.a (mgr.14150) 267 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:24.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:23 smithi103 bash[24637]: cluster 2024-09-16T23:56:22.630080+0000 mgr.a (mgr.14150) 268 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:24.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:23 smithi033 bash[22694]: cluster 2024-09-16T23:56:22.630080+0000 mgr.a (mgr.14150) 268 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:24.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:23 smithi089 bash[24318]: cluster 2024-09-16T23:56:22.630080+0000 mgr.a (mgr.14150) 268 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:26.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:25 smithi103 bash[24637]: cluster 2024-09-16T23:56:24.630601+0000 mgr.a (mgr.14150) 269 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:26.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:25 smithi033 bash[22694]: cluster 2024-09-16T23:56:24.630601+0000 mgr.a (mgr.14150) 269 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:26.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:25 smithi089 bash[24318]: cluster 2024-09-16T23:56:24.630601+0000 mgr.a (mgr.14150) 269 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:28.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:27 smithi103 bash[24637]: cluster 2024-09-16T23:56:26.631140+0000 mgr.a (mgr.14150) 270 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:28.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:27 smithi033 bash[22694]: cluster 2024-09-16T23:56:26.631140+0000 mgr.a (mgr.14150) 270 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:28.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:27 smithi089 bash[24318]: cluster 2024-09-16T23:56:26.631140+0000 mgr.a (mgr.14150) 270 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:30.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:29 smithi103 bash[24637]: cluster 2024-09-16T23:56:28.631655+0000 mgr.a (mgr.14150) 271 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:30.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:29 smithi103 bash[24637]: audit 2024-09-16T23:56:29.108724+0000 mon.a (mon.0) 527 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-16T23:56:30.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:29 smithi103 bash[24637]: audit 2024-09-16T23:56:29.110588+0000 mon.a (mon.0) 528 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:56:30.245 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:29 smithi103 bash[24637]: cephadm 2024-09-16T23:56:29.112327+0000 mgr.a (mgr.14150) 272 : cephadm [INF] Deploying daemon osd.5 on smithi103 2024-09-16T23:56:30.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:29 smithi033 bash[22694]: cluster 2024-09-16T23:56:28.631655+0000 mgr.a (mgr.14150) 271 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:30.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:29 smithi033 bash[22694]: audit 2024-09-16T23:56:29.108724+0000 mon.a (mon.0) 527 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-16T23:56:30.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:29 smithi033 bash[22694]: audit 2024-09-16T23:56:29.110588+0000 mon.a (mon.0) 528 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:56:30.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:29 smithi033 bash[22694]: cephadm 2024-09-16T23:56:29.112327+0000 mgr.a (mgr.14150) 272 : cephadm [INF] Deploying daemon osd.5 on smithi103 2024-09-16T23:56:30.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:29 smithi089 bash[24318]: cluster 2024-09-16T23:56:28.631655+0000 mgr.a (mgr.14150) 271 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:30.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:29 smithi089 bash[24318]: audit 2024-09-16T23:56:29.108724+0000 mon.a (mon.0) 527 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-16T23:56:30.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:29 smithi089 bash[24318]: audit 2024-09-16T23:56:29.110588+0000 mon.a (mon.0) 528 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:56:30.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:29 smithi089 bash[24318]: cephadm 2024-09-16T23:56:29.112327+0000 mgr.a (mgr.14150) 272 : cephadm [INF] Deploying daemon osd.5 on smithi103 2024-09-16T23:56:31.744 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:31 smithi103 bash[24637]: cluster 2024-09-16T23:56:30.632282+0000 mgr.a (mgr.14150) 273 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:31.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:31 smithi033 bash[22694]: cluster 2024-09-16T23:56:30.632282+0000 mgr.a (mgr.14150) 273 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:32.008 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:31 smithi089 bash[24318]: cluster 2024-09-16T23:56:30.632282+0000 mgr.a (mgr.14150) 273 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:33.677 INFO:journalctl@ceph.osd.4.smithi103.stdout:Sep 16 23:56:33 smithi103 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:56:33.677 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:33 smithi103 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:56:33.994 INFO:journalctl@ceph.osd.4.smithi103.stdout:Sep 16 23:56:33 smithi103 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:56:33.995 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:33 smithi103 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:56:33.995 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:33 smithi103 bash[24637]: cluster 2024-09-16T23:56:32.632867+0000 mgr.a (mgr.14150) 274 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:33.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:33 smithi033 bash[22694]: cluster 2024-09-16T23:56:32.632867+0000 mgr.a (mgr.14150) 274 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:34.008 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:33 smithi089 bash[24318]: cluster 2024-09-16T23:56:32.632867+0000 mgr.a (mgr.14150) 274 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:34.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:34 smithi103 bash[24637]: audit 2024-09-16T23:56:33.829760+0000 mon.a (mon.0) 529 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:56:34.995 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:34 smithi103 bash[24637]: audit 2024-09-16T23:56:33.836929+0000 mon.a (mon.0) 530 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:34.995 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:34 smithi103 bash[24637]: audit 2024-09-16T23:56:33.845255+0000 mon.a (mon.0) 531 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:34.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:34 smithi033 bash[22694]: audit 2024-09-16T23:56:33.829760+0000 mon.a (mon.0) 529 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:56:34.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:34 smithi033 bash[22694]: audit 2024-09-16T23:56:33.836929+0000 mon.a (mon.0) 530 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:34.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:34 smithi033 bash[22694]: audit 2024-09-16T23:56:33.845255+0000 mon.a (mon.0) 531 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:35.008 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:34 smithi089 bash[24318]: audit 2024-09-16T23:56:33.829760+0000 mon.a (mon.0) 529 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:56:35.008 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:34 smithi089 bash[24318]: audit 2024-09-16T23:56:33.836929+0000 mon.a (mon.0) 530 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:35.008 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:34 smithi089 bash[24318]: audit 2024-09-16T23:56:33.845255+0000 mon.a (mon.0) 531 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:36.244 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:35 smithi103 bash[24637]: cluster 2024-09-16T23:56:34.633498+0000 mgr.a (mgr.14150) 275 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:36.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:35 smithi033 bash[22694]: cluster 2024-09-16T23:56:34.633498+0000 mgr.a (mgr.14150) 275 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:36.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:35 smithi089 bash[24318]: cluster 2024-09-16T23:56:34.633498+0000 mgr.a (mgr.14150) 275 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:38.244 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:37 smithi103 bash[24637]: cluster 2024-09-16T23:56:36.634157+0000 mgr.a (mgr.14150) 276 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:38.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:37 smithi033 bash[22694]: cluster 2024-09-16T23:56:36.634157+0000 mgr.a (mgr.14150) 276 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:38.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:37 smithi089 bash[24318]: cluster 2024-09-16T23:56:36.634157+0000 mgr.a (mgr.14150) 276 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:40.244 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:39 smithi103 bash[24637]: cluster 2024-09-16T23:56:38.634839+0000 mgr.a (mgr.14150) 277 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:40.249 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:39 smithi033 bash[22694]: cluster 2024-09-16T23:56:38.634839+0000 mgr.a (mgr.14150) 277 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:40.258 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:39 smithi089 bash[24318]: cluster 2024-09-16T23:56:38.634839+0000 mgr.a (mgr.14150) 277 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:41.494 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:41 smithi103 bash[24637]: audit 2024-09-16T23:56:40.155466+0000 mon.a (mon.0) 532 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:41.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:41 smithi103 bash[24637]: audit 2024-09-16T23:56:40.164711+0000 mon.a (mon.0) 533 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:41.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:41 smithi103 bash[24637]: audit 2024-09-16T23:56:40.166565+0000 mon.a (mon.0) 534 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:56:41.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:41 smithi103 bash[24637]: audit 2024-09-16T23:56:40.168290+0000 mon.a (mon.0) 535 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:56:41.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:41 smithi103 bash[24637]: audit 2024-09-16T23:56:40.179629+0000 mon.a (mon.0) 536 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:41.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:41 smithi033 bash[22694]: audit 2024-09-16T23:56:40.155466+0000 mon.a (mon.0) 532 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:41.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:41 smithi033 bash[22694]: audit 2024-09-16T23:56:40.164711+0000 mon.a (mon.0) 533 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:41.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:41 smithi033 bash[22694]: audit 2024-09-16T23:56:40.166565+0000 mon.a (mon.0) 534 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:56:41.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:41 smithi033 bash[22694]: audit 2024-09-16T23:56:40.168290+0000 mon.a (mon.0) 535 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:56:41.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:41 smithi033 bash[22694]: audit 2024-09-16T23:56:40.179629+0000 mon.a (mon.0) 536 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:41.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:41 smithi089 bash[24318]: audit 2024-09-16T23:56:40.155466+0000 mon.a (mon.0) 532 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:41.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:41 smithi089 bash[24318]: audit 2024-09-16T23:56:40.164711+0000 mon.a (mon.0) 533 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:41.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:41 smithi089 bash[24318]: audit 2024-09-16T23:56:40.166565+0000 mon.a (mon.0) 534 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:56:41.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:41 smithi089 bash[24318]: audit 2024-09-16T23:56:40.168290+0000 mon.a (mon.0) 535 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:56:41.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:41 smithi089 bash[24318]: audit 2024-09-16T23:56:40.179629+0000 mon.a (mon.0) 536 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:42.425 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:42 smithi103 bash[24637]: cluster 2024-09-16T23:56:40.635467+0000 mgr.a (mgr.14150) 278 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:42.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:42 smithi033 bash[22694]: cluster 2024-09-16T23:56:40.635467+0000 mgr.a (mgr.14150) 278 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:42.507 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:42 smithi089 bash[24318]: cluster 2024-09-16T23:56:40.635467+0000 mgr.a (mgr.14150) 278 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:43.430 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:43 smithi103 bash[24637]: audit 2024-09-16T23:56:42.569497+0000 mon.c (mon.1) 11 : audit [INF] from='osd.5 [v2:172.21.15.103:6808/463355828,v1:172.21.15.103:6809/463355828]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-16T23:56:43.430 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:43 smithi103 bash[24637]: audit 2024-09-16T23:56:42.571328+0000 mon.a (mon.0) 537 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-16T23:56:43.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:43 smithi033 bash[22694]: audit 2024-09-16T23:56:42.569497+0000 mon.c (mon.1) 11 : audit [INF] from='osd.5 [v2:172.21.15.103:6808/463355828,v1:172.21.15.103:6809/463355828]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-16T23:56:43.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:43 smithi033 bash[22694]: audit 2024-09-16T23:56:42.571328+0000 mon.a (mon.0) 537 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-16T23:56:43.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:43 smithi089 bash[24318]: audit 2024-09-16T23:56:42.569497+0000 mon.c (mon.1) 11 : audit [INF] from='osd.5 [v2:172.21.15.103:6808/463355828,v1:172.21.15.103:6809/463355828]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-16T23:56:43.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:43 smithi089 bash[24318]: audit 2024-09-16T23:56:42.571328+0000 mon.a (mon.0) 537 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-16T23:56:44.092 INFO:teuthology.orchestra.run.smithi103.stdout:Created osd(s) 5 on host 'smithi103' 2024-09-16T23:56:44.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:44 smithi103 bash[24637]: cluster 2024-09-16T23:56:42.636158+0000 mgr.a (mgr.14150) 279 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:44.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:44 smithi103 bash[24637]: audit 2024-09-16T23:56:43.192040+0000 mon.a (mon.0) 538 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-16T23:56:44.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:44 smithi103 bash[24637]: cluster 2024-09-16T23:56:43.198534+0000 mon.a (mon.0) 539 : cluster [DBG] osdmap e39: 6 total, 5 up, 6 in 2024-09-16T23:56:44.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:44 smithi103 bash[24637]: audit 2024-09-16T23:56:43.199049+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.103:6808/463355828,v1:172.21.15.103:6809/463355828]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi103", "root=default"]}]: dispatch 2024-09-16T23:56:44.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:44 smithi103 bash[24637]: audit 2024-09-16T23:56:43.199101+0000 mon.a (mon.0) 540 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T23:56:44.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:44 smithi103 bash[24637]: audit 2024-09-16T23:56:43.201102+0000 mon.a (mon.0) 541 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi103", "root=default"]}]: dispatch 2024-09-16T23:56:44.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:44 smithi103 bash[24637]: audit 2024-09-16T23:56:44.076143+0000 mon.a (mon.0) 542 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:56:44.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:44 smithi103 bash[24637]: audit 2024-09-16T23:56:44.083713+0000 mon.a (mon.0) 543 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:44.496 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:44 smithi103 bash[24637]: audit 2024-09-16T23:56:44.092017+0000 mon.a (mon.0) 544 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:44.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:44 smithi033 bash[22694]: cluster 2024-09-16T23:56:42.636158+0000 mgr.a (mgr.14150) 279 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:44.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:44 smithi033 bash[22694]: audit 2024-09-16T23:56:43.192040+0000 mon.a (mon.0) 538 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-16T23:56:44.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:44 smithi033 bash[22694]: cluster 2024-09-16T23:56:43.198534+0000 mon.a (mon.0) 539 : cluster [DBG] osdmap e39: 6 total, 5 up, 6 in 2024-09-16T23:56:44.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:44 smithi033 bash[22694]: audit 2024-09-16T23:56:43.199049+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.103:6808/463355828,v1:172.21.15.103:6809/463355828]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi103", "root=default"]}]: dispatch 2024-09-16T23:56:44.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:44 smithi033 bash[22694]: audit 2024-09-16T23:56:43.199101+0000 mon.a (mon.0) 540 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T23:56:44.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:44 smithi033 bash[22694]: audit 2024-09-16T23:56:43.201102+0000 mon.a (mon.0) 541 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi103", "root=default"]}]: dispatch 2024-09-16T23:56:44.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:44 smithi033 bash[22694]: audit 2024-09-16T23:56:44.076143+0000 mon.a (mon.0) 542 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:56:44.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:44 smithi033 bash[22694]: audit 2024-09-16T23:56:44.083713+0000 mon.a (mon.0) 543 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:44.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:44 smithi033 bash[22694]: audit 2024-09-16T23:56:44.092017+0000 mon.a (mon.0) 544 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:44.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:44 smithi089 bash[24318]: cluster 2024-09-16T23:56:42.636158+0000 mgr.a (mgr.14150) 279 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:44.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:44 smithi089 bash[24318]: audit 2024-09-16T23:56:43.192040+0000 mon.a (mon.0) 538 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-16T23:56:44.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:44 smithi089 bash[24318]: cluster 2024-09-16T23:56:43.198534+0000 mon.a (mon.0) 539 : cluster [DBG] osdmap e39: 6 total, 5 up, 6 in 2024-09-16T23:56:44.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:44 smithi089 bash[24318]: audit 2024-09-16T23:56:43.199049+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.103:6808/463355828,v1:172.21.15.103:6809/463355828]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi103", "root=default"]}]: dispatch 2024-09-16T23:56:44.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:44 smithi089 bash[24318]: audit 2024-09-16T23:56:43.199101+0000 mon.a (mon.0) 540 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T23:56:44.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:44 smithi089 bash[24318]: audit 2024-09-16T23:56:43.201102+0000 mon.a (mon.0) 541 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi103", "root=default"]}]: dispatch 2024-09-16T23:56:44.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:44 smithi089 bash[24318]: audit 2024-09-16T23:56:44.076143+0000 mon.a (mon.0) 542 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:56:44.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:44 smithi089 bash[24318]: audit 2024-09-16T23:56:44.083713+0000 mon.a (mon.0) 543 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:44.509 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:44 smithi089 bash[24318]: audit 2024-09-16T23:56:44.092017+0000 mon.a (mon.0) 544 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:44.726 DEBUG:teuthology.orchestra.run.smithi103:osd.5> sudo journalctl -f -n 0 -u ceph-f4fb0768-7485-11ef-bceb-c7b262605968@osd.5.service 2024-09-16T23:56:44.729 INFO:tasks.cephadm:Waiting for 6 OSDs to come up... 2024-09-16T23:56:44.730 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-16T23:56:45.494 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:45 smithi103 bash[24637]: audit 2024-09-16T23:56:44.194577+0000 mon.a (mon.0) 545 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi103", "root=default"]}]': finished 2024-09-16T23:56:45.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:45 smithi103 bash[24637]: cluster 2024-09-16T23:56:44.199402+0000 mon.a (mon.0) 546 : cluster [DBG] osdmap e40: 6 total, 5 up, 6 in 2024-09-16T23:56:45.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:45 smithi103 bash[24637]: audit 2024-09-16T23:56:44.200498+0000 mon.a (mon.0) 547 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T23:56:45.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:45 smithi103 bash[24637]: audit 2024-09-16T23:56:44.208522+0000 mon.a (mon.0) 548 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T23:56:45.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:45 smithi033 bash[22694]: audit 2024-09-16T23:56:44.194577+0000 mon.a (mon.0) 545 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi103", "root=default"]}]': finished 2024-09-16T23:56:45.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:45 smithi033 bash[22694]: cluster 2024-09-16T23:56:44.199402+0000 mon.a (mon.0) 546 : cluster [DBG] osdmap e40: 6 total, 5 up, 6 in 2024-09-16T23:56:45.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:45 smithi033 bash[22694]: audit 2024-09-16T23:56:44.200498+0000 mon.a (mon.0) 547 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T23:56:45.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:45 smithi033 bash[22694]: audit 2024-09-16T23:56:44.208522+0000 mon.a (mon.0) 548 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T23:56:45.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:45 smithi089 bash[24318]: audit 2024-09-16T23:56:44.194577+0000 mon.a (mon.0) 545 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi103", "root=default"]}]': finished 2024-09-16T23:56:45.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:45 smithi089 bash[24318]: cluster 2024-09-16T23:56:44.199402+0000 mon.a (mon.0) 546 : cluster [DBG] osdmap e40: 6 total, 5 up, 6 in 2024-09-16T23:56:45.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:45 smithi089 bash[24318]: audit 2024-09-16T23:56:44.200498+0000 mon.a (mon.0) 547 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T23:56:45.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:45 smithi089 bash[24318]: audit 2024-09-16T23:56:44.208522+0000 mon.a (mon.0) 548 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T23:56:46.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:46 smithi103 bash[24637]: cluster 2024-09-16T23:56:43.592708+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T23:56:46.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:46 smithi103 bash[24637]: cluster 2024-09-16T23:56:43.592829+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T23:56:46.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:46 smithi103 bash[24637]: cluster 2024-09-16T23:56:44.636709+0000 mgr.a (mgr.14150) 280 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:46.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:46 smithi103 bash[24637]: cluster 2024-09-16T23:56:45.204108+0000 mon.a (mon.0) 549 : cluster [INF] osd.5 [v2:172.21.15.103:6808/463355828,v1:172.21.15.103:6809/463355828] boot 2024-09-16T23:56:46.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:46 smithi103 bash[24637]: cluster 2024-09-16T23:56:45.204166+0000 mon.a (mon.0) 550 : cluster [DBG] osdmap e41: 6 total, 6 up, 6 in 2024-09-16T23:56:46.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:46 smithi103 bash[24637]: audit 2024-09-16T23:56:45.204479+0000 mon.a (mon.0) 551 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T23:56:46.495 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:46 smithi103 bash[24637]: cluster 2024-09-16T23:56:45.598846+0000 mon.a (mon.0) 552 : cluster [DBG] osdmap e42: 6 total, 6 up, 6 in 2024-09-16T23:56:46.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:46 smithi033 bash[22694]: cluster 2024-09-16T23:56:43.592708+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T23:56:46.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:46 smithi033 bash[22694]: cluster 2024-09-16T23:56:43.592829+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T23:56:46.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:46 smithi033 bash[22694]: cluster 2024-09-16T23:56:44.636709+0000 mgr.a (mgr.14150) 280 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:46.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:46 smithi033 bash[22694]: cluster 2024-09-16T23:56:45.204108+0000 mon.a (mon.0) 549 : cluster [INF] osd.5 [v2:172.21.15.103:6808/463355828,v1:172.21.15.103:6809/463355828] boot 2024-09-16T23:56:46.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:46 smithi033 bash[22694]: cluster 2024-09-16T23:56:45.204166+0000 mon.a (mon.0) 550 : cluster [DBG] osdmap e41: 6 total, 6 up, 6 in 2024-09-16T23:56:46.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:46 smithi033 bash[22694]: audit 2024-09-16T23:56:45.204479+0000 mon.a (mon.0) 551 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T23:56:46.500 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:46 smithi033 bash[22694]: cluster 2024-09-16T23:56:45.598846+0000 mon.a (mon.0) 552 : cluster [DBG] osdmap e42: 6 total, 6 up, 6 in 2024-09-16T23:56:46.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:46 smithi089 bash[24318]: cluster 2024-09-16T23:56:43.592708+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T23:56:46.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:46 smithi089 bash[24318]: cluster 2024-09-16T23:56:43.592829+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T23:56:46.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:46 smithi089 bash[24318]: cluster 2024-09-16T23:56:44.636709+0000 mgr.a (mgr.14150) 280 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:56:46.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:46 smithi089 bash[24318]: cluster 2024-09-16T23:56:45.204108+0000 mon.a (mon.0) 549 : cluster [INF] osd.5 [v2:172.21.15.103:6808/463355828,v1:172.21.15.103:6809/463355828] boot 2024-09-16T23:56:46.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:46 smithi089 bash[24318]: cluster 2024-09-16T23:56:45.204166+0000 mon.a (mon.0) 550 : cluster [DBG] osdmap e41: 6 total, 6 up, 6 in 2024-09-16T23:56:46.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:46 smithi089 bash[24318]: audit 2024-09-16T23:56:45.204479+0000 mon.a (mon.0) 551 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T23:56:46.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:46 smithi089 bash[24318]: cluster 2024-09-16T23:56:45.598846+0000 mon.a (mon.0) 552 : cluster [DBG] osdmap e42: 6 total, 6 up, 6 in 2024-09-16T23:56:47.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:47 smithi103 bash[24637]: cluster 2024-09-16T23:56:46.603086+0000 mon.a (mon.0) 553 : cluster [DBG] osdmap e43: 6 total, 6 up, 6 in 2024-09-16T23:56:47.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:47 smithi103 bash[24637]: cluster 2024-09-16T23:56:46.637210+0000 mgr.a (mgr.14150) 281 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:56:47.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:47 smithi033 bash[22694]: cluster 2024-09-16T23:56:46.603086+0000 mon.a (mon.0) 553 : cluster [DBG] osdmap e43: 6 total, 6 up, 6 in 2024-09-16T23:56:47.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:47 smithi033 bash[22694]: cluster 2024-09-16T23:56:46.637210+0000 mgr.a (mgr.14150) 281 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:56:48.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:47 smithi089 bash[24318]: cluster 2024-09-16T23:56:46.603086+0000 mon.a (mon.0) 553 : cluster [DBG] osdmap e43: 6 total, 6 up, 6 in 2024-09-16T23:56:48.008 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:47 smithi089 bash[24318]: cluster 2024-09-16T23:56:46.637210+0000 mgr.a (mgr.14150) 281 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:56:48.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:48 smithi103 bash[24637]: cluster 2024-09-16T23:56:47.615185+0000 mon.a (mon.0) 554 : cluster [DBG] osdmap e44: 6 total, 6 up, 6 in 2024-09-16T23:56:48.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:48 smithi033 bash[22694]: cluster 2024-09-16T23:56:47.615185+0000 mon.a (mon.0) 554 : cluster [DBG] osdmap e44: 6 total, 6 up, 6 in 2024-09-16T23:56:49.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:48 smithi089 bash[24318]: cluster 2024-09-16T23:56:47.615185+0000 mon.a (mon.0) 554 : cluster [DBG] osdmap e44: 6 total, 6 up, 6 in 2024-09-16T23:56:49.485 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:56:49.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:49 smithi103 bash[24637]: cluster 2024-09-16T23:56:48.615417+0000 mon.a (mon.0) 555 : cluster [DBG] osdmap e45: 6 total, 6 up, 6 in 2024-09-16T23:56:49.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:49 smithi103 bash[24637]: cluster 2024-09-16T23:56:48.637734+0000 mgr.a (mgr.14150) 282 : cluster [DBG] pgmap v253: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 168 KiB/s, 0 objects/s recovering 2024-09-16T23:56:49.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:49 smithi033 bash[22694]: cluster 2024-09-16T23:56:48.615417+0000 mon.a (mon.0) 555 : cluster [DBG] osdmap e45: 6 total, 6 up, 6 in 2024-09-16T23:56:49.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:49 smithi033 bash[22694]: cluster 2024-09-16T23:56:48.637734+0000 mgr.a (mgr.14150) 282 : cluster [DBG] pgmap v253: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 168 KiB/s, 0 objects/s recovering 2024-09-16T23:56:50.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:49 smithi089 bash[24318]: cluster 2024-09-16T23:56:48.615417+0000 mon.a (mon.0) 555 : cluster [DBG] osdmap e45: 6 total, 6 up, 6 in 2024-09-16T23:56:50.008 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:49 smithi089 bash[24318]: cluster 2024-09-16T23:56:48.637734+0000 mgr.a (mgr.14150) 282 : cluster [DBG] pgmap v253: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 168 KiB/s, 0 objects/s recovering 2024-09-16T23:56:51.202 INFO:teuthology.orchestra.run.smithi033.stdout: 2024-09-16T23:56:51.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:51 smithi103 bash[24637]: cluster 2024-09-16T23:56:50.638281+0000 mgr.a (mgr.14150) 283 : cluster [DBG] pgmap v254: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 114 KiB/s, 0 objects/s recovering 2024-09-16T23:56:51.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:51 smithi103 bash[24637]: audit 2024-09-16T23:56:51.209482+0000 mon.a (mon.0) 556 : audit [DBG] from='client.? 172.21.15.33:0/1091952096' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-16T23:56:51.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:51 smithi033 bash[22694]: cluster 2024-09-16T23:56:50.638281+0000 mgr.a (mgr.14150) 283 : cluster [DBG] pgmap v254: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 114 KiB/s, 0 objects/s recovering 2024-09-16T23:56:51.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:51 smithi033 bash[22694]: audit 2024-09-16T23:56:51.209482+0000 mon.a (mon.0) 556 : audit [DBG] from='client.? 172.21.15.33:0/1091952096' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-16T23:56:52.001 INFO:teuthology.orchestra.run.smithi033.stdout:{"epoch":45,"num_osds":6,"num_up_osds":6,"osd_up_since":1726531005,"num_in_osds":6,"osd_in_since":1726530975,"num_remapped_pgs":0} 2024-09-16T23:56:52.002 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-16T23:56:52.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:51 smithi089 bash[24318]: cluster 2024-09-16T23:56:50.638281+0000 mgr.a (mgr.14150) 283 : cluster [DBG] pgmap v254: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 114 KiB/s, 0 objects/s recovering 2024-09-16T23:56:52.008 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:51 smithi089 bash[24318]: audit 2024-09-16T23:56:51.209482+0000 mon.a (mon.0) 556 : audit [DBG] from='client.? 172.21.15.33:0/1091952096' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-16T23:56:54.745 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:54 smithi103 bash[24637]: cluster 2024-09-16T23:56:52.638909+0000 mgr.a (mgr.14150) 284 : cluster [DBG] pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-16T23:56:54.745 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:54 smithi103 bash[24637]: cephadm 2024-09-16T23:56:53.486673+0000 mgr.a (mgr.14150) 285 : cephadm [INF] Detected new or changed devices on smithi103 2024-09-16T23:56:54.745 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:54 smithi103 bash[24637]: audit 2024-09-16T23:56:53.495191+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:54.745 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:54 smithi103 bash[24637]: audit 2024-09-16T23:56:53.503263+0000 mon.a (mon.0) 558 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:54.745 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:54 smithi103 bash[24637]: audit 2024-09-16T23:56:53.505756+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:56:54.745 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:54 smithi103 bash[24637]: audit 2024-09-16T23:56:53.507509+0000 mon.a (mon.0) 560 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:56:54.745 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:54 smithi103 bash[24637]: cephadm 2024-09-16T23:56:53.508701+0000 mgr.a (mgr.14150) 286 : cephadm [INF] Adjusting osd_memory_target on smithi103 to 10680M 2024-09-16T23:56:54.745 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:54 smithi103 bash[24637]: audit 2024-09-16T23:56:53.514788+0000 mon.a (mon.0) 561 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:54.745 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:54 smithi103 bash[24637]: audit 2024-09-16T23:56:53.519174+0000 mon.a (mon.0) 562 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:56:54.745 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:54 smithi103 bash[24637]: audit 2024-09-16T23:56:53.520923+0000 mon.a (mon.0) 563 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:56:54.745 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:54 smithi103 bash[24637]: audit 2024-09-16T23:56:53.530966+0000 mon.a (mon.0) 564 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:54.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:54 smithi033 bash[22694]: cluster 2024-09-16T23:56:52.638909+0000 mgr.a (mgr.14150) 284 : cluster [DBG] pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-16T23:56:54.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:54 smithi033 bash[22694]: cephadm 2024-09-16T23:56:53.486673+0000 mgr.a (mgr.14150) 285 : cephadm [INF] Detected new or changed devices on smithi103 2024-09-16T23:56:54.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:54 smithi033 bash[22694]: audit 2024-09-16T23:56:53.495191+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:54.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:54 smithi033 bash[22694]: audit 2024-09-16T23:56:53.503263+0000 mon.a (mon.0) 558 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:54.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:54 smithi033 bash[22694]: audit 2024-09-16T23:56:53.505756+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:56:54.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:54 smithi033 bash[22694]: audit 2024-09-16T23:56:53.507509+0000 mon.a (mon.0) 560 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:56:54.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:54 smithi033 bash[22694]: cephadm 2024-09-16T23:56:53.508701+0000 mgr.a (mgr.14150) 286 : cephadm [INF] Adjusting osd_memory_target on smithi103 to 10680M 2024-09-16T23:56:54.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:54 smithi033 bash[22694]: audit 2024-09-16T23:56:53.514788+0000 mon.a (mon.0) 561 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:54.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:54 smithi033 bash[22694]: audit 2024-09-16T23:56:53.519174+0000 mon.a (mon.0) 562 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:56:54.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:54 smithi033 bash[22694]: audit 2024-09-16T23:56:53.520923+0000 mon.a (mon.0) 563 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:56:54.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:54 smithi033 bash[22694]: audit 2024-09-16T23:56:53.530966+0000 mon.a (mon.0) 564 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:54.758 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:54 smithi089 bash[24318]: cluster 2024-09-16T23:56:52.638909+0000 mgr.a (mgr.14150) 284 : cluster [DBG] pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-16T23:56:54.758 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:54 smithi089 bash[24318]: cephadm 2024-09-16T23:56:53.486673+0000 mgr.a (mgr.14150) 285 : cephadm [INF] Detected new or changed devices on smithi103 2024-09-16T23:56:54.758 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:54 smithi089 bash[24318]: audit 2024-09-16T23:56:53.495191+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:54.758 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:54 smithi089 bash[24318]: audit 2024-09-16T23:56:53.503263+0000 mon.a (mon.0) 558 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:54.758 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:54 smithi089 bash[24318]: audit 2024-09-16T23:56:53.505756+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:56:54.758 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:54 smithi089 bash[24318]: audit 2024-09-16T23:56:53.507509+0000 mon.a (mon.0) 560 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-16T23:56:54.758 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:54 smithi089 bash[24318]: cephadm 2024-09-16T23:56:53.508701+0000 mgr.a (mgr.14150) 286 : cephadm [INF] Adjusting osd_memory_target on smithi103 to 10680M 2024-09-16T23:56:54.758 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:54 smithi089 bash[24318]: audit 2024-09-16T23:56:53.514788+0000 mon.a (mon.0) 561 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:54.758 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:54 smithi089 bash[24318]: audit 2024-09-16T23:56:53.519174+0000 mon.a (mon.0) 562 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:56:54.758 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:54 smithi089 bash[24318]: audit 2024-09-16T23:56:53.520923+0000 mon.a (mon.0) 563 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:56:54.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:54 smithi089 bash[24318]: audit 2024-09-16T23:56:53.530966+0000 mon.a (mon.0) 564 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:56:56.744 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:56 smithi103 bash[24637]: cluster 2024-09-16T23:56:54.639486+0000 mgr.a (mgr.14150) 287 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-16T23:56:56.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:56 smithi033 bash[22694]: cluster 2024-09-16T23:56:54.639486+0000 mgr.a (mgr.14150) 287 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-16T23:56:56.753 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:56:56.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:56 smithi089 bash[24318]: cluster 2024-09-16T23:56:54.639486+0000 mgr.a (mgr.14150) 287 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-16T23:56:58.421 INFO:teuthology.orchestra.run.smithi033.stdout: 2024-09-16T23:56:58.421 INFO:teuthology.orchestra.run.smithi033.stdout:{"epoch":45,"fsid":"f4fb0768-7485-11ef-bceb-c7b262605968","created":"2024-09-16T23:48:29.030163+0000","modified":"2024-09-16T23:56:48.605818+0000","last_up_change":"2024-09-16T23:56:45.194434+0000","last_in_change":"2024-09-16T23:56:15.833405+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":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-16T23:54:07.223582+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,"is_stretch_pool":false,"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":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"04f3a09b-685a-4fab-9fb1-a4a282f45e63","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":27,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.33:6802","nonce":4015228864},{"type":"v1","addr":"172.21.15.33:6803","nonce":4015228864}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.33:6804","nonce":4015228864},{"type":"v1","addr":"172.21.15.33:6805","nonce":4015228864}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.33:6808","nonce":4015228864},{"type":"v1","addr":"172.21.15.33:6809","nonce":4015228864}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.33:6806","nonce":4015228864},{"type":"v1","addr":"172.21.15.33:6807","nonce":4015228864}]},"public_addr":"172.21.15.33:6803/4015228864","cluster_addr":"172.21.15.33:6805/4015228864","heartbeat_back_addr":"172.21.15.33:6809/4015228864","heartbeat_front_addr":"172.21.15.33:6807/4015228864","state":["exists","up"]},{"osd":1,"uuid":"1e62e273-a6b4-432b-b9d0-f4cdff282114","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.33:6810","nonce":608637482},{"type":"v1","addr":"172.21.15.33:6811","nonce":608637482}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.33:6812","nonce":608637482},{"type":"v1","addr":"172.21.15.33:6813","nonce":608637482}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.33:6816","nonce":608637482},{"type":"v1","addr":"172.21.15.33:6817","nonce":608637482}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.33:6814","nonce":608637482},{"type":"v1","addr":"172.21.15.33:6815","nonce":608637482}]},"public_addr":"172.21.15.33:6811/608637482","cluster_addr":"172.21.15.33:6813/608637482","heartbeat_back_addr":"172.21.15.33:6817/608637482","heartbeat_front_addr":"172.21.15.33:6815/608637482","state":["exists","up"]},{"osd":2,"uuid":"6813416c-9b23-4b42-a23e-e1f6cb8375d2","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.89:6800","nonce":3334294688},{"type":"v1","addr":"172.21.15.89:6801","nonce":3334294688}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.89:6802","nonce":3334294688},{"type":"v1","addr":"172.21.15.89:6803","nonce":3334294688}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.89:6806","nonce":3334294688},{"type":"v1","addr":"172.21.15.89:6807","nonce":3334294688}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.89:6804","nonce":3334294688},{"type":"v1","addr":"172.21.15.89:6805","nonce":3334294688}]},"public_addr":"172.21.15.89:6801/3334294688","cluster_addr":"172.21.15.89:6803/3334294688","heartbeat_back_addr":"172.21.15.89:6807/3334294688","heartbeat_front_addr":"172.21.15.89:6805/3334294688","state":["exists","up"]},{"osd":3,"uuid":"0f344e8e-367a-42d0-9db9-bd5c3ac25162","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.89:6808","nonce":2861233868},{"type":"v1","addr":"172.21.15.89:6809","nonce":2861233868}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.89:6810","nonce":2861233868},{"type":"v1","addr":"172.21.15.89:6811","nonce":2861233868}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.89:6814","nonce":2861233868},{"type":"v1","addr":"172.21.15.89:6815","nonce":2861233868}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.89:6812","nonce":2861233868},{"type":"v1","addr":"172.21.15.89:6813","nonce":2861233868}]},"public_addr":"172.21.15.89:6809/2861233868","cluster_addr":"172.21.15.89:6811/2861233868","heartbeat_back_addr":"172.21.15.89:6815/2861233868","heartbeat_front_addr":"172.21.15.89:6813/2861233868","state":["exists","up"]},{"osd":4,"uuid":"cc9935c5-54eb-42bf-b96e-43c7c6e8ce5d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.103:6800","nonce":757670800},{"type":"v1","addr":"172.21.15.103:6801","nonce":757670800}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.103:6802","nonce":757670800},{"type":"v1","addr":"172.21.15.103:6803","nonce":757670800}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.103:6806","nonce":757670800},{"type":"v1","addr":"172.21.15.103:6807","nonce":757670800}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.103:6804","nonce":757670800},{"type":"v1","addr":"172.21.15.103:6805","nonce":757670800}]},"public_addr":"172.21.15.103:6801/757670800","cluster_addr":"172.21.15.103:6803/757670800","heartbeat_back_addr":"172.21.15.103:6807/757670800","heartbeat_front_addr":"172.21.15.103:6805/757670800","state":["exists","up"]},{"osd":5,"uuid":"7d8a977e-95b9-4ed7-9392-99d412ea259f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":41,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.103:6808","nonce":463355828},{"type":"v1","addr":"172.21.15.103:6809","nonce":463355828}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.103:6810","nonce":463355828},{"type":"v1","addr":"172.21.15.103:6811","nonce":463355828}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.103:6814","nonce":463355828},{"type":"v1","addr":"172.21.15.103:6815","nonce":463355828}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.103:6812","nonce":463355828},{"type":"v1","addr":"172.21.15.103:6813","nonce":463355828}]},"public_addr":"172.21.15.103:6809/463355828","cluster_addr":"172.21.15.103:6811/463355828","heartbeat_back_addr":"172.21.15.103:6815/463355828","heartbeat_front_addr":"172.21.15.103:6813/463355828","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T23:52:14.159242+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T23:53:10.538963+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T23:54:04.467925+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T23:55:00.188352+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T23:55:50.309731+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T23:56:43.592834+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.33:0/2510547169":"2024-09-17T23:49:32.524574+0000","172.21.15.33:0/3154507995":"2024-09-17T23:49:32.524574+0000","172.21.15.33:6800/3497304760":"2024-09-17T23:49:32.524574+0000","172.21.15.33:6801/3497304760":"2024-09-17T23:49:32.524574+0000","172.21.15.33:0/2272559538":"2024-09-17T23:49:32.524574+0000","172.21.15.33:6800/510417407":"2024-09-17T23:48:57.570353+0000","172.21.15.33:6801/510417407":"2024-09-17T23:48:57.570353+0000","172.21.15.33:0/757514480":"2024-09-17T23:48:57.570353+0000","172.21.15.33:0/761558961":"2024-09-17T23:48:57.570353+0000","172.21.15.33:0/1374029113":"2024-09-17T23:48:57.570353+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-16T23:56:58.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:58 smithi033 bash[22694]: cluster 2024-09-16T23:56:56.640054+0000 mgr.a (mgr.14150) 288 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:56:58.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:56:58 smithi033 bash[22694]: audit 2024-09-16T23:56:58.426879+0000 mon.a (mon.0) 565 : audit [DBG] from='client.? 172.21.15.33:0/1870005673' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T23:56:58.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:58 smithi089 bash[24318]: cluster 2024-09-16T23:56:56.640054+0000 mgr.a (mgr.14150) 288 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:56:58.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:56:58 smithi089 bash[24318]: audit 2024-09-16T23:56:58.426879+0000 mon.a (mon.0) 565 : audit [DBG] from='client.? 172.21.15.33:0/1870005673' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T23:56:58.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:58 smithi103 bash[24637]: cluster 2024-09-16T23:56:56.640054+0000 mgr.a (mgr.14150) 288 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:56:58.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:56:58 smithi103 bash[24637]: audit 2024-09-16T23:56:58.426879+0000 mon.a (mon.0) 565 : audit [DBG] from='client.? 172.21.15.33:0/1870005673' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T23:56:59.118 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-09-16T23:54:07.223582+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, 'is_stretch_pool': False, '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': {}}, 'read_balance': {'score_type': 'Fair distribution', 'score_acting': 6, 'score_stable': 6, 'optimal_score': 0.5, 'raw_score_acting': 3, 'raw_score_stable': 3, 'primary_affinity_weighted': 1, 'average_primary_affinity': 1, 'average_primary_affinity_weighted': 1}}] 2024-09-16T23:56:59.119 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-09-16T23:57:00.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:00 smithi089 bash[24318]: cluster 2024-09-16T23:56:58.640594+0000 mgr.a (mgr.14150) 289 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:00.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:00 smithi103 bash[24637]: cluster 2024-09-16T23:56:58.640594+0000 mgr.a (mgr.14150) 289 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:00.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:00 smithi033 bash[22694]: cluster 2024-09-16T23:56:58.640594+0000 mgr.a (mgr.14150) 289 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:02.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:02 smithi089 bash[24318]: cluster 2024-09-16T23:57:00.641144+0000 mgr.a (mgr.14150) 290 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:02.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:02 smithi103 bash[24637]: cluster 2024-09-16T23:57:00.641144+0000 mgr.a (mgr.14150) 290 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:02.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:02 smithi033 bash[22694]: cluster 2024-09-16T23:57:00.641144+0000 mgr.a (mgr.14150) 290 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:03.872 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:57:04.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:04 smithi103 bash[24637]: cluster 2024-09-16T23:57:02.641713+0000 mgr.a (mgr.14150) 291 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:04.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:04 smithi033 bash[22694]: cluster 2024-09-16T23:57:02.641713+0000 mgr.a (mgr.14150) 291 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:05.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:04 smithi089 bash[24318]: cluster 2024-09-16T23:57:02.641713+0000 mgr.a (mgr.14150) 291 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:05.398 INFO:teuthology.orchestra.run.smithi033.stdout:pg_num: 1 2024-09-16T23:57:05.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:05 smithi033 bash[22694]: audit 2024-09-16T23:57:05.405278+0000 mon.a (mon.0) 566 : audit [DBG] from='client.? 172.21.15.33:0/3622135138' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-16T23:57:05.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:05 smithi103 bash[24637]: audit 2024-09-16T23:57:05.405278+0000 mon.a (mon.0) 566 : audit [DBG] from='client.? 172.21.15.33:0/3622135138' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-16T23:57:06.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:05 smithi089 bash[24318]: audit 2024-09-16T23:57:05.405278+0000 mon.a (mon.0) 566 : audit [DBG] from='client.? 172.21.15.33:0/3622135138' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-16T23:57:06.094 INFO:tasks.cephadm:Setting up client nodes... 2024-09-16T23:57:06.094 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-09-16T23:57:06.094 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-09-16T23:57:06.095 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph mgr dump --format=json 2024-09-16T23:57:06.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:06 smithi103 bash[24637]: cluster 2024-09-16T23:57:04.642211+0000 mgr.a (mgr.14150) 292 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:06.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:06 smithi033 bash[22694]: cluster 2024-09-16T23:57:04.642211+0000 mgr.a (mgr.14150) 292 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:07.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:06 smithi089 bash[24318]: cluster 2024-09-16T23:57:04.642211+0000 mgr.a (mgr.14150) 292 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:08.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:08 smithi103 bash[24637]: cluster 2024-09-16T23:57:06.642771+0000 mgr.a (mgr.14150) 293 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:08.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:08 smithi033 bash[22694]: cluster 2024-09-16T23:57:06.642771+0000 mgr.a (mgr.14150) 293 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:09.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:08 smithi089 bash[24318]: cluster 2024-09-16T23:57:06.642771+0000 mgr.a (mgr.14150) 293 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:10.851 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:57:10.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:10 smithi103 bash[24637]: cluster 2024-09-16T23:57:08.643555+0000 mgr.a (mgr.14150) 294 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:10.995 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:10 smithi033 bash[22694]: cluster 2024-09-16T23:57:08.643555+0000 mgr.a (mgr.14150) 294 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:11.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:10 smithi089 bash[24318]: cluster 2024-09-16T23:57:08.643555+0000 mgr.a (mgr.14150) 294 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:12.450 INFO:teuthology.orchestra.run.smithi033.stdout: 2024-09-16T23:57:12.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:12 smithi033 bash[22694]: cluster 2024-09-16T23:57:10.644138+0000 mgr.a (mgr.14150) 295 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:12.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:12 smithi033 bash[22694]: audit 2024-09-16T23:57:12.449688+0000 mon.a (mon.0) 567 : audit [DBG] from='client.? 172.21.15.33:0/3444398040' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-16T23:57:12.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:12 smithi103 bash[24637]: cluster 2024-09-16T23:57:10.644138+0000 mgr.a (mgr.14150) 295 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:12.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:12 smithi103 bash[24637]: audit 2024-09-16T23:57:12.449688+0000 mon.a (mon.0) 567 : audit [DBG] from='client.? 172.21.15.33:0/3444398040' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-16T23:57:13.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:12 smithi089 bash[24318]: cluster 2024-09-16T23:57:10.644138+0000 mgr.a (mgr.14150) 295 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:13.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:12 smithi089 bash[24318]: audit 2024-09-16T23:57:12.449688+0000 mon.a (mon.0) 567 : audit [DBG] from='client.? 172.21.15.33:0/3444398040' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-16T23:57:13.201 INFO:teuthology.orchestra.run.smithi033.stdout:{"epoch":15,"flags":0,"active_gid":14150,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.33:6800","nonce":3383675457},{"type":"v1","addr":"172.21.15.33:6801","nonce":3383675457}]},"active_addr":"172.21.15.33:6801/3383675457","active_change":"2024-09-16T23:49:32.524675+0000","active_mgr_features":4540701547738038271,"available":true,"standbys":[{"gid":24110,"name":"b","mgr_features":4540701547738038271,"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":[]}}},{"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":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = 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":"2359","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":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = 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","read","upmap","upmap-read"],"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":[]},"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":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","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_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:9.4.12","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_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query 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.2.4","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:3.0.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_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.5","min":"","max":"","enum_allowed":[],"desc":"Nvme-of 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:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB 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":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","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":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","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":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","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":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","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":[]},"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":"True","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":[]},"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":[]},"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":[]},"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":"diskprediction_local","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":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"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":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]},"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":[]}}},{"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":[]}}},{"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":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","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":[]},"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":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]},"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":[]}}},{"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":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","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":[]},"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":[]},"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":[]}}},{"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":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","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":[]},"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":[]},"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":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]},"leaderboard_description":{"name":"leaderboard_description","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":[]},"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":[]},"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":[]}}},{"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":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","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":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","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":[]},"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":[]}}},{"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":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = 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":"2359","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":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = 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","read","upmap","upmap-read"],"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":[]},"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":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","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_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:9.4.12","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_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query 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.2.4","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:3.0.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_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.5","min":"","max":"","enum_allowed":[],"desc":"Nvme-of 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:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB 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":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","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":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","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":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","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":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","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":[]},"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":"True","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":[]},"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":[]},"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":[]},"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":"diskprediction_local","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":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"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":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]},"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":[]}}},{"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":[]}}},{"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":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","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":[]},"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":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]},"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":[]}}},{"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":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","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":[]},"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":[]},"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":[]}}},{"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":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","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":[]},"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":[]},"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":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]},"leaderboard_description":{"name":"leaderboard_description","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":[]},"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":[]},"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":[]}}},{"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":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","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":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","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":[]},"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.33: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"],"reef":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"squid":["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.33:0","nonce":1291810194}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.33:0","nonce":442750366}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.33:0","nonce":3832713475}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.33:0","nonce":820324464}]}]} 2024-09-16T23:57:13.206 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-09-16T23:57:13.206 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-09-16T23:57:13.206 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-16T23:57:14.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:14 smithi103 bash[24637]: cluster 2024-09-16T23:57:12.644680+0000 mgr.a (mgr.14150) 296 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:14.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:14 smithi033 bash[22694]: cluster 2024-09-16T23:57:12.644680+0000 mgr.a (mgr.14150) 296 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:15.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:14 smithi089 bash[24318]: cluster 2024-09-16T23:57:12.644680+0000 mgr.a (mgr.14150) 296 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:16.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:16 smithi103 bash[24637]: cluster 2024-09-16T23:57:14.645183+0000 mgr.a (mgr.14150) 297 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:16.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:16 smithi033 bash[22694]: cluster 2024-09-16T23:57:14.645183+0000 mgr.a (mgr.14150) 297 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:17.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:16 smithi089 bash[24318]: cluster 2024-09-16T23:57:14.645183+0000 mgr.a (mgr.14150) 297 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:17.957 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:57:18.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:18 smithi103 bash[24637]: cluster 2024-09-16T23:57:16.645773+0000 mgr.a (mgr.14150) 298 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:18.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:18 smithi033 bash[22694]: cluster 2024-09-16T23:57:16.645773+0000 mgr.a (mgr.14150) 298 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:19.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:18 smithi089 bash[24318]: cluster 2024-09-16T23:57:16.645773+0000 mgr.a (mgr.14150) 298 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:19.584 INFO:teuthology.orchestra.run.smithi033.stdout: 2024-09-16T23:57:19.584 INFO:teuthology.orchestra.run.smithi033.stdout:{"epoch":45,"fsid":"f4fb0768-7485-11ef-bceb-c7b262605968","created":"2024-09-16T23:48:29.030163+0000","modified":"2024-09-16T23:56:48.605818+0000","last_up_change":"2024-09-16T23:56:45.194434+0000","last_in_change":"2024-09-16T23:56:15.833405+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":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-16T23:54:07.223582+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,"is_stretch_pool":false,"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":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"04f3a09b-685a-4fab-9fb1-a4a282f45e63","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":27,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.33:6802","nonce":4015228864},{"type":"v1","addr":"172.21.15.33:6803","nonce":4015228864}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.33:6804","nonce":4015228864},{"type":"v1","addr":"172.21.15.33:6805","nonce":4015228864}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.33:6808","nonce":4015228864},{"type":"v1","addr":"172.21.15.33:6809","nonce":4015228864}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.33:6806","nonce":4015228864},{"type":"v1","addr":"172.21.15.33:6807","nonce":4015228864}]},"public_addr":"172.21.15.33:6803/4015228864","cluster_addr":"172.21.15.33:6805/4015228864","heartbeat_back_addr":"172.21.15.33:6809/4015228864","heartbeat_front_addr":"172.21.15.33:6807/4015228864","state":["exists","up"]},{"osd":1,"uuid":"1e62e273-a6b4-432b-b9d0-f4cdff282114","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.33:6810","nonce":608637482},{"type":"v1","addr":"172.21.15.33:6811","nonce":608637482}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.33:6812","nonce":608637482},{"type":"v1","addr":"172.21.15.33:6813","nonce":608637482}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.33:6816","nonce":608637482},{"type":"v1","addr":"172.21.15.33:6817","nonce":608637482}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.33:6814","nonce":608637482},{"type":"v1","addr":"172.21.15.33:6815","nonce":608637482}]},"public_addr":"172.21.15.33:6811/608637482","cluster_addr":"172.21.15.33:6813/608637482","heartbeat_back_addr":"172.21.15.33:6817/608637482","heartbeat_front_addr":"172.21.15.33:6815/608637482","state":["exists","up"]},{"osd":2,"uuid":"6813416c-9b23-4b42-a23e-e1f6cb8375d2","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.89:6800","nonce":3334294688},{"type":"v1","addr":"172.21.15.89:6801","nonce":3334294688}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.89:6802","nonce":3334294688},{"type":"v1","addr":"172.21.15.89:6803","nonce":3334294688}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.89:6806","nonce":3334294688},{"type":"v1","addr":"172.21.15.89:6807","nonce":3334294688}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.89:6804","nonce":3334294688},{"type":"v1","addr":"172.21.15.89:6805","nonce":3334294688}]},"public_addr":"172.21.15.89:6801/3334294688","cluster_addr":"172.21.15.89:6803/3334294688","heartbeat_back_addr":"172.21.15.89:6807/3334294688","heartbeat_front_addr":"172.21.15.89:6805/3334294688","state":["exists","up"]},{"osd":3,"uuid":"0f344e8e-367a-42d0-9db9-bd5c3ac25162","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.89:6808","nonce":2861233868},{"type":"v1","addr":"172.21.15.89:6809","nonce":2861233868}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.89:6810","nonce":2861233868},{"type":"v1","addr":"172.21.15.89:6811","nonce":2861233868}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.89:6814","nonce":2861233868},{"type":"v1","addr":"172.21.15.89:6815","nonce":2861233868}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.89:6812","nonce":2861233868},{"type":"v1","addr":"172.21.15.89:6813","nonce":2861233868}]},"public_addr":"172.21.15.89:6809/2861233868","cluster_addr":"172.21.15.89:6811/2861233868","heartbeat_back_addr":"172.21.15.89:6815/2861233868","heartbeat_front_addr":"172.21.15.89:6813/2861233868","state":["exists","up"]},{"osd":4,"uuid":"cc9935c5-54eb-42bf-b96e-43c7c6e8ce5d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.103:6800","nonce":757670800},{"type":"v1","addr":"172.21.15.103:6801","nonce":757670800}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.103:6802","nonce":757670800},{"type":"v1","addr":"172.21.15.103:6803","nonce":757670800}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.103:6806","nonce":757670800},{"type":"v1","addr":"172.21.15.103:6807","nonce":757670800}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.103:6804","nonce":757670800},{"type":"v1","addr":"172.21.15.103:6805","nonce":757670800}]},"public_addr":"172.21.15.103:6801/757670800","cluster_addr":"172.21.15.103:6803/757670800","heartbeat_back_addr":"172.21.15.103:6807/757670800","heartbeat_front_addr":"172.21.15.103:6805/757670800","state":["exists","up"]},{"osd":5,"uuid":"7d8a977e-95b9-4ed7-9392-99d412ea259f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":41,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.103:6808","nonce":463355828},{"type":"v1","addr":"172.21.15.103:6809","nonce":463355828}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.103:6810","nonce":463355828},{"type":"v1","addr":"172.21.15.103:6811","nonce":463355828}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.103:6814","nonce":463355828},{"type":"v1","addr":"172.21.15.103:6815","nonce":463355828}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.103:6812","nonce":463355828},{"type":"v1","addr":"172.21.15.103:6813","nonce":463355828}]},"public_addr":"172.21.15.103:6809/463355828","cluster_addr":"172.21.15.103:6811/463355828","heartbeat_back_addr":"172.21.15.103:6815/463355828","heartbeat_front_addr":"172.21.15.103:6813/463355828","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T23:52:14.159242+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T23:53:10.538963+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T23:54:04.467925+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T23:55:00.188352+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T23:55:50.309731+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T23:56:43.592834+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.33:0/2510547169":"2024-09-17T23:49:32.524574+0000","172.21.15.33:0/3154507995":"2024-09-17T23:49:32.524574+0000","172.21.15.33:6800/3497304760":"2024-09-17T23:49:32.524574+0000","172.21.15.33:6801/3497304760":"2024-09-17T23:49:32.524574+0000","172.21.15.33:0/2272559538":"2024-09-17T23:49:32.524574+0000","172.21.15.33:6800/510417407":"2024-09-17T23:48:57.570353+0000","172.21.15.33:6801/510417407":"2024-09-17T23:48:57.570353+0000","172.21.15.33:0/757514480":"2024-09-17T23:48:57.570353+0000","172.21.15.33:0/761558961":"2024-09-17T23:48:57.570353+0000","172.21.15.33:0/1374029113":"2024-09-17T23:48:57.570353+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-16T23:57:20.335 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-09-16T23:57:20.335 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-16T23:57:20.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:20 smithi033 bash[22694]: cluster 2024-09-16T23:57:18.646389+0000 mgr.a (mgr.14150) 299 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:20.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:20 smithi033 bash[22694]: audit 2024-09-16T23:57:19.590736+0000 mon.a (mon.0) 568 : audit [DBG] from='client.? 172.21.15.33:0/1858253813' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T23:57:20.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:20 smithi103 bash[24637]: cluster 2024-09-16T23:57:18.646389+0000 mgr.a (mgr.14150) 299 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:20.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:20 smithi103 bash[24637]: audit 2024-09-16T23:57:19.590736+0000 mon.a (mon.0) 568 : audit [DBG] from='client.? 172.21.15.33:0/1858253813' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T23:57:21.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:20 smithi089 bash[24318]: cluster 2024-09-16T23:57:18.646389+0000 mgr.a (mgr.14150) 299 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:21.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:20 smithi089 bash[24318]: audit 2024-09-16T23:57:19.590736+0000 mon.a (mon.0) 568 : audit [DBG] from='client.? 172.21.15.33:0/1858253813' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T23:57:22.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:22 smithi103 bash[24637]: cluster 2024-09-16T23:57:20.647003+0000 mgr.a (mgr.14150) 300 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:22.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:22 smithi033 bash[22694]: cluster 2024-09-16T23:57:20.647003+0000 mgr.a (mgr.14150) 300 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:23.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:22 smithi089 bash[24318]: cluster 2024-09-16T23:57:20.647003+0000 mgr.a (mgr.14150) 300 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:24.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:24 smithi103 bash[24637]: cluster 2024-09-16T23:57:22.647725+0000 mgr.a (mgr.14150) 301 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:24.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:24 smithi033 bash[22694]: cluster 2024-09-16T23:57:22.647725+0000 mgr.a (mgr.14150) 301 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:25.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:24 smithi089 bash[24318]: cluster 2024-09-16T23:57:22.647725+0000 mgr.a (mgr.14150) 301 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:25.091 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:57:26.634 INFO:teuthology.orchestra.run.smithi033.stdout: 2024-09-16T23:57:26.634 INFO:teuthology.orchestra.run.smithi033.stdout:{"epoch":45,"fsid":"f4fb0768-7485-11ef-bceb-c7b262605968","created":"2024-09-16T23:48:29.030163+0000","modified":"2024-09-16T23:56:48.605818+0000","last_up_change":"2024-09-16T23:56:45.194434+0000","last_in_change":"2024-09-16T23:56:15.833405+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":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-16T23:54:07.223582+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,"is_stretch_pool":false,"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":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"04f3a09b-685a-4fab-9fb1-a4a282f45e63","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":27,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.33:6802","nonce":4015228864},{"type":"v1","addr":"172.21.15.33:6803","nonce":4015228864}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.33:6804","nonce":4015228864},{"type":"v1","addr":"172.21.15.33:6805","nonce":4015228864}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.33:6808","nonce":4015228864},{"type":"v1","addr":"172.21.15.33:6809","nonce":4015228864}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.33:6806","nonce":4015228864},{"type":"v1","addr":"172.21.15.33:6807","nonce":4015228864}]},"public_addr":"172.21.15.33:6803/4015228864","cluster_addr":"172.21.15.33:6805/4015228864","heartbeat_back_addr":"172.21.15.33:6809/4015228864","heartbeat_front_addr":"172.21.15.33:6807/4015228864","state":["exists","up"]},{"osd":1,"uuid":"1e62e273-a6b4-432b-b9d0-f4cdff282114","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.33:6810","nonce":608637482},{"type":"v1","addr":"172.21.15.33:6811","nonce":608637482}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.33:6812","nonce":608637482},{"type":"v1","addr":"172.21.15.33:6813","nonce":608637482}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.33:6816","nonce":608637482},{"type":"v1","addr":"172.21.15.33:6817","nonce":608637482}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.33:6814","nonce":608637482},{"type":"v1","addr":"172.21.15.33:6815","nonce":608637482}]},"public_addr":"172.21.15.33:6811/608637482","cluster_addr":"172.21.15.33:6813/608637482","heartbeat_back_addr":"172.21.15.33:6817/608637482","heartbeat_front_addr":"172.21.15.33:6815/608637482","state":["exists","up"]},{"osd":2,"uuid":"6813416c-9b23-4b42-a23e-e1f6cb8375d2","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.89:6800","nonce":3334294688},{"type":"v1","addr":"172.21.15.89:6801","nonce":3334294688}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.89:6802","nonce":3334294688},{"type":"v1","addr":"172.21.15.89:6803","nonce":3334294688}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.89:6806","nonce":3334294688},{"type":"v1","addr":"172.21.15.89:6807","nonce":3334294688}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.89:6804","nonce":3334294688},{"type":"v1","addr":"172.21.15.89:6805","nonce":3334294688}]},"public_addr":"172.21.15.89:6801/3334294688","cluster_addr":"172.21.15.89:6803/3334294688","heartbeat_back_addr":"172.21.15.89:6807/3334294688","heartbeat_front_addr":"172.21.15.89:6805/3334294688","state":["exists","up"]},{"osd":3,"uuid":"0f344e8e-367a-42d0-9db9-bd5c3ac25162","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.89:6808","nonce":2861233868},{"type":"v1","addr":"172.21.15.89:6809","nonce":2861233868}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.89:6810","nonce":2861233868},{"type":"v1","addr":"172.21.15.89:6811","nonce":2861233868}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.89:6814","nonce":2861233868},{"type":"v1","addr":"172.21.15.89:6815","nonce":2861233868}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.89:6812","nonce":2861233868},{"type":"v1","addr":"172.21.15.89:6813","nonce":2861233868}]},"public_addr":"172.21.15.89:6809/2861233868","cluster_addr":"172.21.15.89:6811/2861233868","heartbeat_back_addr":"172.21.15.89:6815/2861233868","heartbeat_front_addr":"172.21.15.89:6813/2861233868","state":["exists","up"]},{"osd":4,"uuid":"cc9935c5-54eb-42bf-b96e-43c7c6e8ce5d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.103:6800","nonce":757670800},{"type":"v1","addr":"172.21.15.103:6801","nonce":757670800}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.103:6802","nonce":757670800},{"type":"v1","addr":"172.21.15.103:6803","nonce":757670800}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.103:6806","nonce":757670800},{"type":"v1","addr":"172.21.15.103:6807","nonce":757670800}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.103:6804","nonce":757670800},{"type":"v1","addr":"172.21.15.103:6805","nonce":757670800}]},"public_addr":"172.21.15.103:6801/757670800","cluster_addr":"172.21.15.103:6803/757670800","heartbeat_back_addr":"172.21.15.103:6807/757670800","heartbeat_front_addr":"172.21.15.103:6805/757670800","state":["exists","up"]},{"osd":5,"uuid":"7d8a977e-95b9-4ed7-9392-99d412ea259f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":41,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.103:6808","nonce":463355828},{"type":"v1","addr":"172.21.15.103:6809","nonce":463355828}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.103:6810","nonce":463355828},{"type":"v1","addr":"172.21.15.103:6811","nonce":463355828}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.103:6814","nonce":463355828},{"type":"v1","addr":"172.21.15.103:6815","nonce":463355828}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.103:6812","nonce":463355828},{"type":"v1","addr":"172.21.15.103:6813","nonce":463355828}]},"public_addr":"172.21.15.103:6809/463355828","cluster_addr":"172.21.15.103:6811/463355828","heartbeat_back_addr":"172.21.15.103:6815/463355828","heartbeat_front_addr":"172.21.15.103:6813/463355828","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T23:52:14.159242+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T23:53:10.538963+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T23:54:04.467925+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T23:55:00.188352+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T23:55:50.309731+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T23:56:43.592834+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.33:0/2510547169":"2024-09-17T23:49:32.524574+0000","172.21.15.33:0/3154507995":"2024-09-17T23:49:32.524574+0000","172.21.15.33:6800/3497304760":"2024-09-17T23:49:32.524574+0000","172.21.15.33:6801/3497304760":"2024-09-17T23:49:32.524574+0000","172.21.15.33:0/2272559538":"2024-09-17T23:49:32.524574+0000","172.21.15.33:6800/510417407":"2024-09-17T23:48:57.570353+0000","172.21.15.33:6801/510417407":"2024-09-17T23:48:57.570353+0000","172.21.15.33:0/757514480":"2024-09-17T23:48:57.570353+0000","172.21.15.33:0/761558961":"2024-09-17T23:48:57.570353+0000","172.21.15.33:0/1374029113":"2024-09-17T23:48:57.570353+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-16T23:57:26.836 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:26 smithi033 bash[22694]: cluster 2024-09-16T23:57:24.648444+0000 mgr.a (mgr.14150) 302 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:26.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:26 smithi103 bash[24637]: cluster 2024-09-16T23:57:24.648444+0000 mgr.a (mgr.14150) 302 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:27.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:26 smithi089 bash[24318]: cluster 2024-09-16T23:57:24.648444+0000 mgr.a (mgr.14150) 302 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:27.334 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-09-16T23:57:27.334 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-09-16T23:57:27.335 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-09-16T23:57:27.335 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-09-16T23:57:27.336 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-09-16T23:57:27.336 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-09-16T23:57:27.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:27 smithi033 bash[22694]: audit 2024-09-16T23:57:26.640592+0000 mon.a (mon.0) 569 : audit [DBG] from='client.? 172.21.15.33:0/3540163974' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T23:57:27.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:27 smithi103 bash[24637]: audit 2024-09-16T23:57:26.640592+0000 mon.a (mon.0) 569 : audit [DBG] from='client.? 172.21.15.33:0/3540163974' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T23:57:28.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:27 smithi089 bash[24318]: audit 2024-09-16T23:57:26.640592+0000 mon.a (mon.0) 569 : audit [DBG] from='client.? 172.21.15.33:0/3540163974' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T23:57:28.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:28 smithi103 bash[24637]: cluster 2024-09-16T23:57:26.648893+0000 mgr.a (mgr.14150) 303 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:28.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:28 smithi033 bash[22694]: cluster 2024-09-16T23:57:26.648893+0000 mgr.a (mgr.14150) 303 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:29.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:28 smithi089 bash[24318]: cluster 2024-09-16T23:57:26.648893+0000 mgr.a (mgr.14150) 303 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:30.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:30 smithi103 bash[24637]: cluster 2024-09-16T23:57:28.649559+0000 mgr.a (mgr.14150) 304 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:30.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:30 smithi033 bash[22694]: cluster 2024-09-16T23:57:28.649559+0000 mgr.a (mgr.14150) 304 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:31.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:30 smithi089 bash[24318]: cluster 2024-09-16T23:57:28.649559+0000 mgr.a (mgr.14150) 304 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:32.092 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:57:32.092 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:57:32.092 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:57:32.093 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:57:32.093 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:57:32.094 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:57:32.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:32 smithi103 bash[24637]: cluster 2024-09-16T23:57:30.650245+0000 mgr.a (mgr.14150) 305 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:32.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:32 smithi033 bash[22694]: cluster 2024-09-16T23:57:30.650245+0000 mgr.a (mgr.14150) 305 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:33.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:32 smithi089 bash[24318]: cluster 2024-09-16T23:57:30.650245+0000 mgr.a (mgr.14150) 305 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:34.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:34 smithi033 bash[22694]: cluster 2024-09-16T23:57:32.650831+0000 mgr.a (mgr.14150) 306 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:34.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:34 smithi103 bash[24637]: cluster 2024-09-16T23:57:32.650831+0000 mgr.a (mgr.14150) 306 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:35.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:34 smithi089 bash[24318]: cluster 2024-09-16T23:57:32.650831+0000 mgr.a (mgr.14150) 306 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:35.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:35 smithi103 bash[24637]: cluster 2024-09-16T23:57:34.651207+0000 mgr.a (mgr.14150) 307 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:36.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:35 smithi089 bash[24318]: cluster 2024-09-16T23:57:34.651207+0000 mgr.a (mgr.14150) 307 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:36.009 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:35 smithi033 bash[22694]: cluster 2024-09-16T23:57:34.651207+0000 mgr.a (mgr.14150) 307 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:36.260 INFO:teuthology.orchestra.run.smithi033.stdout:77309411373 2024-09-16T23:57:36.261 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-09-16T23:57:37.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:37 smithi103 bash[24637]: cluster 2024-09-16T23:57:36.651522+0000 mgr.a (mgr.14150) 308 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:38.000 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:37 smithi033 bash[22694]: cluster 2024-09-16T23:57:36.651522+0000 mgr.a (mgr.14150) 308 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:38.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:37 smithi089 bash[24318]: cluster 2024-09-16T23:57:36.651522+0000 mgr.a (mgr.14150) 308 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:38.529 INFO:teuthology.orchestra.run.smithi033.stdout:176093659148 2024-09-16T23:57:38.529 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-09-16T23:57:38.646 INFO:teuthology.orchestra.run.smithi033.stdout:107374182433 2024-09-16T23:57:38.647 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-09-16T23:57:39.069 INFO:teuthology.orchestra.run.smithi033.stdout:141733920792 2024-09-16T23:57:39.070 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-09-16T23:57:39.750 INFO:teuthology.orchestra.run.smithi033.stdout:34359738435 2024-09-16T23:57:39.751 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-09-16T23:57:39.761 INFO:teuthology.orchestra.run.smithi033.stdout:55834574902 2024-09-16T23:57:39.761 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-09-16T23:57:39.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:39 smithi103 bash[24637]: cluster 2024-09-16T23:57:38.651909+0000 mgr.a (mgr.14150) 309 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:39.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:39 smithi033 bash[22694]: cluster 2024-09-16T23:57:38.651909+0000 mgr.a (mgr.14150) 309 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:40.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:39 smithi089 bash[24318]: cluster 2024-09-16T23:57:38.651909+0000 mgr.a (mgr.14150) 309 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:41.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:41 smithi103 bash[24637]: cluster 2024-09-16T23:57:40.652497+0000 mgr.a (mgr.14150) 310 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:41.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:41 smithi033 bash[22694]: cluster 2024-09-16T23:57:40.652497+0000 mgr.a (mgr.14150) 310 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:42.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:41 smithi089 bash[24318]: cluster 2024-09-16T23:57:40.652497+0000 mgr.a (mgr.14150) 310 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:42.009 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:57:43.019 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:57:43.019 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:57:43.020 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:57:43.704 INFO:teuthology.orchestra.run.smithi033.stdout:77309411375 2024-09-16T23:57:43.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:43 smithi103 bash[24637]: cluster 2024-09-16T23:57:42.653070+0000 mgr.a (mgr.14150) 311 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:43.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:43 smithi103 bash[24637]: audit 2024-09-16T23:57:43.711673+0000 mon.a (mon.0) 570 : audit [DBG] from='client.? 172.21.15.33:0/4024213886' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-16T23:57:43.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:43 smithi033 bash[22694]: cluster 2024-09-16T23:57:42.653070+0000 mgr.a (mgr.14150) 311 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:43.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:43 smithi033 bash[22694]: audit 2024-09-16T23:57:43.711673+0000 mon.a (mon.0) 570 : audit [DBG] from='client.? 172.21.15.33:0/4024213886' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-16T23:57:44.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:43 smithi089 bash[24318]: cluster 2024-09-16T23:57:42.653070+0000 mgr.a (mgr.14150) 311 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:44.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:43 smithi089 bash[24318]: audit 2024-09-16T23:57:43.711673+0000 mon.a (mon.0) 570 : audit [DBG] from='client.? 172.21.15.33:0/4024213886' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-16T23:57:44.025 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:57:44.025 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:57:45.567 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411373 got 77309411375 for osd.2 2024-09-16T23:57:45.567 DEBUG:teuthology.parallel:result is None 2024-09-16T23:57:45.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:45 smithi103 bash[24637]: cluster 2024-09-16T23:57:44.653624+0000 mgr.a (mgr.14150) 312 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:45.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:45 smithi033 bash[22694]: cluster 2024-09-16T23:57:44.653624+0000 mgr.a (mgr.14150) 312 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:46.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:45 smithi089 bash[24318]: cluster 2024-09-16T23:57:44.653624+0000 mgr.a (mgr.14150) 312 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:46.721 INFO:teuthology.orchestra.run.smithi033.stdout:176093659150 2024-09-16T23:57:47.013 INFO:teuthology.orchestra.run.smithi033.stdout:141733920793 2024-09-16T23:57:47.044 INFO:teuthology.orchestra.run.smithi033.stdout:107374182435 2024-09-16T23:57:47.541 INFO:teuthology.orchestra.run.smithi033.stdout:34359738437 2024-09-16T23:57:47.862 INFO:teuthology.orchestra.run.smithi033.stdout:55834574904 2024-09-16T23:57:47.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:47 smithi103 bash[24637]: cluster 2024-09-16T23:57:46.654128+0000 mgr.a (mgr.14150) 313 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:47.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:47 smithi103 bash[24637]: audit 2024-09-16T23:57:46.729398+0000 mon.a (mon.0) 571 : audit [DBG] from='client.? 172.21.15.33:0/701755636' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-16T23:57:47.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:47 smithi103 bash[24637]: audit 2024-09-16T23:57:47.020851+0000 mon.a (mon.0) 572 : audit [DBG] from='client.? 172.21.15.33:0/3643825849' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-16T23:57:47.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:47 smithi103 bash[24637]: audit 2024-09-16T23:57:47.052266+0000 mon.a (mon.0) 573 : audit [DBG] from='client.? 172.21.15.33:0/1565021761' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-16T23:57:47.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:47 smithi103 bash[24637]: audit 2024-09-16T23:57:47.549437+0000 mon.a (mon.0) 574 : audit [DBG] from='client.? 172.21.15.33:0/4025791135' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-16T23:57:47.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:47 smithi033 bash[22694]: cluster 2024-09-16T23:57:46.654128+0000 mgr.a (mgr.14150) 313 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:47.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:47 smithi033 bash[22694]: audit 2024-09-16T23:57:46.729398+0000 mon.a (mon.0) 571 : audit [DBG] from='client.? 172.21.15.33:0/701755636' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-16T23:57:47.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:47 smithi033 bash[22694]: audit 2024-09-16T23:57:47.020851+0000 mon.a (mon.0) 572 : audit [DBG] from='client.? 172.21.15.33:0/3643825849' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-16T23:57:47.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:47 smithi033 bash[22694]: audit 2024-09-16T23:57:47.052266+0000 mon.a (mon.0) 573 : audit [DBG] from='client.? 172.21.15.33:0/1565021761' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-16T23:57:47.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:47 smithi033 bash[22694]: audit 2024-09-16T23:57:47.549437+0000 mon.a (mon.0) 574 : audit [DBG] from='client.? 172.21.15.33:0/4025791135' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-16T23:57:48.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:47 smithi089 bash[24318]: cluster 2024-09-16T23:57:46.654128+0000 mgr.a (mgr.14150) 313 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:48.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:47 smithi089 bash[24318]: audit 2024-09-16T23:57:46.729398+0000 mon.a (mon.0) 571 : audit [DBG] from='client.? 172.21.15.33:0/701755636' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-16T23:57:48.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:47 smithi089 bash[24318]: audit 2024-09-16T23:57:47.020851+0000 mon.a (mon.0) 572 : audit [DBG] from='client.? 172.21.15.33:0/3643825849' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-16T23:57:48.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:47 smithi089 bash[24318]: audit 2024-09-16T23:57:47.052266+0000 mon.a (mon.0) 573 : audit [DBG] from='client.? 172.21.15.33:0/1565021761' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-16T23:57:48.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:47 smithi089 bash[24318]: audit 2024-09-16T23:57:47.549437+0000 mon.a (mon.0) 574 : audit [DBG] from='client.? 172.21.15.33:0/4025791135' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-16T23:57:48.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:48 smithi103 bash[24637]: audit 2024-09-16T23:57:47.870012+0000 mon.a (mon.0) 575 : audit [DBG] from='client.? 172.21.15.33:0/3664264541' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-16T23:57:48.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:48 smithi033 bash[22694]: audit 2024-09-16T23:57:47.870012+0000 mon.a (mon.0) 575 : audit [DBG] from='client.? 172.21.15.33:0/3664264541' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-16T23:57:49.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:48 smithi089 bash[24318]: audit 2024-09-16T23:57:47.870012+0000 mon.a (mon.0) 575 : audit [DBG] from='client.? 172.21.15.33:0/3664264541' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-16T23:57:49.049 INFO:tasks.cephadm.ceph_manager.ceph:need seq 176093659148 got 176093659150 for osd.5 2024-09-16T23:57:49.049 DEBUG:teuthology.parallel:result is None 2024-09-16T23:57:49.187 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182433 got 107374182435 for osd.3 2024-09-16T23:57:49.187 DEBUG:teuthology.parallel:result is None 2024-09-16T23:57:49.205 INFO:tasks.cephadm.ceph_manager.ceph:need seq 141733920792 got 141733920793 for osd.4 2024-09-16T23:57:49.205 DEBUG:teuthology.parallel:result is None 2024-09-16T23:57:49.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:49 smithi103 bash[24637]: cluster 2024-09-16T23:57:48.654686+0000 mgr.a (mgr.14150) 314 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:49.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:49 smithi033 bash[22694]: cluster 2024-09-16T23:57:48.654686+0000 mgr.a (mgr.14150) 314 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:50.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:49 smithi089 bash[24318]: cluster 2024-09-16T23:57:48.654686+0000 mgr.a (mgr.14150) 314 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:50.060 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738435 got 34359738437 for osd.0 2024-09-16T23:57:50.060 DEBUG:teuthology.parallel:result is None 2024-09-16T23:57:50.065 INFO:tasks.cephadm.ceph_manager.ceph:need seq 55834574902 got 55834574904 for osd.1 2024-09-16T23:57:50.065 DEBUG:teuthology.parallel:result is None 2024-09-16T23:57:50.065 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-09-16T23:57:50.066 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-16T23:57:51.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:51 smithi103 bash[24637]: cluster 2024-09-16T23:57:50.655316+0000 mgr.a (mgr.14150) 315 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:51.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:51 smithi033 bash[22694]: cluster 2024-09-16T23:57:50.655316+0000 mgr.a (mgr.14150) 315 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:52.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:51 smithi089 bash[24318]: cluster 2024-09-16T23:57:50.655316+0000 mgr.a (mgr.14150) 315 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:53.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:53 smithi103 bash[24637]: cluster 2024-09-16T23:57:52.656009+0000 mgr.a (mgr.14150) 316 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:53.994 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:53 smithi103 bash[24637]: audit 2024-09-16T23:57:53.616208+0000 mon.a (mon.0) 576 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:57:53.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:53 smithi033 bash[22694]: cluster 2024-09-16T23:57:52.656009+0000 mgr.a (mgr.14150) 316 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:53.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:53 smithi033 bash[22694]: audit 2024-09-16T23:57:53.616208+0000 mon.a (mon.0) 576 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:57:54.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:53 smithi089 bash[24318]: cluster 2024-09-16T23:57:52.656009+0000 mgr.a (mgr.14150) 316 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:54.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:53 smithi089 bash[24318]: audit 2024-09-16T23:57:53.616208+0000 mon.a (mon.0) 576 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:57:54.857 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:57:54.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:54 smithi033 bash[22694]: audit 2024-09-16T23:57:54.417773+0000 mon.a (mon.0) 577 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:57:54.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:54 smithi033 bash[22694]: audit 2024-09-16T23:57:54.419301+0000 mon.a (mon.0) 578 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:57:54.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:54 smithi033 bash[22694]: audit 2024-09-16T23:57:54.428833+0000 mon.a (mon.0) 579 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:57:55.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:54 smithi089 bash[24318]: audit 2024-09-16T23:57:54.417773+0000 mon.a (mon.0) 577 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:57:55.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:54 smithi089 bash[24318]: audit 2024-09-16T23:57:54.419301+0000 mon.a (mon.0) 578 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:57:55.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:54 smithi089 bash[24318]: audit 2024-09-16T23:57:54.428833+0000 mon.a (mon.0) 579 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:57:55.244 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:54 smithi103 bash[24637]: audit 2024-09-16T23:57:54.417773+0000 mon.a (mon.0) 577 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:57:55.244 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:54 smithi103 bash[24637]: audit 2024-09-16T23:57:54.419301+0000 mon.a (mon.0) 578 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:57:55.244 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:54 smithi103 bash[24637]: audit 2024-09-16T23:57:54.428833+0000 mon.a (mon.0) 579 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:57:56.415 INFO:teuthology.orchestra.run.smithi033.stdout: 2024-09-16T23:57:56.415 INFO:teuthology.orchestra.run.smithi033.stderr:dumped all 2024-09-16T23:57:56.744 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:56 smithi103 bash[24637]: cluster 2024-09-16T23:57:54.656593+0000 mgr.a (mgr.14150) 317 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:56.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:56 smithi033 bash[22694]: cluster 2024-09-16T23:57:54.656593+0000 mgr.a (mgr.14150) 317 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:56.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:56 smithi089 bash[24318]: cluster 2024-09-16T23:57:54.656593+0000 mgr.a (mgr.14150) 317 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:57.093 INFO:teuthology.orchestra.run.smithi033.stdout:{"pg_ready":true,"pg_map":{"version":286,"stamp":"2024-09-16T23:57:54.656340+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":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"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":137,"ondisk_log_size":137,"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":178796,"kb_used_data":4140,"kb_used_omap":9,"kb_used_meta":174518,"kb_avail":562292116,"statfs":{"total":575970213888,"available":575787126784,"internally_reserved":0,"allocated":4239360,"data_stored":2732460,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9568,"internal_metadata":178707104},"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.003564"},"pg_stats":[{"pgid":"1.0","version":"21'137","reported_seq":262,"reported_epoch":45,"state":"active+clean","last_fresh":"2024-09-16T23:56:48.617116+0000","last_change":"2024-09-16T23:56:48.616361+0000","last_active":"2024-09-16T23:56:48.617116+0000","last_peered":"2024-09-16T23:56:48.617116+0000","last_clean":"2024-09-16T23:56:48.617116+0000","last_became_active":"2024-09-16T23:56:48.615432+0000","last_became_peered":"2024-09-16T23:56:48.615432+0000","last_unstale":"2024-09-16T23:56:48.617116+0000","last_undegraded":"2024-09-16T23:56:48.617116+0000","last_fullsized":"2024-09-16T23:56:48.617116+0000","mapping_epoch":44,"log_start":"0'0","ondisk_log_start":"0'0","created":19,"last_epoch_clean":45,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-16T23:54:07.224462+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-16T23:54:07.224462+0000","last_clean_scrub_stamp":"2024-09-16T23:54:07.224462+0000","objects_scrubbed":0,"log_size":137,"log_dups_size":0,"ondisk_log_size":137,"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-18T09:05:18.623752+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":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"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":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"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":137,"ondisk_log_size":137,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":41,"seq":176093659151,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28008,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717144,"statfs":{"total":95995035648,"available":95966355456,"internally_reserved":0,"allocated":1003520,"data_stored":750594,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"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":[]},{"osd":4,"up_from":33,"seq":141733920795,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31588,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713564,"statfs":{"total":95995035648,"available":95962689536,"internally_reserved":0,"allocated":409600,"data_stored":160226,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"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":[]},{"osd":3,"up_from":25,"seq":107374182437,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32172,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93712980,"statfs":{"total":95995035648,"available":95962091520,"internally_reserved":0,"allocated":1003520,"data_stored":750594,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":31914439},"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":[]},{"osd":2,"up_from":18,"seq":77309411377,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28008,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717144,"statfs":{"total":95995035648,"available":95966355456,"internally_reserved":0,"allocated":1003520,"data_stored":750594,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"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":[]},{"osd":1,"up_from":13,"seq":55834574906,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31588,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713564,"statfs":{"total":95995035648,"available":95962689536,"internally_reserved":0,"allocated":409600,"data_stored":160226,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"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":[]},{"osd":0,"up_from":8,"seq":34359738438,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27432,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717720,"statfs":{"total":95995035648,"available":95966945280,"internally_reserved":0,"allocated":409600,"data_stored":160226,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"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":[]}],"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-16T23:57:57.094 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-16T23:57:57.743 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:57 smithi103 bash[24637]: audit 2024-09-16T23:57:56.420944+0000 mgr.a (mgr.14150) 318 : audit [DBG] from='client.14427 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T23:57:57.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:57 smithi033 bash[22694]: audit 2024-09-16T23:57:56.420944+0000 mgr.a (mgr.14150) 318 : audit [DBG] from='client.14427 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T23:57:57.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:57 smithi089 bash[24318]: audit 2024-09-16T23:57:56.420944+0000 mgr.a (mgr.14150) 318 : audit [DBG] from='client.14427 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T23:57:58.743 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:57:58 smithi103 bash[24637]: cluster 2024-09-16T23:57:56.657249+0000 mgr.a (mgr.14150) 319 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:58.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:57:58 smithi033 bash[22694]: cluster 2024-09-16T23:57:56.657249+0000 mgr.a (mgr.14150) 319 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:57:58.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:57:58 smithi089 bash[24318]: cluster 2024-09-16T23:57:56.657249+0000 mgr.a (mgr.14150) 319 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:00.744 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:58:00 smithi103 bash[24637]: cluster 2024-09-16T23:57:58.657834+0000 mgr.a (mgr.14150) 320 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:00.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:00 smithi033 bash[22694]: cluster 2024-09-16T23:57:58.657834+0000 mgr.a (mgr.14150) 320 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:00.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:00 smithi089 bash[24318]: cluster 2024-09-16T23:57:58.657834+0000 mgr.a (mgr.14150) 320 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:01.844 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:58:02.743 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:58:02 smithi103 bash[24637]: cluster 2024-09-16T23:58:00.658381+0000 mgr.a (mgr.14150) 321 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:02.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:02 smithi033 bash[22694]: cluster 2024-09-16T23:58:00.658381+0000 mgr.a (mgr.14150) 321 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:02.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:02 smithi089 bash[24318]: cluster 2024-09-16T23:58:00.658381+0000 mgr.a (mgr.14150) 321 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:03.484 INFO:teuthology.orchestra.run.smithi033.stderr:dumped all 2024-09-16T23:58:03.484 INFO:teuthology.orchestra.run.smithi033.stdout: 2024-09-16T23:58:04.251 INFO:teuthology.orchestra.run.smithi033.stdout:{"pg_ready":true,"pg_map":{"version":290,"stamp":"2024-09-16T23:58:02.658689+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":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"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":137,"ondisk_log_size":137,"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":178796,"kb_used_data":4140,"kb_used_omap":9,"kb_used_meta":174518,"kb_avail":562292116,"statfs":{"total":575970213888,"available":575787126784,"internally_reserved":0,"allocated":4239360,"data_stored":2732460,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9568,"internal_metadata":178707104},"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.003703"},"pg_stats":[{"pgid":"1.0","version":"21'137","reported_seq":262,"reported_epoch":45,"state":"active+clean","last_fresh":"2024-09-16T23:56:48.617116+0000","last_change":"2024-09-16T23:56:48.616361+0000","last_active":"2024-09-16T23:56:48.617116+0000","last_peered":"2024-09-16T23:56:48.617116+0000","last_clean":"2024-09-16T23:56:48.617116+0000","last_became_active":"2024-09-16T23:56:48.615432+0000","last_became_peered":"2024-09-16T23:56:48.615432+0000","last_unstale":"2024-09-16T23:56:48.617116+0000","last_undegraded":"2024-09-16T23:56:48.617116+0000","last_fullsized":"2024-09-16T23:56:48.617116+0000","mapping_epoch":44,"log_start":"0'0","ondisk_log_start":"0'0","created":19,"last_epoch_clean":45,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-16T23:54:07.224462+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-16T23:54:07.224462+0000","last_clean_scrub_stamp":"2024-09-16T23:54:07.224462+0000","objects_scrubbed":0,"log_size":137,"log_dups_size":0,"ondisk_log_size":137,"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-18T09:05:18.623752+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":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"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":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"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":137,"ondisk_log_size":137,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":41,"seq":176093659153,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28008,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717144,"statfs":{"total":95995035648,"available":95966355456,"internally_reserved":0,"allocated":1003520,"data_stored":750594,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"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":[]},{"osd":4,"up_from":33,"seq":141733920797,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31588,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713564,"statfs":{"total":95995035648,"available":95962689536,"internally_reserved":0,"allocated":409600,"data_stored":160226,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"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":[]},{"osd":3,"up_from":25,"seq":107374182439,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32172,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93712980,"statfs":{"total":95995035648,"available":95962091520,"internally_reserved":0,"allocated":1003520,"data_stored":750594,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":31914439},"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":[]},{"osd":2,"up_from":18,"seq":77309411379,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28008,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717144,"statfs":{"total":95995035648,"available":95966355456,"internally_reserved":0,"allocated":1003520,"data_stored":750594,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"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":[]},{"osd":1,"up_from":13,"seq":55834574907,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31588,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713564,"statfs":{"total":95995035648,"available":95962689536,"internally_reserved":0,"allocated":409600,"data_stored":160226,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"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":[]},{"osd":0,"up_from":8,"seq":34359738440,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27432,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717720,"statfs":{"total":95995035648,"available":95966945280,"internally_reserved":0,"allocated":409600,"data_stored":160226,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"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":[]}],"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-16T23:58:04.252 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-09-16T23:58:04.252 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-09-16T23:58:04.252 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-09-16T23:58:04.253 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- ceph health --format=json 2024-09-16T23:58:04.744 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:58:04 smithi103 bash[24637]: cluster 2024-09-16T23:58:02.658979+0000 mgr.a (mgr.14150) 322 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:04.744 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:58:04 smithi103 bash[24637]: audit 2024-09-16T23:58:03.491130+0000 mgr.a (mgr.14150) 323 : audit [DBG] from='client.14433 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T23:58:04.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:04 smithi033 bash[22694]: cluster 2024-09-16T23:58:02.658979+0000 mgr.a (mgr.14150) 322 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:04.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:04 smithi033 bash[22694]: audit 2024-09-16T23:58:03.491130+0000 mgr.a (mgr.14150) 323 : audit [DBG] from='client.14433 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T23:58:04.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:04 smithi089 bash[24318]: cluster 2024-09-16T23:58:02.658979+0000 mgr.a (mgr.14150) 322 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:04.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:04 smithi089 bash[24318]: audit 2024-09-16T23:58:03.491130+0000 mgr.a (mgr.14150) 323 : audit [DBG] from='client.14433 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T23:58:06.743 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:58:06 smithi103 bash[24637]: cluster 2024-09-16T23:58:04.659542+0000 mgr.a (mgr.14150) 324 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:06.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:06 smithi033 bash[22694]: cluster 2024-09-16T23:58:04.659542+0000 mgr.a (mgr.14150) 324 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:06.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:06 smithi089 bash[24318]: cluster 2024-09-16T23:58:04.659542+0000 mgr.a (mgr.14150) 324 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:08.743 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:58:08 smithi103 bash[24637]: cluster 2024-09-16T23:58:06.660140+0000 mgr.a (mgr.14150) 325 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:08.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:08 smithi033 bash[22694]: cluster 2024-09-16T23:58:06.660140+0000 mgr.a (mgr.14150) 325 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:08.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:08 smithi089 bash[24318]: cluster 2024-09-16T23:58:06.660140+0000 mgr.a (mgr.14150) 325 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:09.002 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:58:10.516 INFO:teuthology.orchestra.run.smithi033.stdout: 2024-09-16T23:58:10.516 INFO:teuthology.orchestra.run.smithi033.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-09-16T23:58:10.743 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:58:10 smithi103 bash[24637]: cluster 2024-09-16T23:58:08.660739+0000 mgr.a (mgr.14150) 326 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:10.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:10 smithi033 bash[22694]: cluster 2024-09-16T23:58:08.660739+0000 mgr.a (mgr.14150) 326 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:10.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:10 smithi089 bash[24318]: cluster 2024-09-16T23:58:08.660739+0000 mgr.a (mgr.14150) 326 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:11.267 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-09-16T23:58:11.267 INFO:tasks.cephadm:Setup complete, yielding 2024-09-16T23:58:11.268 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-16T23:58:11.278 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi033.front.sepia.ceph.com 2024-09-16T23:58:11.278 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f4fb0768-7485-11ef-bceb-c7b262605968 -- bash -c 'set -ex 2024-09-16T23:58:11.278 DEBUG:teuthology.orchestra.run.smithi033:> HOSTNAMES=$(ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"') 2024-09-16T23:58:11.278 DEBUG:teuthology.orchestra.run.smithi033:> for host in $HOSTNAMES; do 2024-09-16T23:58:11.278 DEBUG:teuthology.orchestra.run.smithi033:> # find the hostname for "host.c" which will have no mgr 2024-09-16T23:58:11.279 DEBUG:teuthology.orchestra.run.smithi033:> HAS_MGRS=$(ceph orch ps --hostname ${host} --format json | jq '"'"'any(.daemon_type == "mgr")'"'"') 2024-09-16T23:58:11.279 DEBUG:teuthology.orchestra.run.smithi033:> if [ "$HAS_MGRS" == "false" ]; then 2024-09-16T23:58:11.279 DEBUG:teuthology.orchestra.run.smithi033:> HOST_C="${host}" 2024-09-16T23:58:11.279 DEBUG:teuthology.orchestra.run.smithi033:> fi 2024-09-16T23:58:11.279 DEBUG:teuthology.orchestra.run.smithi033:> done 2024-09-16T23:58:11.279 DEBUG:teuthology.orchestra.run.smithi033:> # One last thing to worry about before draining the host 2024-09-16T23:58:11.279 DEBUG:teuthology.orchestra.run.smithi033:> # is that the teuthology test tends to put the explicit 2024-09-16T23:58:11.279 DEBUG:teuthology.orchestra.run.smithi033:> # hostnames in the placement for the mon service. 2024-09-16T23:58:11.279 DEBUG:teuthology.orchestra.run.smithi033:> # We want to make sure we can drain without providing 2024-09-16T23:58:11.279 DEBUG:teuthology.orchestra.run.smithi033:> # --force and there is a check for the host being removed 2024-09-16T23:58:11.279 DEBUG:teuthology.orchestra.run.smithi033:> # being listed explicitly in the placements. Therefore, 2024-09-16T23:58:11.280 DEBUG:teuthology.orchestra.run.smithi033:> # we should remove it from the mon placement. 2024-09-16T23:58:11.280 DEBUG:teuthology.orchestra.run.smithi033:> ceph orch ls mon --export > mon.yaml 2024-09-16T23:58:11.280 DEBUG:teuthology.orchestra.run.smithi033:> sed /"$HOST_C"/d mon.yaml > mon_adjusted.yaml 2024-09-16T23:58:11.280 DEBUG:teuthology.orchestra.run.smithi033:> ceph orch apply -i mon_adjusted.yaml 2024-09-16T23:58:11.280 DEBUG:teuthology.orchestra.run.smithi033:> # now drain that host 2024-09-16T23:58:11.280 DEBUG:teuthology.orchestra.run.smithi033:> ceph orch host drain $HOST_C --zap-osd-devices 2024-09-16T23:58:11.280 DEBUG:teuthology.orchestra.run.smithi033:> # wait for drain to complete 2024-09-16T23:58:11.280 DEBUG:teuthology.orchestra.run.smithi033:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-16T23:58:11.280 DEBUG:teuthology.orchestra.run.smithi033:> while [ "$HOST_C_DAEMONS" != "No daemons reported" ]; do 2024-09-16T23:58:11.280 DEBUG:teuthology.orchestra.run.smithi033:> sleep 15 2024-09-16T23:58:11.280 DEBUG:teuthology.orchestra.run.smithi033:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-16T23:58:11.280 DEBUG:teuthology.orchestra.run.smithi033:> done 2024-09-16T23:58:11.280 DEBUG:teuthology.orchestra.run.smithi033:> # we want to check the ability to remove the host from 2024-09-16T23:58:11.280 DEBUG:teuthology.orchestra.run.smithi033:> # the CRUSH map, so we should first verify the host is in 2024-09-16T23:58:11.280 DEBUG:teuthology.orchestra.run.smithi033:> # the CRUSH map. 2024-09-16T23:58:11.281 DEBUG:teuthology.orchestra.run.smithi033:> ceph osd getcrushmap -o compiled-crushmap 2024-09-16T23:58:11.281 DEBUG:teuthology.orchestra.run.smithi033:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-16T23:58:11.281 DEBUG:teuthology.orchestra.run.smithi033:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-16T23:58:11.281 DEBUG:teuthology.orchestra.run.smithi033:> if ! grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-16T23:58:11.281 DEBUG:teuthology.orchestra.run.smithi033:> printf "Expected to see $HOST_C in CRUSH map. Saw:\n\n$CRUSH_MAP" 2024-09-16T23:58:11.281 DEBUG:teuthology.orchestra.run.smithi033:> exit 1 2024-09-16T23:58:11.281 DEBUG:teuthology.orchestra.run.smithi033:> fi 2024-09-16T23:58:11.281 DEBUG:teuthology.orchestra.run.smithi033:> # If the drain was successful, we should be able to remove the 2024-09-16T23:58:11.281 DEBUG:teuthology.orchestra.run.smithi033:> # host without force with no issues. If there are still daemons 2024-09-16T23:58:11.281 DEBUG:teuthology.orchestra.run.smithi033:> # we will get a response telling us to drain the host and a 2024-09-16T23:58:11.281 DEBUG:teuthology.orchestra.run.smithi033:> # non-zero return code 2024-09-16T23:58:11.281 DEBUG:teuthology.orchestra.run.smithi033:> ceph orch host rm $HOST_C --rm-crush-entry 2024-09-16T23:58:11.281 DEBUG:teuthology.orchestra.run.smithi033:> # verify we'"'"'ve successfully removed the host from the CRUSH map 2024-09-16T23:58:11.281 DEBUG:teuthology.orchestra.run.smithi033:> sleep 30 2024-09-16T23:58:11.281 DEBUG:teuthology.orchestra.run.smithi033:> ceph osd getcrushmap -o compiled-crushmap 2024-09-16T23:58:11.282 DEBUG:teuthology.orchestra.run.smithi033:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-16T23:58:11.282 DEBUG:teuthology.orchestra.run.smithi033:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-16T23:58:11.282 DEBUG:teuthology.orchestra.run.smithi033:> if grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-16T23:58:11.282 DEBUG:teuthology.orchestra.run.smithi033:> printf "Saw $HOST_C in CRUSH map after it should have been removed.\n\n$CRUSH_MAP" 2024-09-16T23:58:11.282 DEBUG:teuthology.orchestra.run.smithi033:> exit 1 2024-09-16T23:58:11.282 DEBUG:teuthology.orchestra.run.smithi033:> fi 2024-09-16T23:58:11.282 DEBUG:teuthology.orchestra.run.smithi033:> ' 2024-09-16T23:58:11.743 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:58:11 smithi103 bash[24637]: audit 2024-09-16T23:58:10.523842+0000 mon.a (mon.0) 580 : audit [DBG] from='client.? 172.21.15.33:0/1225586315' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-16T23:58:11.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:11 smithi033 bash[22694]: audit 2024-09-16T23:58:10.523842+0000 mon.a (mon.0) 580 : audit [DBG] from='client.? 172.21.15.33:0/1225586315' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-16T23:58:11.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:11 smithi089 bash[24318]: audit 2024-09-16T23:58:10.523842+0000 mon.a (mon.0) 580 : audit [DBG] from='client.? 172.21.15.33:0/1225586315' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-16T23:58:12.743 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:58:12 smithi103 bash[24637]: cluster 2024-09-16T23:58:10.661237+0000 mgr.a (mgr.14150) 327 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:12.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:12 smithi033 bash[22694]: cluster 2024-09-16T23:58:10.661237+0000 mgr.a (mgr.14150) 327 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:12.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:12 smithi089 bash[24318]: cluster 2024-09-16T23:58:10.661237+0000 mgr.a (mgr.14150) 327 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:14.743 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:58:14 smithi103 bash[24637]: cluster 2024-09-16T23:58:12.661829+0000 mgr.a (mgr.14150) 328 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:14.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:14 smithi033 bash[22694]: cluster 2024-09-16T23:58:12.661829+0000 mgr.a (mgr.14150) 328 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:14.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:14 smithi089 bash[24318]: cluster 2024-09-16T23:58:12.661829+0000 mgr.a (mgr.14150) 328 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:16.041 INFO:teuthology.orchestra.run.smithi033.stderr:Inferring config /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T23:58:16.743 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:58:16 smithi103 bash[24637]: cluster 2024-09-16T23:58:14.662413+0000 mgr.a (mgr.14150) 329 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:16.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:16 smithi033 bash[22694]: cluster 2024-09-16T23:58:14.662413+0000 mgr.a (mgr.14150) 329 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:16.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:16 smithi089 bash[24318]: cluster 2024-09-16T23:58:14.662413+0000 mgr.a (mgr.14150) 329 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:17.381 INFO:teuthology.orchestra.run.smithi033.stderr:++ ceph orch host ls --format json 2024-09-16T23:58:17.381 INFO:teuthology.orchestra.run.smithi033.stderr:++ jq -r '.[] | .hostname' 2024-09-16T23:58:17.685 INFO:teuthology.orchestra.run.smithi033.stderr:+ HOSTNAMES='smithi033 2024-09-16T23:58:17.685 INFO:teuthology.orchestra.run.smithi033.stderr:smithi089 2024-09-16T23:58:17.685 INFO:teuthology.orchestra.run.smithi033.stderr:smithi103' 2024-09-16T23:58:17.685 INFO:teuthology.orchestra.run.smithi033.stderr:+ for host in $HOSTNAMES 2024-09-16T23:58:17.686 INFO:teuthology.orchestra.run.smithi033.stderr:++ ceph orch ps --hostname smithi033 --format json 2024-09-16T23:58:17.686 INFO:teuthology.orchestra.run.smithi033.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-16T23:58:18.001 INFO:teuthology.orchestra.run.smithi033.stderr:+ HAS_MGRS=true 2024-09-16T23:58:18.001 INFO:teuthology.orchestra.run.smithi033.stderr:+ '[' true == false ']' 2024-09-16T23:58:18.001 INFO:teuthology.orchestra.run.smithi033.stderr:+ for host in $HOSTNAMES 2024-09-16T23:58:18.001 INFO:teuthology.orchestra.run.smithi033.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-16T23:58:18.001 INFO:teuthology.orchestra.run.smithi033.stderr:++ ceph orch ps --hostname smithi089 --format json 2024-09-16T23:58:18.307 INFO:teuthology.orchestra.run.smithi033.stderr:+ HAS_MGRS=true 2024-09-16T23:58:18.307 INFO:teuthology.orchestra.run.smithi033.stderr:+ '[' true == false ']' 2024-09-16T23:58:18.307 INFO:teuthology.orchestra.run.smithi033.stderr:+ for host in $HOSTNAMES 2024-09-16T23:58:18.308 INFO:teuthology.orchestra.run.smithi033.stderr:++ ceph orch ps --hostname smithi103 --format json 2024-09-16T23:58:18.308 INFO:teuthology.orchestra.run.smithi033.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-16T23:58:18.621 INFO:teuthology.orchestra.run.smithi033.stderr:+ HAS_MGRS=false 2024-09-16T23:58:18.621 INFO:teuthology.orchestra.run.smithi033.stderr:+ '[' false == false ']' 2024-09-16T23:58:18.621 INFO:teuthology.orchestra.run.smithi033.stderr:+ HOST_C=smithi103 2024-09-16T23:58:18.621 INFO:teuthology.orchestra.run.smithi033.stderr:+ ceph orch ls mon --export 2024-09-16T23:58:18.743 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:58:18 smithi103 bash[24637]: cluster 2024-09-16T23:58:16.663003+0000 mgr.a (mgr.14150) 330 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:18.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:18 smithi033 bash[22694]: cluster 2024-09-16T23:58:16.663003+0000 mgr.a (mgr.14150) 330 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:18.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:18 smithi089 bash[24318]: cluster 2024-09-16T23:58:16.663003+0000 mgr.a (mgr.14150) 330 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:18.938 INFO:teuthology.orchestra.run.smithi033.stderr:+ sed /smithi103/d mon.yaml 2024-09-16T23:58:18.940 INFO:teuthology.orchestra.run.smithi033.stderr:+ ceph orch apply -i mon_adjusted.yaml 2024-09-16T23:58:19.239 INFO:teuthology.orchestra.run.smithi033.stdout:Scheduled mon update... 2024-09-16T23:58:19.252 INFO:teuthology.orchestra.run.smithi033.stderr:+ ceph orch host drain smithi103 --zap-osd-devices 2024-09-16T23:58:20.243 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:58:19 smithi103 systemd[1]: ceph-f4fb0768-7485-11ef-bceb-c7b262605968@mon.c.service: Deactivated successfully. 2024-09-16T23:58:21.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:21 smithi033 bash[22694]: audit 2024-09-16T23:58:18.609298+0000 mgr.a (mgr.14150) 334 : audit [DBG] from='client.14463 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi103", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T23:58:21.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:21 smithi033 bash[22694]: cluster 2024-09-16T23:58:18.663558+0000 mgr.a (mgr.14150) 335 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:21.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:21 smithi033 bash[22694]: audit 2024-09-16T23:58:18.924180+0000 mgr.a (mgr.14150) 336 : audit [DBG] from='client.14469 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:58:21.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:21 smithi033 bash[22694]: audit 2024-09-16T23:58:19.234188+0000 mgr.a (mgr.14150) 337 : audit [DBG] from='client.14475 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:58:21.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:21 smithi033 bash[22694]: cephadm 2024-09-16T23:58:19.239840+0000 mgr.a (mgr.14150) 338 : cephadm [INF] Saving service mon spec with placement smithi033:172.21.15.33=a;smithi089:172.21.15.89=b;count:3 2024-09-16T23:58:21.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:21 smithi033 bash[22694]: cephadm 2024-09-16T23:58:19.259861+0000 mgr.a (mgr.14150) 339 : cephadm [INF] Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-16T23:58:21.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:21 smithi033 bash[22694]: cephadm 2024-09-16T23:58:19.259941+0000 mgr.a (mgr.14150) 340 : cephadm [INF] Removing monitor c from monmap... 2024-09-16T23:58:21.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:21 smithi033 bash[22694]: audit 2024-09-16T23:58:19.261608+0000 mon.a (mon.0) 589 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-09-16T23:58:21.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:21 smithi033 bash[22694]: audit 2024-09-16T23:58:19.264408+0000 mon.a (mon.0) 590 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T23:58:21.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:21 smithi033 bash[22694]: audit 2024-09-16T23:58:19.264565+0000 mon.a (mon.0) 591 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:58:21.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:21 smithi033 bash[22694]: cluster 2024-09-16T23:58:19.275357+0000 mon.b (mon.1) 16 : cluster [INF] mon.b calling monitor election 2024-09-16T23:58:21.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:21 smithi033 bash[22694]: cluster 2024-09-16T23:58:21.265091+0000 mon.a (mon.0) 592 : cluster [INF] mon.a calling monitor election 2024-09-16T23:58:21.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:21 smithi033 bash[22694]: cluster 2024-09-16T23:58:21.285956+0000 mon.a (mon.0) 593 : cluster [INF] mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-16T23:58:21.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:21 smithi033 bash[22694]: cluster 2024-09-16T23:58:21.292564+0000 mon.a (mon.0) 594 : cluster [DBG] monmap epoch 4 2024-09-16T23:58:21.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:21 smithi033 bash[22694]: cluster 2024-09-16T23:58:21.292595+0000 mon.a (mon.0) 595 : cluster [DBG] fsid f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:58:21.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:21 smithi033 bash[22694]: cluster 2024-09-16T23:58:21.292616+0000 mon.a (mon.0) 596 : cluster [DBG] last_changed 2024-09-16T23:58:19.260202+0000 2024-09-16T23:58:21.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:21 smithi033 bash[22694]: cluster 2024-09-16T23:58:21.292637+0000 mon.a (mon.0) 597 : cluster [DBG] created 2024-09-16T23:48:24.081012+0000 2024-09-16T23:58:21.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:21 smithi033 bash[22694]: cluster 2024-09-16T23:58:21.292660+0000 mon.a (mon.0) 598 : cluster [DBG] min_mon_release 19 (squid) 2024-09-16T23:58:21.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:21 smithi033 bash[22694]: cluster 2024-09-16T23:58:21.292681+0000 mon.a (mon.0) 599 : cluster [DBG] election_strategy: 1 2024-09-16T23:58:21.750 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:21 smithi033 bash[22694]: cluster 2024-09-16T23:58:21.292705+0000 mon.a (mon.0) 600 : cluster [DBG] 0: [v2:172.21.15.33:3300/0,v1:172.21.15.33:6789/0] mon.a 2024-09-16T23:58:21.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:21 smithi033 bash[22694]: cluster 2024-09-16T23:58:21.292726+0000 mon.a (mon.0) 601 : cluster [DBG] 1: [v2:172.21.15.89:3300/0,v1:172.21.15.89:6789/0] mon.b 2024-09-16T23:58:21.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:21 smithi033 bash[22694]: cluster 2024-09-16T23:58:21.293714+0000 mon.a (mon.0) 602 : cluster [DBG] fsmap 2024-09-16T23:58:21.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:21 smithi033 bash[22694]: cluster 2024-09-16T23:58:21.293767+0000 mon.a (mon.0) 603 : cluster [DBG] osdmap e45: 6 total, 6 up, 6 in 2024-09-16T23:58:21.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:21 smithi033 bash[22694]: cluster 2024-09-16T23:58:21.294451+0000 mon.a (mon.0) 604 : cluster [DBG] mgrmap e15: a(active, since 8m), standbys: b 2024-09-16T23:58:21.751 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:21 smithi033 bash[22694]: cluster 2024-09-16T23:58:21.294698+0000 mon.a (mon.0) 605 : cluster [INF] overall HEALTH_OK 2024-09-16T23:58:21.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:21 smithi089 bash[24318]: audit 2024-09-16T23:58:18.609298+0000 mgr.a (mgr.14150) 334 : audit [DBG] from='client.14463 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi103", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T23:58:21.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:21 smithi089 bash[24318]: cluster 2024-09-16T23:58:18.663558+0000 mgr.a (mgr.14150) 335 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:21.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:21 smithi089 bash[24318]: audit 2024-09-16T23:58:18.924180+0000 mgr.a (mgr.14150) 336 : audit [DBG] from='client.14469 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:58:21.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:21 smithi089 bash[24318]: audit 2024-09-16T23:58:19.234188+0000 mgr.a (mgr.14150) 337 : audit [DBG] from='client.14475 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:58:21.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:21 smithi089 bash[24318]: cephadm 2024-09-16T23:58:19.239840+0000 mgr.a (mgr.14150) 338 : cephadm [INF] Saving service mon spec with placement smithi033:172.21.15.33=a;smithi089:172.21.15.89=b;count:3 2024-09-16T23:58:21.758 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:21 smithi089 bash[24318]: cephadm 2024-09-16T23:58:19.259861+0000 mgr.a (mgr.14150) 339 : cephadm [INF] Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-16T23:58:21.758 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:21 smithi089 bash[24318]: cephadm 2024-09-16T23:58:19.259941+0000 mgr.a (mgr.14150) 340 : cephadm [INF] Removing monitor c from monmap... 2024-09-16T23:58:21.758 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:21 smithi089 bash[24318]: audit 2024-09-16T23:58:19.261608+0000 mon.a (mon.0) 589 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-09-16T23:58:21.758 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:21 smithi089 bash[24318]: audit 2024-09-16T23:58:19.264408+0000 mon.a (mon.0) 590 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T23:58:21.758 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:21 smithi089 bash[24318]: audit 2024-09-16T23:58:19.264565+0000 mon.a (mon.0) 591 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T23:58:21.758 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:21 smithi089 bash[24318]: cluster 2024-09-16T23:58:19.275357+0000 mon.b (mon.1) 16 : cluster [INF] mon.b calling monitor election 2024-09-16T23:58:21.758 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:21 smithi089 bash[24318]: cluster 2024-09-16T23:58:21.265091+0000 mon.a (mon.0) 592 : cluster [INF] mon.a calling monitor election 2024-09-16T23:58:21.758 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:21 smithi089 bash[24318]: cluster 2024-09-16T23:58:21.285956+0000 mon.a (mon.0) 593 : cluster [INF] mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-16T23:58:21.758 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:21 smithi089 bash[24318]: cluster 2024-09-16T23:58:21.292564+0000 mon.a (mon.0) 594 : cluster [DBG] monmap epoch 4 2024-09-16T23:58:21.758 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:21 smithi089 bash[24318]: cluster 2024-09-16T23:58:21.292595+0000 mon.a (mon.0) 595 : cluster [DBG] fsid f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-16T23:58:21.758 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:21 smithi089 bash[24318]: cluster 2024-09-16T23:58:21.292616+0000 mon.a (mon.0) 596 : cluster [DBG] last_changed 2024-09-16T23:58:19.260202+0000 2024-09-16T23:58:21.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:21 smithi089 bash[24318]: cluster 2024-09-16T23:58:21.292637+0000 mon.a (mon.0) 597 : cluster [DBG] created 2024-09-16T23:48:24.081012+0000 2024-09-16T23:58:21.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:21 smithi089 bash[24318]: cluster 2024-09-16T23:58:21.292660+0000 mon.a (mon.0) 598 : cluster [DBG] min_mon_release 19 (squid) 2024-09-16T23:58:21.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:21 smithi089 bash[24318]: cluster 2024-09-16T23:58:21.292681+0000 mon.a (mon.0) 599 : cluster [DBG] election_strategy: 1 2024-09-16T23:58:21.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:21 smithi089 bash[24318]: cluster 2024-09-16T23:58:21.292705+0000 mon.a (mon.0) 600 : cluster [DBG] 0: [v2:172.21.15.33:3300/0,v1:172.21.15.33:6789/0] mon.a 2024-09-16T23:58:21.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:21 smithi089 bash[24318]: cluster 2024-09-16T23:58:21.292726+0000 mon.a (mon.0) 601 : cluster [DBG] 1: [v2:172.21.15.89:3300/0,v1:172.21.15.89:6789/0] mon.b 2024-09-16T23:58:21.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:21 smithi089 bash[24318]: cluster 2024-09-16T23:58:21.293714+0000 mon.a (mon.0) 602 : cluster [DBG] fsmap 2024-09-16T23:58:21.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:21 smithi089 bash[24318]: cluster 2024-09-16T23:58:21.293767+0000 mon.a (mon.0) 603 : cluster [DBG] osdmap e45: 6 total, 6 up, 6 in 2024-09-16T23:58:21.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:21 smithi089 bash[24318]: cluster 2024-09-16T23:58:21.294451+0000 mon.a (mon.0) 604 : cluster [DBG] mgrmap e15: a(active, since 8m), standbys: b 2024-09-16T23:58:21.759 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:21 smithi089 bash[24318]: cluster 2024-09-16T23:58:21.294698+0000 mon.a (mon.0) 605 : cluster [INF] overall HEALTH_OK 2024-09-16T23:58:22.561 INFO:teuthology.orchestra.run.smithi033.stdout:Scheduled to remove the following daemons from host 'smithi103' 2024-09-16T23:58:22.562 INFO:teuthology.orchestra.run.smithi033.stdout:type id 2024-09-16T23:58:22.562 INFO:teuthology.orchestra.run.smithi033.stdout:-------------------- --------------- 2024-09-16T23:58:22.562 INFO:teuthology.orchestra.run.smithi033.stdout:mon c 2024-09-16T23:58:22.562 INFO:teuthology.orchestra.run.smithi033.stdout:osd 4 2024-09-16T23:58:22.562 INFO:teuthology.orchestra.run.smithi033.stdout:osd 5 2024-09-16T23:58:22.574 INFO:teuthology.orchestra.run.smithi033.stderr:++ ceph orch ps --hostname smithi103 2024-09-16T23:58:22.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:22 smithi033 bash[22694]: cluster 2024-09-16T23:58:20.664094+0000 mgr.a (mgr.14150) 341 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:22.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:22 smithi033 bash[22694]: cephadm 2024-09-16T23:58:21.296926+0000 mgr.a (mgr.14150) 342 : cephadm [INF] Removing daemon mon.c from smithi103 -- ports [] 2024-09-16T23:58:22.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:22 smithi089 bash[24318]: cluster 2024-09-16T23:58:20.664094+0000 mgr.a (mgr.14150) 341 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:22.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:22 smithi089 bash[24318]: cephadm 2024-09-16T23:58:21.296926+0000 mgr.a (mgr.14150) 342 : cephadm [INF] Removing daemon mon.c from smithi103 -- ports [] 2024-09-16T23:58:22.896 INFO:teuthology.orchestra.run.smithi033.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-16T23:58:22.896 INFO:teuthology.orchestra.run.smithi033.stderr:mon.c smithi103 running (7m) 102s ago 7m 38.7M 2048M 19.1.1-330-gc2ddf972 ebb0615149de 724efb3d8ef0 2024-09-16T23:58:22.896 INFO:teuthology.orchestra.run.smithi033.stderr:osd.4 smithi103 running (2m) 102s ago 2m 41.0M 10.4G 19.1.1-330-gc2ddf972 ebb0615149de aa6f6829bb9b 2024-09-16T23:58:22.896 INFO:teuthology.orchestra.run.smithi033.stderr:osd.5 smithi103 running (105s) 102s ago 109s - 10.4G 19.1.1-330-gc2ddf972 ebb0615149de f8d37bd51aa8 ' 2024-09-16T23:58:22.896 INFO:teuthology.orchestra.run.smithi033.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-16T23:58:22.896 INFO:teuthology.orchestra.run.smithi033.stderr:mon.c smithi103 running (7m) 102s ago 7m 38.7M 2048M 19.1.1-330-gc2ddf972 ebb0615149de 724efb3d8ef0 2024-09-16T23:58:22.897 INFO:teuthology.orchestra.run.smithi033.stderr:osd.4 smithi103 running (2m) 102s ago 2m 41.0M 10.4G 19.1.1-330-gc2ddf972 ebb0615149de aa6f6829bb9b 2024-09-16T23:58:22.897 INFO:teuthology.orchestra.run.smithi033.stderr:osd.5 smithi103 running (105s) 102s ago 109s - 10.4G 19.1.1-330-gc2ddf972 ebb0615149de f8d37bd51aa8 ' '!=' 'No daemons reported' ']' 2024-09-16T23:58:22.897 INFO:teuthology.orchestra.run.smithi033.stderr:+ sleep 15 2024-09-16T23:58:23.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:23 smithi033 bash[22694]: audit 2024-09-16T23:58:22.551360+0000 mgr.a (mgr.14150) 343 : audit [DBG] from='client.14478 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi103", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:58:23.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:23 smithi033 bash[22694]: audit 2024-09-16T23:58:22.556683+0000 mon.a (mon.0) 606 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:23.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:23 smithi033 bash[22694]: cephadm 2024-09-16T23:58:22.557269+0000 mgr.a (mgr.14150) 344 : cephadm [INF] Added label _no_schedule to host smithi103 2024-09-16T23:58:23.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:23 smithi033 bash[22694]: audit 2024-09-16T23:58:22.562760+0000 mon.a (mon.0) 607 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:23.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:23 smithi033 bash[22694]: cephadm 2024-09-16T23:58:22.563291+0000 mgr.a (mgr.14150) 345 : cephadm [INF] Added label _no_conf_keyring to host smithi103 2024-09-16T23:58:23.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:23 smithi033 bash[22694]: audit 2024-09-16T23:58:22.565244+0000 mon.a (mon.0) 608 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-16T23:58:23.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:23 smithi033 bash[22694]: cephadm 2024-09-16T23:58:22.566583+0000 mgr.a (mgr.14150) 346 : cephadm [INF] osd.4 crush weight is 0.0872955322265625 2024-09-16T23:58:23.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:23 smithi033 bash[22694]: audit 2024-09-16T23:58:22.568049+0000 mon.a (mon.0) 609 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-16T23:58:23.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:23 smithi033 bash[22694]: cephadm 2024-09-16T23:58:22.569245+0000 mgr.a (mgr.14150) 347 : cephadm [INF] osd.5 crush weight is 0.0872955322265625 2024-09-16T23:58:24.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:23 smithi089 bash[24318]: audit 2024-09-16T23:58:22.551360+0000 mgr.a (mgr.14150) 343 : audit [DBG] from='client.14478 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi103", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:58:24.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:23 smithi089 bash[24318]: audit 2024-09-16T23:58:22.556683+0000 mon.a (mon.0) 606 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:24.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:23 smithi089 bash[24318]: cephadm 2024-09-16T23:58:22.557269+0000 mgr.a (mgr.14150) 344 : cephadm [INF] Added label _no_schedule to host smithi103 2024-09-16T23:58:24.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:23 smithi089 bash[24318]: audit 2024-09-16T23:58:22.562760+0000 mon.a (mon.0) 607 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:24.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:23 smithi089 bash[24318]: cephadm 2024-09-16T23:58:22.563291+0000 mgr.a (mgr.14150) 345 : cephadm [INF] Added label _no_conf_keyring to host smithi103 2024-09-16T23:58:24.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:23 smithi089 bash[24318]: audit 2024-09-16T23:58:22.565244+0000 mon.a (mon.0) 608 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-16T23:58:24.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:23 smithi089 bash[24318]: cephadm 2024-09-16T23:58:22.566583+0000 mgr.a (mgr.14150) 346 : cephadm [INF] osd.4 crush weight is 0.0872955322265625 2024-09-16T23:58:24.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:23 smithi089 bash[24318]: audit 2024-09-16T23:58:22.568049+0000 mon.a (mon.0) 609 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-16T23:58:24.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:23 smithi089 bash[24318]: cephadm 2024-09-16T23:58:22.569245+0000 mgr.a (mgr.14150) 347 : cephadm [INF] osd.5 crush weight is 0.0872955322265625 2024-09-16T23:58:24.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:24 smithi033 bash[22694]: cluster 2024-09-16T23:58:22.664661+0000 mgr.a (mgr.14150) 348 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:24.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:24 smithi033 bash[22694]: audit 2024-09-16T23:58:22.879377+0000 mgr.a (mgr.14150) 349 : audit [DBG] from='client.14482 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi103", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:58:25.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:24 smithi089 bash[24318]: cluster 2024-09-16T23:58:22.664661+0000 mgr.a (mgr.14150) 348 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:25.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:24 smithi089 bash[24318]: audit 2024-09-16T23:58:22.879377+0000 mgr.a (mgr.14150) 349 : audit [DBG] from='client.14482 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi103", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:58:26.743 INFO:journalctl@ceph.mon.c.smithi103.stdout:Sep 16 23:58:26 smithi103 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:58:26.744 INFO:journalctl@ceph.osd.4.smithi103.stdout:Sep 16 23:58:26 smithi103 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:58:26.744 INFO:journalctl@ceph.osd.5.smithi103.stdout:Sep 16 23:58:26 smithi103 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:58:26.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:26 smithi033 bash[22694]: cluster 2024-09-16T23:58:24.665179+0000 mgr.a (mgr.14150) 350 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:27.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:26 smithi089 bash[24318]: cluster 2024-09-16T23:58:24.665179+0000 mgr.a (mgr.14150) 350 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:27.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:27 smithi033 bash[22694]: audit 2024-09-16T23:58:26.660008+0000 mon.a (mon.0) 610 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:27.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:27 smithi033 bash[22694]: cluster 2024-09-16T23:58:26.665739+0000 mgr.a (mgr.14150) 351 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:27.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:27 smithi033 bash[22694]: audit 2024-09-16T23:58:26.668945+0000 mon.a (mon.0) 611 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:27.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:27 smithi033 bash[22694]: audit 2024-09-16T23:58:26.756857+0000 mon.a (mon.0) 612 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:58:28.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:27 smithi089 bash[24318]: audit 2024-09-16T23:58:26.660008+0000 mon.a (mon.0) 610 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:28.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:27 smithi089 bash[24318]: cluster 2024-09-16T23:58:26.665739+0000 mgr.a (mgr.14150) 351 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:28.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:27 smithi089 bash[24318]: audit 2024-09-16T23:58:26.668945+0000 mon.a (mon.0) 611 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:28.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:27 smithi089 bash[24318]: audit 2024-09-16T23:58:26.756857+0000 mon.a (mon.0) 612 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:58:29.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:29 smithi033 bash[22694]: cluster 2024-09-16T23:58:28.666291+0000 mgr.a (mgr.14150) 352 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:30.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:29 smithi089 bash[24318]: cluster 2024-09-16T23:58:28.666291+0000 mgr.a (mgr.14150) 352 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:31.498 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:31 smithi033 bash[22694]: audit 2024-09-16T23:58:30.152005+0000 mon.a (mon.0) 613 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:31.506 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:31 smithi089 bash[24318]: audit 2024-09-16T23:58:30.152005+0000 mon.a (mon.0) 613 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:32.498 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:32 smithi033 bash[22694]: cluster 2024-09-16T23:58:30.666835+0000 mgr.a (mgr.14150) 353 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:32.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:32 smithi033 bash[22694]: audit 2024-09-16T23:58:32.019285+0000 mon.a (mon.0) 614 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:32.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:32 smithi033 bash[22694]: audit 2024-09-16T23:58:32.027203+0000 mon.a (mon.0) 615 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:32.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:32 smithi033 bash[22694]: audit 2024-09-16T23:58:32.028902+0000 mon.a (mon.0) 616 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:58:32.499 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:32 smithi033 bash[22694]: audit 2024-09-16T23:58:32.030647+0000 mon.a (mon.0) 617 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:58:32.506 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:32 smithi089 bash[24318]: cluster 2024-09-16T23:58:30.666835+0000 mgr.a (mgr.14150) 353 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:32.507 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:32 smithi089 bash[24318]: audit 2024-09-16T23:58:32.019285+0000 mon.a (mon.0) 614 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:32.507 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:32 smithi089 bash[24318]: audit 2024-09-16T23:58:32.027203+0000 mon.a (mon.0) 615 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:32.507 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:32 smithi089 bash[24318]: audit 2024-09-16T23:58:32.028902+0000 mon.a (mon.0) 616 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:58:32.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:32 smithi089 bash[24318]: audit 2024-09-16T23:58:32.030647+0000 mon.a (mon.0) 617 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:58:33.459 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:33 smithi033 bash[22694]: cephadm 2024-09-16T23:58:32.033056+0000 mgr.a (mgr.14150) 354 : cephadm [INF] Updating smithi033:/etc/ceph/ceph.conf 2024-09-16T23:58:33.459 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:33 smithi033 bash[22694]: cephadm 2024-09-16T23:58:32.033723+0000 mgr.a (mgr.14150) 355 : cephadm [INF] Updating smithi089:/etc/ceph/ceph.conf 2024-09-16T23:58:33.459 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:33 smithi033 bash[22694]: cephadm 2024-09-16T23:58:32.034977+0000 mgr.a (mgr.14150) 356 : cephadm [INF] Removing smithi103:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T23:58:33.459 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:33 smithi033 bash[22694]: cephadm 2024-09-16T23:58:32.100808+0000 mgr.a (mgr.14150) 357 : cephadm [INF] Removing smithi103:/etc/ceph/ceph.client.admin.keyring 2024-09-16T23:58:33.460 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:33 smithi033 bash[22694]: cephadm 2024-09-16T23:58:32.155671+0000 mgr.a (mgr.14150) 358 : cephadm [INF] Removing smithi103:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T23:58:33.460 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:33 smithi033 bash[22694]: audit 2024-09-16T23:58:32.202344+0000 mon.a (mon.0) 618 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:33.460 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:33 smithi033 bash[22694]: audit 2024-09-16T23:58:32.209064+0000 mon.a (mon.0) 619 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:33.460 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:33 smithi033 bash[22694]: cephadm 2024-09-16T23:58:32.279463+0000 mgr.a (mgr.14150) 359 : cephadm [INF] Updating smithi089:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T23:58:33.460 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:33 smithi033 bash[22694]: cephadm 2024-09-16T23:58:32.279692+0000 mgr.a (mgr.14150) 360 : cephadm [INF] Updating smithi033:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T23:58:33.460 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:33 smithi033 bash[22694]: audit 2024-09-16T23:58:32.433225+0000 mon.a (mon.0) 620 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:33.460 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:33 smithi033 bash[22694]: audit 2024-09-16T23:58:32.439427+0000 mon.a (mon.0) 621 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:33.460 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:33 smithi033 bash[22694]: audit 2024-09-16T23:58:32.445474+0000 mon.a (mon.0) 622 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:33.460 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:33 smithi033 bash[22694]: audit 2024-09-16T23:58:32.451354+0000 mon.a (mon.0) 623 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:33.460 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:33 smithi033 bash[22694]: audit 2024-09-16T23:58:32.454264+0000 mon.a (mon.0) 624 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T23:58:33.460 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:33 smithi033 bash[22694]: audit 2024-09-16T23:58:32.454624+0000 mgr.a (mgr.14150) 361 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T23:58:33.460 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:33 smithi033 bash[22694]: audit 2024-09-16T23:58:32.456553+0000 mon.a (mon.0) 625 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T23:58:33.461 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:33 smithi033 bash[22694]: audit 2024-09-16T23:58:32.456882+0000 mgr.a (mgr.14150) 362 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T23:58:33.461 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:33 smithi033 bash[22694]: audit 2024-09-16T23:58:32.458844+0000 mon.a (mon.0) 626 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-16T23:58:33.461 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:33 smithi033 bash[22694]: audit 2024-09-16T23:58:32.459148+0000 mgr.a (mgr.14150) 363 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-16T23:58:33.461 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:33 smithi033 bash[22694]: audit 2024-09-16T23:58:32.460749+0000 mon.a (mon.0) 627 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-16T23:58:33.461 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:33 smithi033 bash[22694]: debug 2024-09-16T23:58:33.460+0000 7f5ecb441640 -1 mon.a@0(leader).osd e46 definitely_dead 0 2024-09-16T23:58:33.507 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:33 smithi089 bash[24318]: cephadm 2024-09-16T23:58:32.033056+0000 mgr.a (mgr.14150) 354 : cephadm [INF] Updating smithi033:/etc/ceph/ceph.conf 2024-09-16T23:58:33.507 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:33 smithi089 bash[24318]: cephadm 2024-09-16T23:58:32.033723+0000 mgr.a (mgr.14150) 355 : cephadm [INF] Updating smithi089:/etc/ceph/ceph.conf 2024-09-16T23:58:33.507 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:33 smithi089 bash[24318]: cephadm 2024-09-16T23:58:32.034977+0000 mgr.a (mgr.14150) 356 : cephadm [INF] Removing smithi103:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T23:58:33.507 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:33 smithi089 bash[24318]: cephadm 2024-09-16T23:58:32.100808+0000 mgr.a (mgr.14150) 357 : cephadm [INF] Removing smithi103:/etc/ceph/ceph.client.admin.keyring 2024-09-16T23:58:33.507 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:33 smithi089 bash[24318]: cephadm 2024-09-16T23:58:32.155671+0000 mgr.a (mgr.14150) 358 : cephadm [INF] Removing smithi103:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T23:58:33.507 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:33 smithi089 bash[24318]: audit 2024-09-16T23:58:32.202344+0000 mon.a (mon.0) 618 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:33.507 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:33 smithi089 bash[24318]: audit 2024-09-16T23:58:32.209064+0000 mon.a (mon.0) 619 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:33.507 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:33 smithi089 bash[24318]: cephadm 2024-09-16T23:58:32.279463+0000 mgr.a (mgr.14150) 359 : cephadm [INF] Updating smithi089:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T23:58:33.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:33 smithi089 bash[24318]: cephadm 2024-09-16T23:58:32.279692+0000 mgr.a (mgr.14150) 360 : cephadm [INF] Updating smithi033:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T23:58:33.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:33 smithi089 bash[24318]: audit 2024-09-16T23:58:32.433225+0000 mon.a (mon.0) 620 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:33.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:33 smithi089 bash[24318]: audit 2024-09-16T23:58:32.439427+0000 mon.a (mon.0) 621 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:33.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:33 smithi089 bash[24318]: audit 2024-09-16T23:58:32.445474+0000 mon.a (mon.0) 622 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:33.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:33 smithi089 bash[24318]: audit 2024-09-16T23:58:32.451354+0000 mon.a (mon.0) 623 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:33.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:33 smithi089 bash[24318]: audit 2024-09-16T23:58:32.454264+0000 mon.a (mon.0) 624 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T23:58:33.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:33 smithi089 bash[24318]: audit 2024-09-16T23:58:32.454624+0000 mgr.a (mgr.14150) 361 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T23:58:33.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:33 smithi089 bash[24318]: audit 2024-09-16T23:58:32.456553+0000 mon.a (mon.0) 625 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T23:58:33.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:33 smithi089 bash[24318]: audit 2024-09-16T23:58:32.456882+0000 mgr.a (mgr.14150) 362 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T23:58:33.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:33 smithi089 bash[24318]: audit 2024-09-16T23:58:32.458844+0000 mon.a (mon.0) 626 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-16T23:58:33.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:33 smithi089 bash[24318]: audit 2024-09-16T23:58:32.459148+0000 mgr.a (mgr.14150) 363 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-16T23:58:33.508 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:33 smithi089 bash[24318]: audit 2024-09-16T23:58:32.460749+0000 mon.a (mon.0) 627 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-16T23:58:34.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:34 smithi033 bash[22694]: cluster 2024-09-16T23:58:32.667317+0000 mgr.a (mgr.14150) 364 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:34.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:34 smithi033 bash[22694]: audit 2024-09-16T23:58:33.450498+0000 mon.a (mon.0) 628 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-16T23:58:34.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:34 smithi033 bash[22694]: cluster 2024-09-16T23:58:33.455563+0000 mon.a (mon.0) 629 : cluster [DBG] osdmap e46: 6 total, 6 up, 6 in 2024-09-16T23:58:34.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:34 smithi033 bash[22694]: cephadm 2024-09-16T23:58:33.457100+0000 mgr.a (mgr.14150) 365 : cephadm [INF] osd.5 weight is now 0.0 2024-09-16T23:58:34.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:34 smithi033 bash[22694]: audit 2024-09-16T23:58:33.460843+0000 mon.a (mon.0) 630 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T23:58:34.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:34 smithi033 bash[22694]: audit 2024-09-16T23:58:33.461228+0000 mgr.a (mgr.14150) 366 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T23:58:34.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:34 smithi033 bash[22694]: audit 2024-09-16T23:58:33.463706+0000 mon.a (mon.0) 631 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-16T23:58:34.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:34 smithi033 bash[22694]: audit 2024-09-16T23:58:33.464042+0000 mgr.a (mgr.14150) 367 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-16T23:58:34.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:34 smithi033 bash[22694]: audit 2024-09-16T23:58:33.466334+0000 mon.a (mon.0) 632 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-16T23:58:34.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:34 smithi089 bash[24318]: cluster 2024-09-16T23:58:32.667317+0000 mgr.a (mgr.14150) 364 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:34.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:34 smithi089 bash[24318]: audit 2024-09-16T23:58:33.450498+0000 mon.a (mon.0) 628 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-16T23:58:34.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:34 smithi089 bash[24318]: cluster 2024-09-16T23:58:33.455563+0000 mon.a (mon.0) 629 : cluster [DBG] osdmap e46: 6 total, 6 up, 6 in 2024-09-16T23:58:34.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:34 smithi089 bash[24318]: cephadm 2024-09-16T23:58:33.457100+0000 mgr.a (mgr.14150) 365 : cephadm [INF] osd.5 weight is now 0.0 2024-09-16T23:58:34.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:34 smithi089 bash[24318]: audit 2024-09-16T23:58:33.460843+0000 mon.a (mon.0) 630 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T23:58:34.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:34 smithi089 bash[24318]: audit 2024-09-16T23:58:33.461228+0000 mgr.a (mgr.14150) 366 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T23:58:34.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:34 smithi089 bash[24318]: audit 2024-09-16T23:58:33.463706+0000 mon.a (mon.0) 631 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-16T23:58:34.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:34 smithi089 bash[24318]: audit 2024-09-16T23:58:33.464042+0000 mgr.a (mgr.14150) 367 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-16T23:58:34.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:34 smithi089 bash[24318]: audit 2024-09-16T23:58:33.466334+0000 mon.a (mon.0) 632 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-16T23:58:35.243 INFO:journalctl@ceph.osd.4.smithi103.stdout:Sep 16 23:58:34 smithi103 systemd[1]: Stopping Ceph osd.4 for f4fb0768-7485-11ef-bceb-c7b262605968... 2024-09-16T23:58:35.243 INFO:journalctl@ceph.osd.4.smithi103.stdout:Sep 16 23:58:35 smithi103 bash[27508]: debug 2024-09-16T23:58:35.204+0000 7f10403b5640 -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-16T23:58:35.243 INFO:journalctl@ceph.osd.4.smithi103.stdout:Sep 16 23:58:35 smithi103 bash[27508]: debug 2024-09-16T23:58:35.204+0000 7f10403b5640 -1 osd.4 46 *** Got signal Terminated *** 2024-09-16T23:58:35.244 INFO:journalctl@ceph.osd.4.smithi103.stdout:Sep 16 23:58:35 smithi103 bash[27508]: debug 2024-09-16T23:58:35.204+0000 7f10403b5640 -1 osd.4 46 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-16T23:58:35.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:35 smithi033 bash[22694]: cluster 2024-09-16T23:58:34.459011+0000 mon.a (mon.0) 633 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-16T23:58:35.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:35 smithi033 bash[22694]: audit 2024-09-16T23:58:34.461106+0000 mon.a (mon.0) 634 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-16T23:58:35.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:35 smithi033 bash[22694]: cluster 2024-09-16T23:58:34.466107+0000 mon.a (mon.0) 635 : cluster [DBG] osdmap e47: 6 total, 5 up, 6 in 2024-09-16T23:58:35.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:35 smithi033 bash[22694]: cephadm 2024-09-16T23:58:34.467390+0000 mgr.a (mgr.14150) 368 : cephadm [INF] osd.4 now down 2024-09-16T23:58:35.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:35 smithi033 bash[22694]: cephadm 2024-09-16T23:58:34.467943+0000 mgr.a (mgr.14150) 369 : cephadm [INF] Removing daemon osd.4 from smithi103 -- ports [] 2024-09-16T23:58:35.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:35 smithi089 bash[24318]: cluster 2024-09-16T23:58:34.459011+0000 mon.a (mon.0) 633 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-16T23:58:35.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:35 smithi089 bash[24318]: audit 2024-09-16T23:58:34.461106+0000 mon.a (mon.0) 634 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-16T23:58:35.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:35 smithi089 bash[24318]: cluster 2024-09-16T23:58:34.466107+0000 mon.a (mon.0) 635 : cluster [DBG] osdmap e47: 6 total, 5 up, 6 in 2024-09-16T23:58:35.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:35 smithi089 bash[24318]: cephadm 2024-09-16T23:58:34.467390+0000 mgr.a (mgr.14150) 368 : cephadm [INF] osd.4 now down 2024-09-16T23:58:35.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:35 smithi089 bash[24318]: cephadm 2024-09-16T23:58:34.467943+0000 mgr.a (mgr.14150) 369 : cephadm [INF] Removing daemon osd.4 from smithi103 -- ports [] 2024-09-16T23:58:36.493 INFO:journalctl@ceph.osd.4.smithi103.stdout:Sep 16 23:58:36 smithi103 bash[35997]: ceph-f4fb0768-7485-11ef-bceb-c7b262605968-osd-4 2024-09-16T23:58:36.494 INFO:journalctl@ceph.osd.4.smithi103.stdout:Sep 16 23:58:36 smithi103 bash[36062]: Error response from daemon: No such container: ceph-f4fb0768-7485-11ef-bceb-c7b262605968-osd-4 2024-09-16T23:58:36.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:36 smithi033 bash[22694]: cluster 2024-09-16T23:58:34.667829+0000 mgr.a (mgr.14150) 370 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:36.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:36 smithi033 bash[22694]: cluster 2024-09-16T23:58:35.472476+0000 mon.a (mon.0) 636 : cluster [DBG] osdmap e48: 6 total, 5 up, 6 in 2024-09-16T23:58:36.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:36 smithi089 bash[24318]: cluster 2024-09-16T23:58:34.667829+0000 mgr.a (mgr.14150) 370 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:36.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:36 smithi089 bash[24318]: cluster 2024-09-16T23:58:35.472476+0000 mon.a (mon.0) 636 : cluster [DBG] osdmap e48: 6 total, 5 up, 6 in 2024-09-16T23:58:37.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:37 smithi033 bash[22694]: cluster 2024-09-16T23:58:36.475682+0000 mon.a (mon.0) 637 : cluster [DBG] osdmap e49: 6 total, 5 up, 6 in 2024-09-16T23:58:37.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:37 smithi089 bash[24318]: cluster 2024-09-16T23:58:36.475682+0000 mon.a (mon.0) 637 : cluster [DBG] osdmap e49: 6 total, 5 up, 6 in 2024-09-16T23:58:37.898 INFO:teuthology.orchestra.run.smithi033.stderr:++ ceph orch ps --hostname smithi103 2024-09-16T23:58:38.218 INFO:teuthology.orchestra.run.smithi033.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-16T23:58:38.218 INFO:teuthology.orchestra.run.smithi033.stderr:osd.4 smithi103 running (2m) 6s ago 2m 44.7M 10.4G 19.1.1-330-gc2ddf972 ebb0615149de aa6f6829bb9b 2024-09-16T23:58:38.219 INFO:teuthology.orchestra.run.smithi033.stderr:osd.5 smithi103 running (2m) 6s ago 2m 37.7M 10.4G 19.1.1-330-gc2ddf972 ebb0615149de f8d37bd51aa8 ' 2024-09-16T23:58:38.219 INFO:teuthology.orchestra.run.smithi033.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-16T23:58:38.219 INFO:teuthology.orchestra.run.smithi033.stderr:osd.4 smithi103 running (2m) 6s ago 2m 44.7M 10.4G 19.1.1-330-gc2ddf972 ebb0615149de aa6f6829bb9b 2024-09-16T23:58:38.219 INFO:teuthology.orchestra.run.smithi033.stderr:osd.5 smithi103 running (2m) 6s ago 2m 37.7M 10.4G 19.1.1-330-gc2ddf972 ebb0615149de f8d37bd51aa8 ' '!=' 'No daemons reported' ']' 2024-09-16T23:58:38.219 INFO:teuthology.orchestra.run.smithi033.stderr:+ sleep 15 2024-09-16T23:58:38.493 INFO:journalctl@ceph.osd.4.smithi103.stdout:Sep 16 23:58:38 smithi103 systemd[1]: ceph-f4fb0768-7485-11ef-bceb-c7b262605968@osd.4.service: Deactivated successfully. 2024-09-16T23:58:38.493 INFO:journalctl@ceph.osd.4.smithi103.stdout:Sep 16 23:58:38 smithi103 systemd[1]: Stopped Ceph osd.4 for f4fb0768-7485-11ef-bceb-c7b262605968. 2024-09-16T23:58:38.493 INFO:journalctl@ceph.osd.4.smithi103.stdout:Sep 16 23:58:38 smithi103 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:58:38.494 INFO:journalctl@ceph.osd.5.smithi103.stdout:Sep 16 23:58:38 smithi103 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:58:38.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:38 smithi033 bash[22694]: cluster 2024-09-16T23:58:36.668383+0000 mgr.a (mgr.14150) 371 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:38.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:38 smithi089 bash[24318]: cluster 2024-09-16T23:58:36.668383+0000 mgr.a (mgr.14150) 371 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail 2024-09-16T23:58:39.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:39 smithi033 bash[22694]: audit 2024-09-16T23:58:38.206408+0000 mgr.a (mgr.14150) 372 : audit [DBG] from='client.14486 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi103", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:58:39.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:39 smithi033 bash[22694]: cephadm 2024-09-16T23:58:38.501772+0000 mgr.a (mgr.14150) 373 : cephadm [INF] Removing key for osd.4 2024-09-16T23:58:39.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:39 smithi033 bash[22694]: audit 2024-09-16T23:58:38.502323+0000 mon.a (mon.0) 638 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-16T23:58:39.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:39 smithi033 bash[22694]: audit 2024-09-16T23:58:38.505077+0000 mon.a (mon.0) 639 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-16T23:58:39.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:39 smithi033 bash[22694]: cephadm 2024-09-16T23:58:38.509755+0000 mgr.a (mgr.14150) 374 : cephadm [INF] Successfully removed osd.4 on smithi103 2024-09-16T23:58:39.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:39 smithi033 bash[22694]: audit 2024-09-16T23:58:38.510354+0000 mon.a (mon.0) 640 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-16T23:58:39.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:39 smithi033 bash[22694]: cluster 2024-09-16T23:58:38.511553+0000 mon.a (mon.0) 641 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-16T23:58:39.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:39 smithi033 bash[22694]: cluster 2024-09-16T23:58:38.511592+0000 mon.a (mon.0) 642 : cluster [INF] Cluster is now healthy 2024-09-16T23:58:39.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:39 smithi033 bash[22694]: audit 2024-09-16T23:58:38.513716+0000 mon.a (mon.0) 643 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-16T23:58:39.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:39 smithi033 bash[22694]: cluster 2024-09-16T23:58:38.518772+0000 mon.a (mon.0) 644 : cluster [DBG] osdmap e50: 5 total, 5 up, 5 in 2024-09-16T23:58:39.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:39 smithi033 bash[22694]: cephadm 2024-09-16T23:58:38.520041+0000 mgr.a (mgr.14150) 375 : cephadm [INF] Successfully purged osd.4 on smithi103 2024-09-16T23:58:39.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:39 smithi033 bash[22694]: cephadm 2024-09-16T23:58:38.520242+0000 mgr.a (mgr.14150) 376 : cephadm [INF] Zapping devices for osd.4 on smithi103 2024-09-16T23:58:39.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:39 smithi089 bash[24318]: audit 2024-09-16T23:58:38.206408+0000 mgr.a (mgr.14150) 372 : audit [DBG] from='client.14486 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi103", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:58:39.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:39 smithi089 bash[24318]: cephadm 2024-09-16T23:58:38.501772+0000 mgr.a (mgr.14150) 373 : cephadm [INF] Removing key for osd.4 2024-09-16T23:58:39.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:39 smithi089 bash[24318]: audit 2024-09-16T23:58:38.502323+0000 mon.a (mon.0) 638 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-16T23:58:39.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:39 smithi089 bash[24318]: audit 2024-09-16T23:58:38.505077+0000 mon.a (mon.0) 639 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-16T23:58:39.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:39 smithi089 bash[24318]: cephadm 2024-09-16T23:58:38.509755+0000 mgr.a (mgr.14150) 374 : cephadm [INF] Successfully removed osd.4 on smithi103 2024-09-16T23:58:39.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:39 smithi089 bash[24318]: audit 2024-09-16T23:58:38.510354+0000 mon.a (mon.0) 640 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-16T23:58:39.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:39 smithi089 bash[24318]: cluster 2024-09-16T23:58:38.511553+0000 mon.a (mon.0) 641 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-16T23:58:39.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:39 smithi089 bash[24318]: cluster 2024-09-16T23:58:38.511592+0000 mon.a (mon.0) 642 : cluster [INF] Cluster is now healthy 2024-09-16T23:58:39.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:39 smithi089 bash[24318]: audit 2024-09-16T23:58:38.513716+0000 mon.a (mon.0) 643 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-16T23:58:39.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:39 smithi089 bash[24318]: cluster 2024-09-16T23:58:38.518772+0000 mon.a (mon.0) 644 : cluster [DBG] osdmap e50: 5 total, 5 up, 5 in 2024-09-16T23:58:39.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:39 smithi089 bash[24318]: cephadm 2024-09-16T23:58:38.520041+0000 mgr.a (mgr.14150) 375 : cephadm [INF] Successfully purged osd.4 on smithi103 2024-09-16T23:58:39.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:39 smithi089 bash[24318]: cephadm 2024-09-16T23:58:38.520242+0000 mgr.a (mgr.14150) 376 : cephadm [INF] Zapping devices for osd.4 on smithi103 2024-09-16T23:58:40.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:40 smithi033 bash[22694]: cluster 2024-09-16T23:58:38.668924+0000 mgr.a (mgr.14150) 377 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-16T23:58:40.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:40 smithi033 bash[22694]: cluster 2024-09-16T23:58:39.525512+0000 mon.a (mon.0) 645 : cluster [DBG] osdmap e51: 5 total, 5 up, 5 in 2024-09-16T23:58:41.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:40 smithi089 bash[24318]: cluster 2024-09-16T23:58:38.668924+0000 mgr.a (mgr.14150) 377 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-16T23:58:41.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:40 smithi089 bash[24318]: cluster 2024-09-16T23:58:39.525512+0000 mon.a (mon.0) 645 : cluster [DBG] osdmap e51: 5 total, 5 up, 5 in 2024-09-16T23:58:41.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:41 smithi033 bash[22694]: cluster 2024-09-16T23:58:40.528431+0000 mon.a (mon.0) 646 : cluster [DBG] osdmap e52: 5 total, 5 up, 5 in 2024-09-16T23:58:42.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:41 smithi089 bash[24318]: cluster 2024-09-16T23:58:40.528431+0000 mon.a (mon.0) 646 : cluster [DBG] osdmap e52: 5 total, 5 up, 5 in 2024-09-16T23:58:42.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:42 smithi033 bash[22694]: cluster 2024-09-16T23:58:40.669475+0000 mgr.a (mgr.14150) 378 : cluster [DBG] pgmap v316: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-16T23:58:42.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:42 smithi033 bash[22694]: cluster 2024-09-16T23:58:41.544030+0000 mon.a (mon.0) 647 : cluster [DBG] osdmap e53: 5 total, 5 up, 5 in 2024-09-16T23:58:43.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:42 smithi089 bash[24318]: cluster 2024-09-16T23:58:40.669475+0000 mgr.a (mgr.14150) 378 : cluster [DBG] pgmap v316: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-16T23:58:43.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:42 smithi089 bash[24318]: cluster 2024-09-16T23:58:41.544030+0000 mon.a (mon.0) 647 : cluster [DBG] osdmap e53: 5 total, 5 up, 5 in 2024-09-16T23:58:43.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:43 smithi033 bash[22694]: cluster 2024-09-16T23:58:42.546851+0000 mon.a (mon.0) 648 : cluster [DBG] osdmap e54: 5 total, 5 up, 5 in 2024-09-16T23:58:44.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:43 smithi089 bash[24318]: cluster 2024-09-16T23:58:42.546851+0000 mon.a (mon.0) 648 : cluster [DBG] osdmap e54: 5 total, 5 up, 5 in 2024-09-16T23:58:44.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:44 smithi033 bash[22694]: cluster 2024-09-16T23:58:42.669986+0000 mgr.a (mgr.14150) 379 : cluster [DBG] pgmap v319: 1 pgs: 1 peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-16T23:58:45.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:44 smithi089 bash[24318]: cluster 2024-09-16T23:58:42.669986+0000 mgr.a (mgr.14150) 379 : cluster [DBG] pgmap v319: 1 pgs: 1 peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-16T23:58:46.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:46 smithi033 bash[22694]: cluster 2024-09-16T23:58:44.670527+0000 mgr.a (mgr.14150) 380 : cluster [DBG] pgmap v320: 1 pgs: 1 peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 112 KiB/s, 0 objects/s recovering 2024-09-16T23:58:47.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:46 smithi089 bash[24318]: cluster 2024-09-16T23:58:44.670527+0000 mgr.a (mgr.14150) 380 : cluster [DBG] pgmap v320: 1 pgs: 1 peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 112 KiB/s, 0 objects/s recovering 2024-09-16T23:58:47.498 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:47 smithi033 bash[22694]: debug 2024-09-16T23:58:47.240+0000 7f5ecb441640 -1 mon.a@0(leader).osd e54 definitely_dead 0 2024-09-16T23:58:47.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:47 smithi033 bash[22694]: audit 2024-09-16T23:58:47.241148+0000 mon.a (mon.0) 649 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T23:58:47.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:47 smithi033 bash[22694]: audit 2024-09-16T23:58:47.244111+0000 mon.a (mon.0) 650 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-16T23:58:47.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:47 smithi033 bash[22694]: audit 2024-09-16T23:58:47.246691+0000 mon.a (mon.0) 651 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-09-16T23:58:48.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:47 smithi089 bash[24318]: audit 2024-09-16T23:58:47.241148+0000 mon.a (mon.0) 649 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T23:58:48.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:47 smithi089 bash[24318]: audit 2024-09-16T23:58:47.244111+0000 mon.a (mon.0) 650 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-16T23:58:48.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:47 smithi089 bash[24318]: audit 2024-09-16T23:58:47.246691+0000 mon.a (mon.0) 651 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-09-16T23:58:48.494 INFO:journalctl@ceph.osd.5.smithi103.stdout:Sep 16 23:58:48 smithi103 systemd[1]: Stopping Ceph osd.5 for f4fb0768-7485-11ef-bceb-c7b262605968... 2024-09-16T23:58:48.494 INFO:journalctl@ceph.osd.5.smithi103.stdout:Sep 16 23:58:48 smithi103 bash[32718]: debug 2024-09-16T23:58:48.184+0000 7f480fff6640 -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-16T23:58:48.494 INFO:journalctl@ceph.osd.5.smithi103.stdout:Sep 16 23:58:48 smithi103 bash[32718]: debug 2024-09-16T23:58:48.184+0000 7f480fff6640 -1 osd.5 54 *** Got signal Terminated *** 2024-09-16T23:58:48.494 INFO:journalctl@ceph.osd.5.smithi103.stdout:Sep 16 23:58:48 smithi103 bash[32718]: debug 2024-09-16T23:58:48.184+0000 7f480fff6640 -1 osd.5 54 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-16T23:58:48.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:48 smithi033 bash[22694]: cluster 2024-09-16T23:58:46.671076+0000 mgr.a (mgr.14150) 381 : cluster [DBG] pgmap v321: 1 pgs: 1 peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 94 KiB/s, 0 objects/s recovering 2024-09-16T23:58:48.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:48 smithi033 bash[22694]: cephadm 2024-09-16T23:58:47.240477+0000 mgr.a (mgr.14150) 382 : cephadm [INF] Successfully zapped devices for osd.4 on smithi103 2024-09-16T23:58:48.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:48 smithi033 bash[22694]: audit 2024-09-16T23:58:47.241562+0000 mgr.a (mgr.14150) 383 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T23:58:48.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:48 smithi033 bash[22694]: audit 2024-09-16T23:58:47.244501+0000 mgr.a (mgr.14150) 384 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-16T23:58:48.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:48 smithi033 bash[22694]: cluster 2024-09-16T23:58:47.564140+0000 mon.a (mon.0) 652 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-16T23:58:48.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:48 smithi033 bash[22694]: cluster 2024-09-16T23:58:47.564186+0000 mon.a (mon.0) 653 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-16T23:58:48.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:48 smithi033 bash[22694]: audit 2024-09-16T23:58:47.571254+0000 mon.a (mon.0) 654 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-16T23:58:48.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:48 smithi033 bash[22694]: cluster 2024-09-16T23:58:47.577105+0000 mon.a (mon.0) 655 : cluster [DBG] osdmap e55: 5 total, 4 up, 5 in 2024-09-16T23:58:48.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:48 smithi033 bash[22694]: cephadm 2024-09-16T23:58:47.578344+0000 mgr.a (mgr.14150) 385 : cephadm [INF] osd.5 now down 2024-09-16T23:58:48.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:48 smithi033 bash[22694]: cephadm 2024-09-16T23:58:47.578822+0000 mgr.a (mgr.14150) 386 : cephadm [INF] Removing daemon osd.5 from smithi103 -- ports [] 2024-09-16T23:58:49.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:48 smithi089 bash[24318]: cluster 2024-09-16T23:58:46.671076+0000 mgr.a (mgr.14150) 381 : cluster [DBG] pgmap v321: 1 pgs: 1 peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 94 KiB/s, 0 objects/s recovering 2024-09-16T23:58:49.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:48 smithi089 bash[24318]: cephadm 2024-09-16T23:58:47.240477+0000 mgr.a (mgr.14150) 382 : cephadm [INF] Successfully zapped devices for osd.4 on smithi103 2024-09-16T23:58:49.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:48 smithi089 bash[24318]: audit 2024-09-16T23:58:47.241562+0000 mgr.a (mgr.14150) 383 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T23:58:49.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:48 smithi089 bash[24318]: audit 2024-09-16T23:58:47.244501+0000 mgr.a (mgr.14150) 384 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-16T23:58:49.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:48 smithi089 bash[24318]: cluster 2024-09-16T23:58:47.564140+0000 mon.a (mon.0) 652 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-16T23:58:49.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:48 smithi089 bash[24318]: cluster 2024-09-16T23:58:47.564186+0000 mon.a (mon.0) 653 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-16T23:58:49.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:48 smithi089 bash[24318]: audit 2024-09-16T23:58:47.571254+0000 mon.a (mon.0) 654 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-16T23:58:49.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:48 smithi089 bash[24318]: cluster 2024-09-16T23:58:47.577105+0000 mon.a (mon.0) 655 : cluster [DBG] osdmap e55: 5 total, 4 up, 5 in 2024-09-16T23:58:49.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:48 smithi089 bash[24318]: cephadm 2024-09-16T23:58:47.578344+0000 mgr.a (mgr.14150) 385 : cephadm [INF] osd.5 now down 2024-09-16T23:58:49.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:48 smithi089 bash[24318]: cephadm 2024-09-16T23:58:47.578822+0000 mgr.a (mgr.14150) 386 : cephadm [INF] Removing daemon osd.5 from smithi103 -- ports [] 2024-09-16T23:58:49.447 INFO:journalctl@ceph.osd.5.smithi103.stdout:Sep 16 23:58:49 smithi103 bash[36524]: ceph-f4fb0768-7485-11ef-bceb-c7b262605968-osd-5 2024-09-16T23:58:49.448 INFO:journalctl@ceph.osd.5.smithi103.stdout:Sep 16 23:58:49 smithi103 bash[36584]: Error response from daemon: No such container: ceph-f4fb0768-7485-11ef-bceb-c7b262605968-osd-5 2024-09-16T23:58:50.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:50 smithi033 bash[22694]: cluster 2024-09-16T23:58:48.671606+0000 mgr.a (mgr.14150) 387 : cluster [DBG] pgmap v323: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 81 KiB/s, 0 objects/s recovering 2024-09-16T23:58:51.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:50 smithi089 bash[24318]: cluster 2024-09-16T23:58:48.671606+0000 mgr.a (mgr.14150) 387 : cluster [DBG] pgmap v323: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 81 KiB/s, 0 objects/s recovering 2024-09-16T23:58:51.493 INFO:journalctl@ceph.osd.5.smithi103.stdout:Sep 16 23:58:51 smithi103 systemd[1]: ceph-f4fb0768-7485-11ef-bceb-c7b262605968@osd.5.service: Deactivated successfully. 2024-09-16T23:58:51.493 INFO:journalctl@ceph.osd.5.smithi103.stdout:Sep 16 23:58:51 smithi103 systemd[1]: Stopped Ceph osd.5 for f4fb0768-7485-11ef-bceb-c7b262605968. 2024-09-16T23:58:51.493 INFO:journalctl@ceph.osd.5.smithi103.stdout:Sep 16 23:58:51 smithi103 systemd[1]: /etc/systemd/system/ceph-f4fb0768-7485-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T23:58:51.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:51 smithi033 bash[22694]: audit 2024-09-16T23:58:51.332593+0000 mon.a (mon.0) 656 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-09-16T23:58:51.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:51 smithi033 bash[22694]: audit 2024-09-16T23:58:51.335580+0000 mon.a (mon.0) 657 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-16T23:58:51.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:51 smithi033 bash[22694]: audit 2024-09-16T23:58:51.341423+0000 mon.a (mon.0) 658 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-09-16T23:58:51.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:51 smithi033 bash[22694]: cluster 2024-09-16T23:58:51.342520+0000 mon.a (mon.0) 659 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-16T23:58:51.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:51 smithi033 bash[22694]: cluster 2024-09-16T23:58:51.342562+0000 mon.a (mon.0) 660 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-16T23:58:51.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:51 smithi033 bash[22694]: cluster 2024-09-16T23:58:51.342582+0000 mon.a (mon.0) 661 : cluster [INF] Cluster is now healthy 2024-09-16T23:58:51.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:51 smithi033 bash[22694]: audit 2024-09-16T23:58:51.344805+0000 mon.a (mon.0) 662 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-16T23:58:51.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:51 smithi033 bash[22694]: cluster 2024-09-16T23:58:51.349818+0000 mon.a (mon.0) 663 : cluster [DBG] osdmap e56: 4 total, 4 up, 4 in 2024-09-16T23:58:52.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:51 smithi089 bash[24318]: audit 2024-09-16T23:58:51.332593+0000 mon.a (mon.0) 656 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-09-16T23:58:52.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:51 smithi089 bash[24318]: audit 2024-09-16T23:58:51.335580+0000 mon.a (mon.0) 657 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-16T23:58:52.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:51 smithi089 bash[24318]: audit 2024-09-16T23:58:51.341423+0000 mon.a (mon.0) 658 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-09-16T23:58:52.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:51 smithi089 bash[24318]: cluster 2024-09-16T23:58:51.342520+0000 mon.a (mon.0) 659 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-16T23:58:52.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:51 smithi089 bash[24318]: cluster 2024-09-16T23:58:51.342562+0000 mon.a (mon.0) 660 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-16T23:58:52.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:51 smithi089 bash[24318]: cluster 2024-09-16T23:58:51.342582+0000 mon.a (mon.0) 661 : cluster [INF] Cluster is now healthy 2024-09-16T23:58:52.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:51 smithi089 bash[24318]: audit 2024-09-16T23:58:51.344805+0000 mon.a (mon.0) 662 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-16T23:58:52.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:51 smithi089 bash[24318]: cluster 2024-09-16T23:58:51.349818+0000 mon.a (mon.0) 663 : cluster [DBG] osdmap e56: 4 total, 4 up, 4 in 2024-09-16T23:58:52.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:52 smithi033 bash[22694]: cluster 2024-09-16T23:58:50.672127+0000 mgr.a (mgr.14150) 388 : cluster [DBG] pgmap v324: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:58:52.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:52 smithi033 bash[22694]: cephadm 2024-09-16T23:58:51.331908+0000 mgr.a (mgr.14150) 389 : cephadm [INF] Removing key for osd.5 2024-09-16T23:58:52.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:52 smithi033 bash[22694]: cephadm 2024-09-16T23:58:51.340744+0000 mgr.a (mgr.14150) 390 : cephadm [INF] Successfully removed osd.5 on smithi103 2024-09-16T23:58:52.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:52 smithi033 bash[22694]: cephadm 2024-09-16T23:58:51.350934+0000 mgr.a (mgr.14150) 391 : cephadm [INF] Successfully purged osd.5 on smithi103 2024-09-16T23:58:52.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:52 smithi033 bash[22694]: cephadm 2024-09-16T23:58:51.351147+0000 mgr.a (mgr.14150) 392 : cephadm [INF] Zapping devices for osd.5 on smithi103 2024-09-16T23:58:53.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:52 smithi089 bash[24318]: cluster 2024-09-16T23:58:50.672127+0000 mgr.a (mgr.14150) 388 : cluster [DBG] pgmap v324: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-09-16T23:58:53.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:52 smithi089 bash[24318]: cephadm 2024-09-16T23:58:51.331908+0000 mgr.a (mgr.14150) 389 : cephadm [INF] Removing key for osd.5 2024-09-16T23:58:53.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:52 smithi089 bash[24318]: cephadm 2024-09-16T23:58:51.340744+0000 mgr.a (mgr.14150) 390 : cephadm [INF] Successfully removed osd.5 on smithi103 2024-09-16T23:58:53.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:52 smithi089 bash[24318]: cephadm 2024-09-16T23:58:51.350934+0000 mgr.a (mgr.14150) 391 : cephadm [INF] Successfully purged osd.5 on smithi103 2024-09-16T23:58:53.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:52 smithi089 bash[24318]: cephadm 2024-09-16T23:58:51.351147+0000 mgr.a (mgr.14150) 392 : cephadm [INF] Zapping devices for osd.5 on smithi103 2024-09-16T23:58:53.220 INFO:teuthology.orchestra.run.smithi033.stderr:++ ceph orch ps --hostname smithi103 2024-09-16T23:58:53.540 INFO:teuthology.orchestra.run.smithi033.stderr:+ HOST_C_DAEMONS='No daemons reported' 2024-09-16T23:58:53.540 INFO:teuthology.orchestra.run.smithi033.stderr:+ '[' 'No daemons reported' '!=' 'No daemons reported' ']' 2024-09-16T23:58:53.540 INFO:teuthology.orchestra.run.smithi033.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-16T23:58:53.823 INFO:teuthology.orchestra.run.smithi033.stderr:17 2024-09-16T23:58:53.836 INFO:teuthology.orchestra.run.smithi033.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-16T23:58:53.849 INFO:teuthology.orchestra.run.smithi033.stderr:++ cat crushmap.txt 2024-09-16T23:58:53.851 INFO:teuthology.orchestra.run.smithi033.stderr:+ CRUSH_MAP='# begin crush map 2024-09-16T23:58:53.851 INFO:teuthology.orchestra.run.smithi033.stderr:tunable choose_local_tries 0 2024-09-16T23:58:53.851 INFO:teuthology.orchestra.run.smithi033.stderr:tunable choose_local_fallback_tries 0 2024-09-16T23:58:53.851 INFO:teuthology.orchestra.run.smithi033.stderr:tunable choose_total_tries 50 2024-09-16T23:58:53.851 INFO:teuthology.orchestra.run.smithi033.stderr:tunable chooseleaf_descend_once 1 2024-09-16T23:58:53.851 INFO:teuthology.orchestra.run.smithi033.stderr:tunable chooseleaf_vary_r 1 2024-09-16T23:58:53.851 INFO:teuthology.orchestra.run.smithi033.stderr:tunable chooseleaf_stable 1 2024-09-16T23:58:53.851 INFO:teuthology.orchestra.run.smithi033.stderr:tunable straw_calc_version 1 2024-09-16T23:58:53.851 INFO:teuthology.orchestra.run.smithi033.stderr:tunable allowed_bucket_algs 54 2024-09-16T23:58:53.851 INFO:teuthology.orchestra.run.smithi033.stderr: 2024-09-16T23:58:53.851 INFO:teuthology.orchestra.run.smithi033.stderr:# devices 2024-09-16T23:58:53.852 INFO:teuthology.orchestra.run.smithi033.stderr:device 0 osd.0 class ssd 2024-09-16T23:58:53.852 INFO:teuthology.orchestra.run.smithi033.stderr:device 1 osd.1 class ssd 2024-09-16T23:58:53.852 INFO:teuthology.orchestra.run.smithi033.stderr:device 2 osd.2 class ssd 2024-09-16T23:58:53.852 INFO:teuthology.orchestra.run.smithi033.stderr:device 3 osd.3 class ssd 2024-09-16T23:58:53.852 INFO:teuthology.orchestra.run.smithi033.stderr: 2024-09-16T23:58:53.852 INFO:teuthology.orchestra.run.smithi033.stderr:# types 2024-09-16T23:58:53.852 INFO:teuthology.orchestra.run.smithi033.stderr:type 0 osd 2024-09-16T23:58:53.852 INFO:teuthology.orchestra.run.smithi033.stderr:type 1 host 2024-09-16T23:58:53.852 INFO:teuthology.orchestra.run.smithi033.stderr:type 2 chassis 2024-09-16T23:58:53.852 INFO:teuthology.orchestra.run.smithi033.stderr:type 3 rack 2024-09-16T23:58:53.852 INFO:teuthology.orchestra.run.smithi033.stderr:type 4 row 2024-09-16T23:58:53.852 INFO:teuthology.orchestra.run.smithi033.stderr:type 5 pdu 2024-09-16T23:58:53.852 INFO:teuthology.orchestra.run.smithi033.stderr:type 6 pod 2024-09-16T23:58:53.853 INFO:teuthology.orchestra.run.smithi033.stderr:type 7 room 2024-09-16T23:58:53.853 INFO:teuthology.orchestra.run.smithi033.stderr:type 8 datacenter 2024-09-16T23:58:53.853 INFO:teuthology.orchestra.run.smithi033.stderr:type 9 zone 2024-09-16T23:58:53.853 INFO:teuthology.orchestra.run.smithi033.stderr:type 10 region 2024-09-16T23:58:53.853 INFO:teuthology.orchestra.run.smithi033.stderr:type 11 root 2024-09-16T23:58:53.853 INFO:teuthology.orchestra.run.smithi033.stderr: 2024-09-16T23:58:53.853 INFO:teuthology.orchestra.run.smithi033.stderr:# buckets 2024-09-16T23:58:53.853 INFO:teuthology.orchestra.run.smithi033.stderr:host smithi033 { 2024-09-16T23:58:53.853 INFO:teuthology.orchestra.run.smithi033.stderr: id -3 # do not change unnecessarily 2024-09-16T23:58:53.853 INFO:teuthology.orchestra.run.smithi033.stderr: id -4 class ssd # do not change unnecessarily 2024-09-16T23:58:53.853 INFO:teuthology.orchestra.run.smithi033.stderr: # weight 0.17459 2024-09-16T23:58:53.853 INFO:teuthology.orchestra.run.smithi033.stderr: alg straw2 2024-09-16T23:58:53.853 INFO:teuthology.orchestra.run.smithi033.stderr: hash 0 # rjenkins1 2024-09-16T23:58:53.853 INFO:teuthology.orchestra.run.smithi033.stderr: item osd.0 weight 0.08730 2024-09-16T23:58:53.854 INFO:teuthology.orchestra.run.smithi033.stderr: item osd.1 weight 0.08730 2024-09-16T23:58:53.854 INFO:teuthology.orchestra.run.smithi033.stderr:} 2024-09-16T23:58:53.854 INFO:teuthology.orchestra.run.smithi033.stderr:host smithi089 { 2024-09-16T23:58:53.854 INFO:teuthology.orchestra.run.smithi033.stderr: id -5 # do not change unnecessarily 2024-09-16T23:58:53.854 INFO:teuthology.orchestra.run.smithi033.stderr: id -6 class ssd # do not change unnecessarily 2024-09-16T23:58:53.854 INFO:teuthology.orchestra.run.smithi033.stderr: # weight 0.17459 2024-09-16T23:58:53.854 INFO:teuthology.orchestra.run.smithi033.stderr: alg straw2 2024-09-16T23:58:53.854 INFO:teuthology.orchestra.run.smithi033.stderr: hash 0 # rjenkins1 2024-09-16T23:58:53.854 INFO:teuthology.orchestra.run.smithi033.stderr: item osd.2 weight 0.08730 2024-09-16T23:58:53.854 INFO:teuthology.orchestra.run.smithi033.stderr: item osd.3 weight 0.08730 2024-09-16T23:58:53.854 INFO:teuthology.orchestra.run.smithi033.stderr:} 2024-09-16T23:58:53.854 INFO:teuthology.orchestra.run.smithi033.stderr:host smithi103 { 2024-09-16T23:58:53.854 INFO:teuthology.orchestra.run.smithi033.stderr: id -7 # do not change unnecessarily 2024-09-16T23:58:53.854 INFO:teuthology.orchestra.run.smithi033.stderr: id -8 class ssd # do not change unnecessarily 2024-09-16T23:58:53.855 INFO:teuthology.orchestra.run.smithi033.stderr: # weight 0.00000 2024-09-16T23:58:53.855 INFO:teuthology.orchestra.run.smithi033.stderr: alg straw2 2024-09-16T23:58:53.855 INFO:teuthology.orchestra.run.smithi033.stderr: hash 0 # rjenkins1 2024-09-16T23:58:53.855 INFO:teuthology.orchestra.run.smithi033.stderr:} 2024-09-16T23:58:53.855 INFO:teuthology.orchestra.run.smithi033.stderr:root default { 2024-09-16T23:58:53.855 INFO:teuthology.orchestra.run.smithi033.stderr: id -1 # do not change unnecessarily 2024-09-16T23:58:53.855 INFO:teuthology.orchestra.run.smithi033.stderr: id -2 class ssd # do not change unnecessarily 2024-09-16T23:58:53.855 INFO:teuthology.orchestra.run.smithi033.stderr: # weight 0.34918 2024-09-16T23:58:53.855 INFO:teuthology.orchestra.run.smithi033.stderr: alg straw2 2024-09-16T23:58:53.855 INFO:teuthology.orchestra.run.smithi033.stderr: hash 0 # rjenkins1 2024-09-16T23:58:53.855 INFO:teuthology.orchestra.run.smithi033.stderr: item smithi033 weight 0.17459 2024-09-16T23:58:53.855 INFO:teuthology.orchestra.run.smithi033.stderr: item smithi089 weight 0.17459 2024-09-16T23:58:53.855 INFO:teuthology.orchestra.run.smithi033.stderr: item smithi103 weight 0.00000 2024-09-16T23:58:53.855 INFO:teuthology.orchestra.run.smithi033.stderr:} 2024-09-16T23:58:53.856 INFO:teuthology.orchestra.run.smithi033.stderr: 2024-09-16T23:58:53.856 INFO:teuthology.orchestra.run.smithi033.stderr:# rules 2024-09-16T23:58:53.856 INFO:teuthology.orchestra.run.smithi033.stderr:rule replicated_rule { 2024-09-16T23:58:53.856 INFO:teuthology.orchestra.run.smithi033.stderr: id 0 2024-09-16T23:58:53.856 INFO:teuthology.orchestra.run.smithi033.stderr: type replicated 2024-09-16T23:58:53.856 INFO:teuthology.orchestra.run.smithi033.stderr: step take default 2024-09-16T23:58:53.856 INFO:teuthology.orchestra.run.smithi033.stderr: step choose firstn 0 type osd 2024-09-16T23:58:53.856 INFO:teuthology.orchestra.run.smithi033.stderr: step emit 2024-09-16T23:58:53.856 INFO:teuthology.orchestra.run.smithi033.stderr:} 2024-09-16T23:58:53.856 INFO:teuthology.orchestra.run.smithi033.stderr: 2024-09-16T23:58:53.856 INFO:teuthology.orchestra.run.smithi033.stderr:# end crush map' 2024-09-16T23:58:53.856 INFO:teuthology.orchestra.run.smithi033.stderr:+ grep -q smithi103 2024-09-16T23:58:53.857 INFO:teuthology.orchestra.run.smithi033.stderr:+ ceph orch host rm smithi103 --rm-crush-entry 2024-09-16T23:58:54.615 INFO:teuthology.orchestra.run.smithi033.stdout:Removed host 'smithi103' 2024-09-16T23:58:54.633 INFO:teuthology.orchestra.run.smithi033.stderr:+ sleep 30 2024-09-16T23:58:54.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:54 smithi033 bash[22694]: cluster 2024-09-16T23:58:52.672687+0000 mgr.a (mgr.14150) 393 : cluster [DBG] pgmap v326: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:58:54.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:54 smithi033 bash[22694]: audit 2024-09-16T23:58:53.530913+0000 mgr.a (mgr.14150) 394 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi103", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:58:54.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:54 smithi033 bash[22694]: audit 2024-09-16T23:58:53.831533+0000 mon.a (mon.0) 664 : audit [DBG] from='client.? 172.21.15.33:0/1834722714' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-16T23:58:54.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:54 smithi033 bash[22694]: audit 2024-09-16T23:58:54.152563+0000 mon.a (mon.0) 665 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi103"}]: dispatch 2024-09-16T23:58:55.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:54 smithi089 bash[24318]: cluster 2024-09-16T23:58:52.672687+0000 mgr.a (mgr.14150) 393 : cluster [DBG] pgmap v326: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:58:55.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:54 smithi089 bash[24318]: audit 2024-09-16T23:58:53.530913+0000 mgr.a (mgr.14150) 394 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi103", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:58:55.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:54 smithi089 bash[24318]: audit 2024-09-16T23:58:53.831533+0000 mon.a (mon.0) 664 : audit [DBG] from='client.? 172.21.15.33:0/1834722714' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-16T23:58:55.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:54 smithi089 bash[24318]: audit 2024-09-16T23:58:54.152563+0000 mon.a (mon.0) 665 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi103"}]: dispatch 2024-09-16T23:58:55.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:55 smithi033 bash[22694]: audit 2024-09-16T23:58:54.151751+0000 mgr.a (mgr.14150) 395 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi103", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:58:55.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:55 smithi033 bash[22694]: audit 2024-09-16T23:58:54.592491+0000 mon.a (mon.0) 666 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi103"}]': finished 2024-09-16T23:58:55.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:55 smithi033 bash[22694]: cluster 2024-09-16T23:58:54.597373+0000 mon.a (mon.0) 667 : cluster [DBG] osdmap e57: 4 total, 4 up, 4 in 2024-09-16T23:58:55.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:55 smithi033 bash[22694]: audit 2024-09-16T23:58:54.610396+0000 mon.a (mon.0) 668 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:55.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:55 smithi033 bash[22694]: audit 2024-09-16T23:58:54.611546+0000 mon.a (mon.0) 669 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi103"}]: dispatch 2024-09-16T23:58:55.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:55 smithi033 bash[22694]: audit 2024-09-16T23:58:54.617106+0000 mon.a (mon.0) 670 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi103"}]': finished 2024-09-16T23:58:55.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:55 smithi033 bash[22694]: audit 2024-09-16T23:58:54.629571+0000 mon.a (mon.0) 671 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:55.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:55 smithi033 bash[22694]: audit 2024-09-16T23:58:54.675382+0000 mon.a (mon.0) 672 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T23:58:55.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:55 smithi033 bash[22694]: audit 2024-09-16T23:58:54.676711+0000 mon.a (mon.0) 673 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T23:58:55.999 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:55 smithi033 bash[22694]: audit 2024-09-16T23:58:54.677696+0000 mon.a (mon.0) 674 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:58:56.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:55 smithi089 bash[24318]: audit 2024-09-16T23:58:54.151751+0000 mgr.a (mgr.14150) 395 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi103", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T23:58:56.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:55 smithi089 bash[24318]: audit 2024-09-16T23:58:54.592491+0000 mon.a (mon.0) 666 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi103"}]': finished 2024-09-16T23:58:56.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:55 smithi089 bash[24318]: cluster 2024-09-16T23:58:54.597373+0000 mon.a (mon.0) 667 : cluster [DBG] osdmap e57: 4 total, 4 up, 4 in 2024-09-16T23:58:56.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:55 smithi089 bash[24318]: audit 2024-09-16T23:58:54.610396+0000 mon.a (mon.0) 668 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:56.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:55 smithi089 bash[24318]: audit 2024-09-16T23:58:54.611546+0000 mon.a (mon.0) 669 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi103"}]: dispatch 2024-09-16T23:58:56.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:55 smithi089 bash[24318]: audit 2024-09-16T23:58:54.617106+0000 mon.a (mon.0) 670 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi103"}]': finished 2024-09-16T23:58:56.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:55 smithi089 bash[24318]: audit 2024-09-16T23:58:54.629571+0000 mon.a (mon.0) 671 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:56.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:55 smithi089 bash[24318]: audit 2024-09-16T23:58:54.675382+0000 mon.a (mon.0) 672 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T23:58:56.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:55 smithi089 bash[24318]: audit 2024-09-16T23:58:54.676711+0000 mon.a (mon.0) 673 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T23:58:56.007 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:55 smithi089 bash[24318]: audit 2024-09-16T23:58:54.677696+0000 mon.a (mon.0) 674 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:58:56.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:56 smithi033 bash[22694]: cephadm 2024-09-16T23:58:54.622965+0000 mgr.a (mgr.14150) 396 : cephadm [INF] Removed host smithi103 2024-09-16T23:58:56.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:56 smithi033 bash[22694]: cephadm 2024-09-16T23:58:54.623422+0000 mgr.a (mgr.14150) 397 : cephadm [INF] Successfully zapped devices for osd.5 on smithi103 2024-09-16T23:58:56.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:56 smithi033 bash[22694]: cluster 2024-09-16T23:58:54.673113+0000 mgr.a (mgr.14150) 398 : cluster [DBG] pgmap v328: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:58:56.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:56 smithi033 bash[22694]: cephadm 2024-09-16T23:58:54.674946+0000 mgr.a (mgr.14150) 399 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-16T23:58:56.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:56 smithi033 bash[22694]: cephadm 2024-09-16T23:58:54.678971+0000 mgr.a (mgr.14150) 400 : cephadm [INF] Reconfiguring daemon mon.a on smithi033 2024-09-16T23:58:57.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:56 smithi089 bash[24318]: cephadm 2024-09-16T23:58:54.622965+0000 mgr.a (mgr.14150) 396 : cephadm [INF] Removed host smithi103 2024-09-16T23:58:57.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:56 smithi089 bash[24318]: cephadm 2024-09-16T23:58:54.623422+0000 mgr.a (mgr.14150) 397 : cephadm [INF] Successfully zapped devices for osd.5 on smithi103 2024-09-16T23:58:57.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:56 smithi089 bash[24318]: cluster 2024-09-16T23:58:54.673113+0000 mgr.a (mgr.14150) 398 : cluster [DBG] pgmap v328: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:58:57.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:56 smithi089 bash[24318]: cephadm 2024-09-16T23:58:54.674946+0000 mgr.a (mgr.14150) 399 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-16T23:58:57.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:56 smithi089 bash[24318]: cephadm 2024-09-16T23:58:54.678971+0000 mgr.a (mgr.14150) 400 : cephadm [INF] Reconfiguring daemon mon.a on smithi033 2024-09-16T23:58:58.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:58 smithi033 bash[22694]: cluster 2024-09-16T23:58:56.673512+0000 mgr.a (mgr.14150) 401 : cluster [DBG] pgmap v329: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:58:58.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:58 smithi033 bash[22694]: audit 2024-09-16T23:58:57.451906+0000 mon.a (mon.0) 675 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:58.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:58 smithi033 bash[22694]: audit 2024-09-16T23:58:57.458047+0000 mon.a (mon.0) 676 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:58.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:58 smithi033 bash[22694]: cephadm 2024-09-16T23:58:57.459263+0000 mgr.a (mgr.14150) 402 : cephadm [INF] Reconfiguring mgr.a (monmap changed)... 2024-09-16T23:58:58.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:58 smithi033 bash[22694]: audit 2024-09-16T23:58:57.459909+0000 mon.a (mon.0) 677 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T23:58:58.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:58 smithi033 bash[22694]: audit 2024-09-16T23:58:57.461639+0000 mon.a (mon.0) 678 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T23:58:58.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:58 smithi033 bash[22694]: audit 2024-09-16T23:58:57.463250+0000 mon.a (mon.0) 679 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:58:58.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:58:58 smithi033 bash[22694]: cephadm 2024-09-16T23:58:57.465094+0000 mgr.a (mgr.14150) 403 : cephadm [INF] Reconfiguring daemon mgr.a on smithi033 2024-09-16T23:58:58.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:58 smithi089 bash[24318]: cluster 2024-09-16T23:58:56.673512+0000 mgr.a (mgr.14150) 401 : cluster [DBG] pgmap v329: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:58:58.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:58 smithi089 bash[24318]: audit 2024-09-16T23:58:57.451906+0000 mon.a (mon.0) 675 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:58.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:58 smithi089 bash[24318]: audit 2024-09-16T23:58:57.458047+0000 mon.a (mon.0) 676 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:58:58.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:58 smithi089 bash[24318]: cephadm 2024-09-16T23:58:57.459263+0000 mgr.a (mgr.14150) 402 : cephadm [INF] Reconfiguring mgr.a (monmap changed)... 2024-09-16T23:58:58.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:58 smithi089 bash[24318]: audit 2024-09-16T23:58:57.459909+0000 mon.a (mon.0) 677 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T23:58:58.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:58 smithi089 bash[24318]: audit 2024-09-16T23:58:57.461639+0000 mon.a (mon.0) 678 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T23:58:58.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:58 smithi089 bash[24318]: audit 2024-09-16T23:58:57.463250+0000 mon.a (mon.0) 679 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:58:58.757 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:58:58 smithi089 bash[24318]: cephadm 2024-09-16T23:58:57.465094+0000 mgr.a (mgr.14150) 403 : cephadm [INF] Reconfiguring daemon mgr.a on smithi033 2024-09-16T23:59:00.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:00 smithi033 bash[22694]: cluster 2024-09-16T23:58:58.674030+0000 mgr.a (mgr.14150) 404 : cluster [DBG] pgmap v330: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:59:00.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:00 smithi033 bash[22694]: audit 2024-09-16T23:58:59.967314+0000 mon.a (mon.0) 680 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:00.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:00 smithi033 bash[22694]: audit 2024-09-16T23:58:59.975022+0000 mon.a (mon.0) 681 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:00.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:00 smithi033 bash[22694]: audit 2024-09-16T23:58:59.977045+0000 mon.a (mon.0) 682 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-16T23:59:00.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:00 smithi033 bash[22694]: audit 2024-09-16T23:58:59.978568+0000 mon.a (mon.0) 683 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:59:00.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:00 smithi089 bash[24318]: cluster 2024-09-16T23:58:58.674030+0000 mgr.a (mgr.14150) 404 : cluster [DBG] pgmap v330: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:59:00.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:00 smithi089 bash[24318]: audit 2024-09-16T23:58:59.967314+0000 mon.a (mon.0) 680 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:00.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:00 smithi089 bash[24318]: audit 2024-09-16T23:58:59.975022+0000 mon.a (mon.0) 681 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:00.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:00 smithi089 bash[24318]: audit 2024-09-16T23:58:59.977045+0000 mon.a (mon.0) 682 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-16T23:59:00.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:00 smithi089 bash[24318]: audit 2024-09-16T23:58:59.978568+0000 mon.a (mon.0) 683 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:59:01.506 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:01 smithi089 bash[24318]: cephadm 2024-09-16T23:58:59.976439+0000 mgr.a (mgr.14150) 405 : cephadm [INF] Reconfiguring osd.0 (monmap changed)... 2024-09-16T23:59:01.506 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:01 smithi089 bash[24318]: cephadm 2024-09-16T23:58:59.981107+0000 mgr.a (mgr.14150) 406 : cephadm [INF] Reconfiguring daemon osd.0 on smithi033 2024-09-16T23:59:01.720 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:01 smithi033 bash[22694]: cephadm 2024-09-16T23:58:59.976439+0000 mgr.a (mgr.14150) 405 : cephadm [INF] Reconfiguring osd.0 (monmap changed)... 2024-09-16T23:59:01.720 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:01 smithi033 bash[22694]: cephadm 2024-09-16T23:58:59.981107+0000 mgr.a (mgr.14150) 406 : cephadm [INF] Reconfiguring daemon osd.0 on smithi033 2024-09-16T23:59:02.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:02 smithi033 bash[22694]: cluster 2024-09-16T23:59:00.674568+0000 mgr.a (mgr.14150) 407 : cluster [DBG] pgmap v331: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:59:02.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:02 smithi089 bash[24318]: cluster 2024-09-16T23:59:00.674568+0000 mgr.a (mgr.14150) 407 : cluster [DBG] pgmap v331: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:59:03.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:03 smithi033 bash[22694]: audit 2024-09-16T23:59:02.646965+0000 mon.a (mon.0) 684 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:03.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:03 smithi033 bash[22694]: audit 2024-09-16T23:59:02.654828+0000 mon.a (mon.0) 685 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:03.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:03 smithi033 bash[22694]: cephadm 2024-09-16T23:59:02.656532+0000 mgr.a (mgr.14150) 408 : cephadm [INF] Reconfiguring osd.1 (monmap changed)... 2024-09-16T23:59:03.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:03 smithi033 bash[22694]: audit 2024-09-16T23:59:02.657161+0000 mon.a (mon.0) 686 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-16T23:59:03.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:03 smithi033 bash[22694]: audit 2024-09-16T23:59:02.658776+0000 mon.a (mon.0) 687 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:59:03.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:03 smithi033 bash[22694]: cephadm 2024-09-16T23:59:02.661836+0000 mgr.a (mgr.14150) 409 : cephadm [INF] Reconfiguring daemon osd.1 on smithi033 2024-09-16T23:59:03.998 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:03 smithi033 bash[22694]: cluster 2024-09-16T23:59:02.675200+0000 mgr.a (mgr.14150) 410 : cluster [DBG] pgmap v332: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:59:04.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:03 smithi089 bash[24318]: audit 2024-09-16T23:59:02.646965+0000 mon.a (mon.0) 684 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:04.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:03 smithi089 bash[24318]: audit 2024-09-16T23:59:02.654828+0000 mon.a (mon.0) 685 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:04.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:03 smithi089 bash[24318]: cephadm 2024-09-16T23:59:02.656532+0000 mgr.a (mgr.14150) 408 : cephadm [INF] Reconfiguring osd.1 (monmap changed)... 2024-09-16T23:59:04.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:03 smithi089 bash[24318]: audit 2024-09-16T23:59:02.657161+0000 mon.a (mon.0) 686 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-16T23:59:04.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:03 smithi089 bash[24318]: audit 2024-09-16T23:59:02.658776+0000 mon.a (mon.0) 687 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:59:04.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:03 smithi089 bash[24318]: cephadm 2024-09-16T23:59:02.661836+0000 mgr.a (mgr.14150) 409 : cephadm [INF] Reconfiguring daemon osd.1 on smithi033 2024-09-16T23:59:04.006 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:03 smithi089 bash[24318]: cluster 2024-09-16T23:59:02.675200+0000 mgr.a (mgr.14150) 410 : cluster [DBG] pgmap v332: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:59:06.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:06 smithi033 bash[22694]: cluster 2024-09-16T23:59:04.675698+0000 mgr.a (mgr.14150) 411 : cluster [DBG] pgmap v333: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:59:06.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:06 smithi033 bash[22694]: audit 2024-09-16T23:59:05.384666+0000 mon.a (mon.0) 688 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:06.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:06 smithi033 bash[22694]: audit 2024-09-16T23:59:05.389294+0000 mon.a (mon.0) 689 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:06.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:06 smithi033 bash[22694]: cephadm 2024-09-16T23:59:05.390254+0000 mgr.a (mgr.14150) 412 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-16T23:59:06.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:06 smithi033 bash[22694]: audit 2024-09-16T23:59:05.390578+0000 mon.a (mon.0) 690 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T23:59:06.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:06 smithi033 bash[22694]: audit 2024-09-16T23:59:05.391767+0000 mon.a (mon.0) 691 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T23:59:06.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:06 smithi033 bash[22694]: audit 2024-09-16T23:59:05.392733+0000 mon.a (mon.0) 692 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:59:06.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:06 smithi033 bash[22694]: cephadm 2024-09-16T23:59:05.393804+0000 mgr.a (mgr.14150) 413 : cephadm [INF] Reconfiguring daemon mon.b on smithi089 2024-09-16T23:59:06.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:06 smithi089 bash[24318]: cluster 2024-09-16T23:59:04.675698+0000 mgr.a (mgr.14150) 411 : cluster [DBG] pgmap v333: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:59:06.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:06 smithi089 bash[24318]: audit 2024-09-16T23:59:05.384666+0000 mon.a (mon.0) 688 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:06.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:06 smithi089 bash[24318]: audit 2024-09-16T23:59:05.389294+0000 mon.a (mon.0) 689 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:06.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:06 smithi089 bash[24318]: cephadm 2024-09-16T23:59:05.390254+0000 mgr.a (mgr.14150) 412 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-16T23:59:06.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:06 smithi089 bash[24318]: audit 2024-09-16T23:59:05.390578+0000 mon.a (mon.0) 690 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T23:59:06.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:06 smithi089 bash[24318]: audit 2024-09-16T23:59:05.391767+0000 mon.a (mon.0) 691 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T23:59:06.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:06 smithi089 bash[24318]: audit 2024-09-16T23:59:05.392733+0000 mon.a (mon.0) 692 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:59:06.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:06 smithi089 bash[24318]: cephadm 2024-09-16T23:59:05.393804+0000 mgr.a (mgr.14150) 413 : cephadm [INF] Reconfiguring daemon mon.b on smithi089 2024-09-16T23:59:08.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:08 smithi033 bash[22694]: cluster 2024-09-16T23:59:06.676204+0000 mgr.a (mgr.14150) 414 : cluster [DBG] pgmap v334: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:59:08.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:08 smithi033 bash[22694]: audit 2024-09-16T23:59:07.684853+0000 mon.a (mon.0) 693 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:08.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:08 smithi033 bash[22694]: audit 2024-09-16T23:59:07.692653+0000 mon.a (mon.0) 694 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:08.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:08 smithi033 bash[22694]: audit 2024-09-16T23:59:07.694935+0000 mon.a (mon.0) 695 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T23:59:08.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:08 smithi033 bash[22694]: audit 2024-09-16T23:59:07.696722+0000 mon.a (mon.0) 696 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T23:59:08.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:08 smithi033 bash[22694]: audit 2024-09-16T23:59:07.698274+0000 mon.a (mon.0) 697 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:59:08.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:08 smithi089 bash[24318]: cluster 2024-09-16T23:59:06.676204+0000 mgr.a (mgr.14150) 414 : cluster [DBG] pgmap v334: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:59:08.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:08 smithi089 bash[24318]: audit 2024-09-16T23:59:07.684853+0000 mon.a (mon.0) 693 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:08.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:08 smithi089 bash[24318]: audit 2024-09-16T23:59:07.692653+0000 mon.a (mon.0) 694 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:08.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:08 smithi089 bash[24318]: audit 2024-09-16T23:59:07.694935+0000 mon.a (mon.0) 695 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T23:59:08.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:08 smithi089 bash[24318]: audit 2024-09-16T23:59:07.696722+0000 mon.a (mon.0) 696 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T23:59:08.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:08 smithi089 bash[24318]: audit 2024-09-16T23:59:07.698274+0000 mon.a (mon.0) 697 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:59:09.446 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:09 smithi089 bash[24318]: cephadm 2024-09-16T23:59:07.694276+0000 mgr.a (mgr.14150) 415 : cephadm [INF] Reconfiguring mgr.b (monmap changed)... 2024-09-16T23:59:09.446 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:09 smithi089 bash[24318]: cephadm 2024-09-16T23:59:07.700204+0000 mgr.a (mgr.14150) 416 : cephadm [INF] Reconfiguring daemon mgr.b on smithi089 2024-09-16T23:59:09.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:09 smithi033 bash[22694]: cephadm 2024-09-16T23:59:07.694276+0000 mgr.a (mgr.14150) 415 : cephadm [INF] Reconfiguring mgr.b (monmap changed)... 2024-09-16T23:59:09.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:09 smithi033 bash[22694]: cephadm 2024-09-16T23:59:07.700204+0000 mgr.a (mgr.14150) 416 : cephadm [INF] Reconfiguring daemon mgr.b on smithi089 2024-09-16T23:59:10.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:10 smithi033 bash[22694]: cluster 2024-09-16T23:59:08.676761+0000 mgr.a (mgr.14150) 417 : cluster [DBG] pgmap v335: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:59:10.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:10 smithi033 bash[22694]: audit 2024-09-16T23:59:09.842868+0000 mon.a (mon.0) 698 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:10.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:10 smithi033 bash[22694]: audit 2024-09-16T23:59:09.850891+0000 mon.a (mon.0) 699 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:10.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:10 smithi033 bash[22694]: audit 2024-09-16T23:59:09.853252+0000 mon.a (mon.0) 700 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-16T23:59:10.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:10 smithi033 bash[22694]: audit 2024-09-16T23:59:09.854992+0000 mon.a (mon.0) 701 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:59:10.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:10 smithi089 bash[24318]: cluster 2024-09-16T23:59:08.676761+0000 mgr.a (mgr.14150) 417 : cluster [DBG] pgmap v335: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:59:10.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:10 smithi089 bash[24318]: audit 2024-09-16T23:59:09.842868+0000 mon.a (mon.0) 698 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:10.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:10 smithi089 bash[24318]: audit 2024-09-16T23:59:09.850891+0000 mon.a (mon.0) 699 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:10.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:10 smithi089 bash[24318]: audit 2024-09-16T23:59:09.853252+0000 mon.a (mon.0) 700 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-16T23:59:10.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:10 smithi089 bash[24318]: audit 2024-09-16T23:59:09.854992+0000 mon.a (mon.0) 701 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:59:11.655 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:11 smithi089 bash[24318]: cephadm 2024-09-16T23:59:09.852648+0000 mgr.a (mgr.14150) 418 : cephadm [INF] Reconfiguring osd.2 (monmap changed)... 2024-09-16T23:59:11.655 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:11 smithi089 bash[24318]: cephadm 2024-09-16T23:59:09.857541+0000 mgr.a (mgr.14150) 419 : cephadm [INF] Reconfiguring daemon osd.2 on smithi089 2024-09-16T23:59:11.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:11 smithi033 bash[22694]: cephadm 2024-09-16T23:59:09.852648+0000 mgr.a (mgr.14150) 418 : cephadm [INF] Reconfiguring osd.2 (monmap changed)... 2024-09-16T23:59:11.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:11 smithi033 bash[22694]: cephadm 2024-09-16T23:59:09.857541+0000 mgr.a (mgr.14150) 419 : cephadm [INF] Reconfiguring daemon osd.2 on smithi089 2024-09-16T23:59:12.721 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:12 smithi089 bash[24318]: cluster 2024-09-16T23:59:10.677267+0000 mgr.a (mgr.14150) 420 : cluster [DBG] pgmap v336: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:59:12.724 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:12 smithi089 bash[24318]: audit 2024-09-16T23:59:12.118792+0000 mon.a (mon.0) 702 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:12.724 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:12 smithi089 bash[24318]: audit 2024-09-16T23:59:12.126741+0000 mon.a (mon.0) 703 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:12.724 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:12 smithi089 bash[24318]: audit 2024-09-16T23:59:12.129057+0000 mon.a (mon.0) 704 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-16T23:59:12.724 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:12 smithi089 bash[24318]: audit 2024-09-16T23:59:12.130682+0000 mon.a (mon.0) 705 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:59:12.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:12 smithi033 bash[22694]: cluster 2024-09-16T23:59:10.677267+0000 mgr.a (mgr.14150) 420 : cluster [DBG] pgmap v336: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:59:12.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:12 smithi033 bash[22694]: audit 2024-09-16T23:59:12.118792+0000 mon.a (mon.0) 702 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:12.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:12 smithi033 bash[22694]: audit 2024-09-16T23:59:12.126741+0000 mon.a (mon.0) 703 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:12.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:12 smithi033 bash[22694]: audit 2024-09-16T23:59:12.129057+0000 mon.a (mon.0) 704 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-16T23:59:12.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:12 smithi033 bash[22694]: audit 2024-09-16T23:59:12.130682+0000 mon.a (mon.0) 705 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:59:13.666 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:13 smithi089 bash[24318]: cephadm 2024-09-16T23:59:12.128466+0000 mgr.a (mgr.14150) 421 : cephadm [INF] Reconfiguring osd.3 (monmap changed)... 2024-09-16T23:59:13.667 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:13 smithi089 bash[24318]: cephadm 2024-09-16T23:59:12.133313+0000 mgr.a (mgr.14150) 422 : cephadm [INF] Reconfiguring daemon osd.3 on smithi089 2024-09-16T23:59:13.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:13 smithi033 bash[22694]: cephadm 2024-09-16T23:59:12.128466+0000 mgr.a (mgr.14150) 421 : cephadm [INF] Reconfiguring osd.3 (monmap changed)... 2024-09-16T23:59:13.749 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:13 smithi033 bash[22694]: cephadm 2024-09-16T23:59:12.133313+0000 mgr.a (mgr.14150) 422 : cephadm [INF] Reconfiguring daemon osd.3 on smithi089 2024-09-16T23:59:14.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:14 smithi033 bash[22694]: cluster 2024-09-16T23:59:12.677823+0000 mgr.a (mgr.14150) 423 : cluster [DBG] pgmap v337: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:59:14.755 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:14 smithi089 bash[24318]: cluster 2024-09-16T23:59:12.677823+0000 mgr.a (mgr.14150) 423 : cluster [DBG] pgmap v337: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:59:15.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:15 smithi033 bash[22694]: audit 2024-09-16T23:59:14.474698+0000 mon.a (mon.0) 706 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:15.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:15 smithi033 bash[22694]: audit 2024-09-16T23:59:14.483946+0000 mon.a (mon.0) 707 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:15.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:15 smithi033 bash[22694]: audit 2024-09-16T23:59:14.486521+0000 mon.a (mon.0) 708 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:59:15.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:15 smithi033 bash[22694]: audit 2024-09-16T23:59:15.223214+0000 mon.a (mon.0) 709 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:59:15.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:15 smithi033 bash[22694]: audit 2024-09-16T23:59:15.224703+0000 mon.a (mon.0) 710 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:59:15.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:15 smithi033 bash[22694]: audit 2024-09-16T23:59:15.231565+0000 mon.a (mon.0) 711 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:15.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:15 smithi089 bash[24318]: audit 2024-09-16T23:59:14.474698+0000 mon.a (mon.0) 706 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:15.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:15 smithi089 bash[24318]: audit 2024-09-16T23:59:14.483946+0000 mon.a (mon.0) 707 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:15.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:15 smithi089 bash[24318]: audit 2024-09-16T23:59:14.486521+0000 mon.a (mon.0) 708 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T23:59:15.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:15 smithi089 bash[24318]: audit 2024-09-16T23:59:15.223214+0000 mon.a (mon.0) 709 : audit [DBG] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T23:59:15.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:15 smithi089 bash[24318]: audit 2024-09-16T23:59:15.224703+0000 mon.a (mon.0) 710 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T23:59:15.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:15 smithi089 bash[24318]: audit 2024-09-16T23:59:15.231565+0000 mon.a (mon.0) 711 : audit [INF] from='mgr.14150 172.21.15.33:0/1588891480' entity='mgr.a' 2024-09-16T23:59:16.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:16 smithi033 bash[22694]: cluster 2024-09-16T23:59:14.678369+0000 mgr.a (mgr.14150) 424 : cluster [DBG] pgmap v338: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:59:16.755 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:16 smithi089 bash[24318]: cluster 2024-09-16T23:59:14.678369+0000 mgr.a (mgr.14150) 424 : cluster [DBG] pgmap v338: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:59:18.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:18 smithi033 bash[22694]: cluster 2024-09-16T23:59:16.678902+0000 mgr.a (mgr.14150) 425 : cluster [DBG] pgmap v339: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:59:18.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:18 smithi089 bash[24318]: cluster 2024-09-16T23:59:16.678902+0000 mgr.a (mgr.14150) 425 : cluster [DBG] pgmap v339: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:59:20.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:20 smithi033 bash[22694]: cluster 2024-09-16T23:59:18.679451+0000 mgr.a (mgr.14150) 426 : cluster [DBG] pgmap v340: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:59:20.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:20 smithi089 bash[24318]: cluster 2024-09-16T23:59:18.679451+0000 mgr.a (mgr.14150) 426 : cluster [DBG] pgmap v340: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:59:22.748 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:22 smithi033 bash[22694]: cluster 2024-09-16T23:59:20.679969+0000 mgr.a (mgr.14150) 427 : cluster [DBG] pgmap v341: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:59:22.755 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:22 smithi089 bash[24318]: cluster 2024-09-16T23:59:20.679969+0000 mgr.a (mgr.14150) 427 : cluster [DBG] pgmap v341: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:59:24.635 INFO:teuthology.orchestra.run.smithi033.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-16T23:59:24.747 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:24 smithi033 bash[22694]: cluster 2024-09-16T23:59:22.680828+0000 mgr.a (mgr.14150) 428 : cluster [DBG] pgmap v342: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:59:24.756 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:24 smithi089 bash[24318]: cluster 2024-09-16T23:59:22.680828+0000 mgr.a (mgr.14150) 428 : cluster [DBG] pgmap v342: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-16T23:59:24.927 INFO:teuthology.orchestra.run.smithi033.stderr:18 2024-09-16T23:59:24.940 INFO:teuthology.orchestra.run.smithi033.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-16T23:59:24.957 INFO:teuthology.orchestra.run.smithi033.stderr:++ cat crushmap.txt 2024-09-16T23:59:24.958 INFO:teuthology.orchestra.run.smithi033.stderr:+ CRUSH_MAP='# begin crush map 2024-09-16T23:59:24.958 INFO:teuthology.orchestra.run.smithi033.stderr:tunable choose_local_tries 0 2024-09-16T23:59:24.958 INFO:teuthology.orchestra.run.smithi033.stderr:tunable choose_local_fallback_tries 0 2024-09-16T23:59:24.958 INFO:teuthology.orchestra.run.smithi033.stderr:tunable choose_total_tries 50 2024-09-16T23:59:24.959 INFO:teuthology.orchestra.run.smithi033.stderr:tunable chooseleaf_descend_once 1 2024-09-16T23:59:24.959 INFO:teuthology.orchestra.run.smithi033.stderr:tunable chooseleaf_vary_r 1 2024-09-16T23:59:24.959 INFO:teuthology.orchestra.run.smithi033.stderr:tunable chooseleaf_stable 1 2024-09-16T23:59:24.959 INFO:teuthology.orchestra.run.smithi033.stderr:tunable straw_calc_version 1 2024-09-16T23:59:24.959 INFO:teuthology.orchestra.run.smithi033.stderr:tunable allowed_bucket_algs 54 2024-09-16T23:59:24.959 INFO:teuthology.orchestra.run.smithi033.stderr: 2024-09-16T23:59:24.959 INFO:teuthology.orchestra.run.smithi033.stderr:# devices 2024-09-16T23:59:24.959 INFO:teuthology.orchestra.run.smithi033.stderr:device 0 osd.0 class ssd 2024-09-16T23:59:24.959 INFO:teuthology.orchestra.run.smithi033.stderr:device 1 osd.1 class ssd 2024-09-16T23:59:24.959 INFO:teuthology.orchestra.run.smithi033.stderr:device 2 osd.2 class ssd 2024-09-16T23:59:24.959 INFO:teuthology.orchestra.run.smithi033.stderr:device 3 osd.3 class ssd 2024-09-16T23:59:24.959 INFO:teuthology.orchestra.run.smithi033.stderr: 2024-09-16T23:59:24.959 INFO:teuthology.orchestra.run.smithi033.stderr:# types 2024-09-16T23:59:24.960 INFO:teuthology.orchestra.run.smithi033.stderr:type 0 osd 2024-09-16T23:59:24.960 INFO:teuthology.orchestra.run.smithi033.stderr:type 1 host 2024-09-16T23:59:24.960 INFO:teuthology.orchestra.run.smithi033.stderr:type 2 chassis 2024-09-16T23:59:24.960 INFO:teuthology.orchestra.run.smithi033.stderr:type 3 rack 2024-09-16T23:59:24.960 INFO:teuthology.orchestra.run.smithi033.stderr:type 4 row 2024-09-16T23:59:24.960 INFO:teuthology.orchestra.run.smithi033.stderr:type 5 pdu 2024-09-16T23:59:24.960 INFO:teuthology.orchestra.run.smithi033.stderr:type 6 pod 2024-09-16T23:59:24.960 INFO:teuthology.orchestra.run.smithi033.stderr:type 7 room 2024-09-16T23:59:24.960 INFO:teuthology.orchestra.run.smithi033.stderr:type 8 datacenter 2024-09-16T23:59:24.960 INFO:teuthology.orchestra.run.smithi033.stderr:type 9 zone 2024-09-16T23:59:24.960 INFO:teuthology.orchestra.run.smithi033.stderr:type 10 region 2024-09-16T23:59:24.960 INFO:teuthology.orchestra.run.smithi033.stderr:type 11 root 2024-09-16T23:59:24.960 INFO:teuthology.orchestra.run.smithi033.stderr: 2024-09-16T23:59:24.961 INFO:teuthology.orchestra.run.smithi033.stderr:# buckets 2024-09-16T23:59:24.961 INFO:teuthology.orchestra.run.smithi033.stderr:host smithi033 { 2024-09-16T23:59:24.961 INFO:teuthology.orchestra.run.smithi033.stderr: id -3 # do not change unnecessarily 2024-09-16T23:59:24.961 INFO:teuthology.orchestra.run.smithi033.stderr: id -4 class ssd # do not change unnecessarily 2024-09-16T23:59:24.961 INFO:teuthology.orchestra.run.smithi033.stderr: # weight 0.17459 2024-09-16T23:59:24.961 INFO:teuthology.orchestra.run.smithi033.stderr: alg straw2 2024-09-16T23:59:24.961 INFO:teuthology.orchestra.run.smithi033.stderr: hash 0 # rjenkins1 2024-09-16T23:59:24.961 INFO:teuthology.orchestra.run.smithi033.stderr: item osd.0 weight 0.08730 2024-09-16T23:59:24.961 INFO:teuthology.orchestra.run.smithi033.stderr: item osd.1 weight 0.08730 2024-09-16T23:59:24.961 INFO:teuthology.orchestra.run.smithi033.stderr:} 2024-09-16T23:59:24.961 INFO:teuthology.orchestra.run.smithi033.stderr:host smithi089 { 2024-09-16T23:59:24.961 INFO:teuthology.orchestra.run.smithi033.stderr: id -5 # do not change unnecessarily 2024-09-16T23:59:24.961 INFO:teuthology.orchestra.run.smithi033.stderr: id -6 class ssd # do not change unnecessarily 2024-09-16T23:59:24.961 INFO:teuthology.orchestra.run.smithi033.stderr: # weight 0.17459 2024-09-16T23:59:24.962 INFO:teuthology.orchestra.run.smithi033.stderr: alg straw2 2024-09-16T23:59:24.962 INFO:teuthology.orchestra.run.smithi033.stderr: hash 0 # rjenkins1 2024-09-16T23:59:24.962 INFO:teuthology.orchestra.run.smithi033.stderr: item osd.2 weight 0.08730 2024-09-16T23:59:24.962 INFO:teuthology.orchestra.run.smithi033.stderr: item osd.3 weight 0.08730 2024-09-16T23:59:24.962 INFO:teuthology.orchestra.run.smithi033.stderr:} 2024-09-16T23:59:24.962 INFO:teuthology.orchestra.run.smithi033.stderr:root default { 2024-09-16T23:59:24.962 INFO:teuthology.orchestra.run.smithi033.stderr: id -1 # do not change unnecessarily 2024-09-16T23:59:24.962 INFO:teuthology.orchestra.run.smithi033.stderr: id -2 class ssd # do not change unnecessarily 2024-09-16T23:59:24.962 INFO:teuthology.orchestra.run.smithi033.stderr: # weight 0.34918 2024-09-16T23:59:24.962 INFO:teuthology.orchestra.run.smithi033.stderr: alg straw2 2024-09-16T23:59:24.962 INFO:teuthology.orchestra.run.smithi033.stderr: hash 0 # rjenkins1 2024-09-16T23:59:24.962 INFO:teuthology.orchestra.run.smithi033.stderr: item smithi033 weight 0.17459 2024-09-16T23:59:24.962 INFO:teuthology.orchestra.run.smithi033.stderr: item smithi089 weight 0.17459 2024-09-16T23:59:24.962 INFO:teuthology.orchestra.run.smithi033.stderr:} 2024-09-16T23:59:24.962 INFO:teuthology.orchestra.run.smithi033.stderr: 2024-09-16T23:59:24.963 INFO:teuthology.orchestra.run.smithi033.stderr:# rules 2024-09-16T23:59:24.963 INFO:teuthology.orchestra.run.smithi033.stderr:rule replicated_rule { 2024-09-16T23:59:24.963 INFO:teuthology.orchestra.run.smithi033.stderr: id 0 2024-09-16T23:59:24.963 INFO:teuthology.orchestra.run.smithi033.stderr: type replicated 2024-09-16T23:59:24.963 INFO:teuthology.orchestra.run.smithi033.stderr: step take default 2024-09-16T23:59:24.963 INFO:teuthology.orchestra.run.smithi033.stderr: step choose firstn 0 type osd 2024-09-16T23:59:24.963 INFO:teuthology.orchestra.run.smithi033.stderr: step emit 2024-09-16T23:59:24.963 INFO:teuthology.orchestra.run.smithi033.stderr:} 2024-09-16T23:59:24.963 INFO:teuthology.orchestra.run.smithi033.stderr: 2024-09-16T23:59:24.963 INFO:teuthology.orchestra.run.smithi033.stderr:# end crush map' 2024-09-16T23:59:24.963 INFO:teuthology.orchestra.run.smithi033.stderr:+ grep -q smithi103 2024-09-16T23:59:25.656 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-16T23:59:25.666 INFO:tasks.cephadm:Teardown begin 2024-09-16T23:59:25.667 DEBUG:teuthology.orchestra.run.smithi033:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-16T23:59:25.681 DEBUG:teuthology.orchestra.run.smithi089:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-16T23:59:25.696 DEBUG:teuthology.orchestra.run.smithi103:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-16T23:59:25.710 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-16T23:59:25.710 DEBUG:teuthology.orchestra.run.smithi033:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-16T23:59:25.728 DEBUG:teuthology.orchestra.run.smithi089:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-16T23:59:25.743 DEBUG:teuthology.orchestra.run.smithi103:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-16T23:59:25.759 INFO:tasks.cephadm:Stopping all daemons... 2024-09-16T23:59:25.759 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2024-09-16T23:59:25.760 DEBUG:teuthology.orchestra.run.smithi033:> sudo systemctl stop ceph-f4fb0768-7485-11ef-bceb-c7b262605968@mon.a 2024-09-16T23:59:25.781 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:25 smithi033 bash[22694]: audit 2024-09-16T23:59:24.935890+0000 mon.a (mon.0) 712 : audit [DBG] from='client.? 172.21.15.33:0/1076300799' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-16T23:59:25.873 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:25 smithi089 bash[24318]: audit 2024-09-16T23:59:24.935890+0000 mon.a (mon.0) 712 : audit [DBG] from='client.? 172.21.15.33:0/1076300799' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-16T23:59:25.926 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:25 smithi033 systemd[1]: Stopping Ceph mon.a for f4fb0768-7485-11ef-bceb-c7b262605968... 2024-09-16T23:59:26.234 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:25 smithi033 bash[22694]: debug 2024-09-16T23:59:25.932+0000 7f5ed0c4c640 -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-16T23:59:26.234 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:25 smithi033 bash[22694]: debug 2024-09-16T23:59:25.932+0000 7f5ed0c4c640 -1 mon.a@0(leader) e4 *** Got Signal Terminated *** 2024-09-16T23:59:26.849 DEBUG:teuthology.orchestra.run.smithi033:> sudo pkill -f 'journalctl -f -n 0 -u ceph-f4fb0768-7485-11ef-bceb-c7b262605968@mon.a.service' 2024-09-16T23:59:26.899 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:26 smithi033 bash[46948]: ceph-f4fb0768-7485-11ef-bceb-c7b262605968-mon-a 2024-09-16T23:59:26.899 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:26 smithi033 bash[47033]: Error response from daemon: No such container: ceph-f4fb0768-7485-11ef-bceb-c7b262605968-mon-a 2024-09-16T23:59:26.899 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:26 smithi033 systemd[1]: ceph-f4fb0768-7485-11ef-bceb-c7b262605968@mon.a.service: Deactivated successfully. 2024-09-16T23:59:26.899 INFO:journalctl@ceph.mon.a.smithi033.stdout:Sep 16 23:59:26 smithi033 systemd[1]: Stopped Ceph mon.a for f4fb0768-7485-11ef-bceb-c7b262605968. 2024-09-16T23:59:26.929 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T23:59:26.929 INFO:tasks.cephadm.mon.a:Stopped mon.a 2024-09-16T23:59:26.929 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2024-09-16T23:59:26.929 DEBUG:teuthology.orchestra.run.smithi089:> sudo systemctl stop ceph-f4fb0768-7485-11ef-bceb-c7b262605968@mon.b 2024-09-16T23:59:27.256 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:26 smithi089 systemd[1]: Stopping Ceph mon.b for f4fb0768-7485-11ef-bceb-c7b262605968... 2024-09-16T23:59:27.544 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:27 smithi089 bash[24318]: debug 2024-09-16T23:59:27.282+0000 7f2102cf8640 -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-16T23:59:27.545 INFO:journalctl@ceph.mon.b.smithi089.stdout:Sep 16 23:59:27 smithi089 bash[24318]: debug 2024-09-16T23:59:27.282+0000 7f2102cf8640 -1 mon.b@1(peon) e4 *** Got Signal Terminated *** 2024-09-16T23:59:28.189 DEBUG:teuthology.orchestra.run.smithi089:> sudo pkill -f 'journalctl -f -n 0 -u ceph-f4fb0768-7485-11ef-bceb-c7b262605968@mon.b.service' 2024-09-16T23:59:28.217 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T23:59:28.218 INFO:tasks.cephadm.mon.c:Stopped mon.b 2024-09-16T23:59:28.218 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2024-09-16T23:59:28.218 DEBUG:teuthology.orchestra.run.smithi103:> sudo systemctl stop ceph-f4fb0768-7485-11ef-bceb-c7b262605968@mon.c 2024-09-16T23:59:28.251 DEBUG:teuthology.orchestra.run.smithi103:> sudo pkill -f 'journalctl -f -n 0 -u ceph-f4fb0768-7485-11ef-bceb-c7b262605968@mon.c.service' 2024-09-16T23:59:28.327 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T23:59:28.327 INFO:tasks.cephadm.mon.c:Stopped mon.c 2024-09-16T23:59:28.327 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2024-09-16T23:59:28.327 DEBUG:teuthology.orchestra.run.smithi033:> sudo systemctl stop ceph-f4fb0768-7485-11ef-bceb-c7b262605968@mgr.a 2024-09-16T23:59:28.691 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:59:28 smithi033 systemd[1]: Stopping Ceph mgr.a for f4fb0768-7485-11ef-bceb-c7b262605968... 2024-09-16T23:59:28.691 INFO:journalctl@ceph.mgr.a.smithi033.stdout:Sep 16 23:59:28 smithi033 bash[22949]: debug 2024-09-16T23:59:28.472+0000 7f38d43e9640 -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-16T23:59:29.286 DEBUG:teuthology.orchestra.run.smithi033:> sudo pkill -f 'journalctl -f -n 0 -u ceph-f4fb0768-7485-11ef-bceb-c7b262605968@mgr.a.service' 2024-09-16T23:59:29.308 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T23:59:29.308 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2024-09-16T23:59:29.308 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2024-09-16T23:59:29.308 DEBUG:teuthology.orchestra.run.smithi089:> sudo systemctl stop ceph-f4fb0768-7485-11ef-bceb-c7b262605968@mgr.b 2024-09-16T23:59:29.668 INFO:journalctl@ceph.mgr.b.smithi089.stdout:Sep 16 23:59:29 smithi089 systemd[1]: Stopping Ceph mgr.b for f4fb0768-7485-11ef-bceb-c7b262605968... 2024-09-16T23:59:30.202 DEBUG:teuthology.orchestra.run.smithi089:> sudo pkill -f 'journalctl -f -n 0 -u ceph-f4fb0768-7485-11ef-bceb-c7b262605968@mgr.b.service' 2024-09-16T23:59:30.223 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T23:59:30.223 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2024-09-16T23:59:30.224 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2024-09-16T23:59:30.224 DEBUG:teuthology.orchestra.run.smithi033:> sudo systemctl stop ceph-f4fb0768-7485-11ef-bceb-c7b262605968@osd.0 2024-09-16T23:59:30.498 INFO:journalctl@ceph.osd.0.smithi033.stdout:Sep 16 23:59:30 smithi033 systemd[1]: Stopping Ceph osd.0 for f4fb0768-7485-11ef-bceb-c7b262605968... 2024-09-16T23:59:30.498 INFO:journalctl@ceph.osd.0.smithi033.stdout:Sep 16 23:59:30 smithi033 bash[34876]: debug 2024-09-16T23:59:30.368+0000 7f1554b8f640 -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-16T23:59:30.498 INFO:journalctl@ceph.osd.0.smithi033.stdout:Sep 16 23:59:30 smithi033 bash[34876]: debug 2024-09-16T23:59:30.368+0000 7f1554b8f640 -1 osd.0 57 *** Got signal Terminated *** 2024-09-16T23:59:30.498 INFO:journalctl@ceph.osd.0.smithi033.stdout:Sep 16 23:59:30 smithi033 bash[34876]: debug 2024-09-16T23:59:30.368+0000 7f1554b8f640 -1 osd.0 57 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-16T23:59:36.697 INFO:journalctl@ceph.osd.0.smithi033.stdout:Sep 16 23:59:36 smithi033 bash[47170]: ceph-f4fb0768-7485-11ef-bceb-c7b262605968-osd-0 2024-09-16T23:59:36.697 INFO:journalctl@ceph.osd.0.smithi033.stdout:Sep 16 23:59:36 smithi033 bash[47234]: Error response from daemon: No such container: ceph-f4fb0768-7485-11ef-bceb-c7b262605968-osd-0 2024-09-16T23:59:38.534 DEBUG:teuthology.orchestra.run.smithi033:> sudo pkill -f 'journalctl -f -n 0 -u ceph-f4fb0768-7485-11ef-bceb-c7b262605968@osd.0.service' 2024-09-16T23:59:38.569 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T23:59:38.569 INFO:tasks.cephadm.osd.0:Stopped osd.0 2024-09-16T23:59:38.569 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2024-09-16T23:59:38.569 DEBUG:teuthology.orchestra.run.smithi033:> sudo systemctl stop ceph-f4fb0768-7485-11ef-bceb-c7b262605968@osd.1 2024-09-16T23:59:38.998 INFO:journalctl@ceph.osd.1.smithi033.stdout:Sep 16 23:59:38 smithi033 systemd[1]: Stopping Ceph osd.1 for f4fb0768-7485-11ef-bceb-c7b262605968... 2024-09-16T23:59:38.998 INFO:journalctl@ceph.osd.1.smithi033.stdout:Sep 16 23:59:38 smithi033 bash[40368]: debug 2024-09-16T23:59:38.771+0000 7fc5a00d9640 -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-16T23:59:38.999 INFO:journalctl@ceph.osd.1.smithi033.stdout:Sep 16 23:59:38 smithi033 bash[40368]: debug 2024-09-16T23:59:38.771+0000 7fc5a00d9640 -1 osd.1 57 *** Got signal Terminated *** 2024-09-16T23:59:38.999 INFO:journalctl@ceph.osd.1.smithi033.stdout:Sep 16 23:59:38 smithi033 bash[40368]: debug 2024-09-16T23:59:38.771+0000 7fc5a00d9640 -1 osd.1 57 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-16T23:59:45.243 INFO:journalctl@ceph.osd.1.smithi033.stdout:Sep 16 23:59:44 smithi033 bash[47366]: ceph-f4fb0768-7485-11ef-bceb-c7b262605968-osd-1 2024-09-16T23:59:45.244 INFO:journalctl@ceph.osd.1.smithi033.stdout:Sep 16 23:59:45 smithi033 bash[47429]: Error response from daemon: No such container: ceph-f4fb0768-7485-11ef-bceb-c7b262605968-osd-1 2024-09-16T23:59:47.058 DEBUG:teuthology.orchestra.run.smithi033:> sudo pkill -f 'journalctl -f -n 0 -u ceph-f4fb0768-7485-11ef-bceb-c7b262605968@osd.1.service' 2024-09-16T23:59:47.101 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T23:59:47.101 INFO:tasks.cephadm.osd.1:Stopped osd.1 2024-09-16T23:59:47.101 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2024-09-16T23:59:47.101 DEBUG:teuthology.orchestra.run.smithi089:> sudo systemctl stop ceph-f4fb0768-7485-11ef-bceb-c7b262605968@osd.2 2024-09-16T23:59:47.506 INFO:journalctl@ceph.osd.2.smithi089.stdout:Sep 16 23:59:47 smithi089 systemd[1]: Stopping Ceph osd.2 for f4fb0768-7485-11ef-bceb-c7b262605968... 2024-09-16T23:59:47.506 INFO:journalctl@ceph.osd.2.smithi089.stdout:Sep 16 23:59:47 smithi089 bash[27284]: debug 2024-09-16T23:59:47.258+0000 7f4f25158640 -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-16T23:59:47.506 INFO:journalctl@ceph.osd.2.smithi089.stdout:Sep 16 23:59:47 smithi089 bash[27284]: debug 2024-09-16T23:59:47.258+0000 7f4f25158640 -1 osd.2 57 *** Got signal Terminated *** 2024-09-16T23:59:47.506 INFO:journalctl@ceph.osd.2.smithi089.stdout:Sep 16 23:59:47 smithi089 bash[27284]: debug 2024-09-16T23:59:47.258+0000 7f4f25158640 -1 osd.2 57 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-16T23:59:53.367 INFO:journalctl@ceph.osd.2.smithi089.stdout:Sep 16 23:59:53 smithi089 bash[36757]: ceph-f4fb0768-7485-11ef-bceb-c7b262605968-osd-2 2024-09-16T23:59:53.367 INFO:journalctl@ceph.osd.2.smithi089.stdout:Sep 16 23:59:53 smithi089 bash[36821]: Error response from daemon: No such container: ceph-f4fb0768-7485-11ef-bceb-c7b262605968-osd-2 2024-09-16T23:59:55.041 DEBUG:teuthology.orchestra.run.smithi089:> sudo pkill -f 'journalctl -f -n 0 -u ceph-f4fb0768-7485-11ef-bceb-c7b262605968@osd.2.service' 2024-09-16T23:59:55.068 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T23:59:55.069 INFO:tasks.cephadm.osd.2:Stopped osd.2 2024-09-16T23:59:55.069 INFO:tasks.cephadm.osd.3:Stopping osd.3... 2024-09-16T23:59:55.069 DEBUG:teuthology.orchestra.run.smithi089:> sudo systemctl stop ceph-f4fb0768-7485-11ef-bceb-c7b262605968@osd.3 2024-09-16T23:59:55.508 INFO:journalctl@ceph.osd.3.smithi089.stdout:Sep 16 23:59:55 smithi089 systemd[1]: Stopping Ceph osd.3 for f4fb0768-7485-11ef-bceb-c7b262605968... 2024-09-16T23:59:55.509 INFO:journalctl@ceph.osd.3.smithi089.stdout:Sep 16 23:59:55 smithi089 bash[32958]: debug 2024-09-16T23:59:55.242+0000 7f005e6df640 -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-16T23:59:55.509 INFO:journalctl@ceph.osd.3.smithi089.stdout:Sep 16 23:59:55 smithi089 bash[32958]: debug 2024-09-16T23:59:55.242+0000 7f005e6df640 -1 osd.3 57 *** Got signal Terminated *** 2024-09-16T23:59:55.509 INFO:journalctl@ceph.osd.3.smithi089.stdout:Sep 16 23:59:55 smithi089 bash[32958]: debug 2024-09-16T23:59:55.242+0000 7f005e6df640 -1 osd.3 57 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-16T23:59:58.756 INFO:journalctl@ceph.osd.3.smithi089.stdout:Sep 16 23:59:58 smithi089 bash[32958]: debug 2024-09-16T23:59:58.262+0000 7f0056ced640 -1 osd.3 57 heartbeat_check: no reply from 172.21.15.33:6806 osd.0 since back 2024-09-16T23:59:32.024818+0000 front 2024-09-16T23:59:32.024708+0000 (oldest deadline 2024-09-16T23:59:57.324455+0000) 2024-09-16T23:59:59.755 INFO:journalctl@ceph.osd.3.smithi089.stdout:Sep 16 23:59:59 smithi089 bash[32958]: debug 2024-09-16T23:59:59.278+0000 7f0056ced640 -1 osd.3 57 heartbeat_check: no reply from 172.21.15.33:6806 osd.0 since back 2024-09-16T23:59:32.024818+0000 front 2024-09-16T23:59:32.024708+0000 (oldest deadline 2024-09-16T23:59:57.324455+0000) 2024-09-17T00:00:01.657 INFO:journalctl@ceph.osd.3.smithi089.stdout:Sep 17 00:00:01 smithi089 bash[36949]: ceph-f4fb0768-7485-11ef-bceb-c7b262605968-osd-3 2024-09-17T00:00:01.660 INFO:journalctl@ceph.osd.3.smithi089.stdout:Sep 17 00:00:01 smithi089 bash[37075]: Error response from daemon: No such container: ceph-f4fb0768-7485-11ef-bceb-c7b262605968-osd-3 2024-09-17T00:00:03.208 DEBUG:teuthology.orchestra.run.smithi089:> sudo pkill -f 'journalctl -f -n 0 -u ceph-f4fb0768-7485-11ef-bceb-c7b262605968@osd.3.service' 2024-09-17T00:00:03.248 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T00:00:03.248 INFO:tasks.cephadm.osd.3:Stopped osd.3 2024-09-17T00:00:03.248 INFO:tasks.cephadm.osd.4:Stopping osd.4... 2024-09-17T00:00:03.248 DEBUG:teuthology.orchestra.run.smithi103:> sudo systemctl stop ceph-f4fb0768-7485-11ef-bceb-c7b262605968@osd.4 2024-09-17T00:00:03.293 DEBUG:teuthology.orchestra.run.smithi103:> sudo pkill -f 'journalctl -f -n 0 -u ceph-f4fb0768-7485-11ef-bceb-c7b262605968@osd.4.service' 2024-09-17T00:00:03.359 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T00:00:03.359 INFO:tasks.cephadm.osd.4:Stopped osd.4 2024-09-17T00:00:03.359 INFO:tasks.cephadm.osd.5:Stopping osd.5... 2024-09-17T00:00:03.359 DEBUG:teuthology.orchestra.run.smithi103:> sudo systemctl stop ceph-f4fb0768-7485-11ef-bceb-c7b262605968@osd.5 2024-09-17T00:00:03.427 DEBUG:teuthology.orchestra.run.smithi103:> sudo pkill -f 'journalctl -f -n 0 -u ceph-f4fb0768-7485-11ef-bceb-c7b262605968@osd.5.service' 2024-09-17T00:00:03.507 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T00:00:03.508 INFO:tasks.cephadm.osd.5:Stopped osd.5 2024-09-17T00:00:03.508 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid f4fb0768-7485-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-17T00:00:03.698 INFO:teuthology.orchestra.run.smithi033.stdout:Deleting cluster with fsid: f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-17T00:00:06.114 DEBUG:teuthology.orchestra.run.smithi089:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid f4fb0768-7485-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-17T00:00:06.297 INFO:teuthology.orchestra.run.smithi089.stdout:Deleting cluster with fsid: f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-17T00:00:08.711 DEBUG:teuthology.orchestra.run.smithi103:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid f4fb0768-7485-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-17T00:00:08.897 INFO:teuthology.orchestra.run.smithi103.stdout:Deleting cluster with fsid: f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-17T00:00:10.428 DEBUG:teuthology.orchestra.run.smithi033:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T00:00:10.443 DEBUG:teuthology.orchestra.run.smithi089:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T00:00:10.456 DEBUG:teuthology.orchestra.run.smithi103:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T00:00:10.468 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-17T00:00:10.470 DEBUG:teuthology.misc:Transferring archived files from smithi033:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7907884/remote/smithi033/crash 2024-09-17T00:00:10.471 DEBUG:teuthology.orchestra.run.smithi033:> sudo tar c -f - -C /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/crash -- . 2024-09-17T00:00:10.494 INFO:teuthology.orchestra.run.smithi033.stderr:tar: /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-17T00:00:10.494 INFO:teuthology.orchestra.run.smithi033.stderr:tar: Error is not recoverable: exiting now 2024-09-17T00:00:10.497 DEBUG:teuthology.misc:Transferring archived files from smithi089:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7907884/remote/smithi089/crash 2024-09-17T00:00:10.498 DEBUG:teuthology.orchestra.run.smithi089:> sudo tar c -f - -C /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/crash -- . 2024-09-17T00:00:10.513 INFO:teuthology.orchestra.run.smithi089.stderr:tar: /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-17T00:00:10.513 INFO:teuthology.orchestra.run.smithi089.stderr:tar: Error is not recoverable: exiting now 2024-09-17T00:00:10.515 DEBUG:teuthology.misc:Transferring archived files from smithi103:/var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7907884/remote/smithi103/crash 2024-09-17T00:00:10.516 DEBUG:teuthology.orchestra.run.smithi103:> sudo tar c -f - -C /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/crash -- . 2024-09-17T00:00:10.526 INFO:teuthology.orchestra.run.smithi103.stderr:tar: /var/lib/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-17T00:00:10.527 INFO:teuthology.orchestra.run.smithi103.stderr:tar: Error is not recoverable: exiting now 2024-09-17T00:00:10.527 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-17T00:00:10.528 DEBUG:teuthology.orchestra.run.smithi033:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.log | egrep CEPHADM_ | 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' | egrep -v CEPHADM_STRAY_HOST | egrep -v CEPHADM_STRAY_DAEMON | egrep -v CEPHADM_FAILED_DAEMON | head -n 1 2024-09-17T00:00:10.554 INFO:tasks.cephadm:Compressing logs... 2024-09-17T00:00:10.555 DEBUG:teuthology.orchestra.run.smithi033:> 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-17T00:00:10.597 DEBUG:teuthology.orchestra.run.smithi089:> 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-17T00:00:10.600 DEBUG:teuthology.orchestra.run.smithi103:> 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-17T00:00:10.605 INFO:teuthology.orchestra.run.smithi033.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-17T00:00:10.609 INFO:teuthology.orchestra.run.smithi089.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-17T00:00:10.610 INFO:teuthology.orchestra.run.smithi033.stderr:gzip -5 --verbose -- /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-osd.0.log 2024-09-17T00:00:10.610 INFO:teuthology.orchestra.run.smithi033.stderr:gzip -5 --verbose -- /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-mon.a.log 2024-09-17T00:00:10.612 INFO:teuthology.orchestra.run.smithi033.stderr:/var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-17T00:00:10.612 INFO:teuthology.orchestra.run.smithi033.stderr:/var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-mon.a.log: gzip -5 --verbose -- /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-osd.1.log 2024-09-17T00:00:10.612 INFO:teuthology.orchestra.run.smithi033.stderr:/var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.log 2024-09-17T00:00:10.612 INFO:teuthology.orchestra.run.smithi033.stderr:/var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-osd.1.log: 82.6% -- replaced with /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.cephadm.log.gz 2024-09-17T00:00:10.612 INFO:teuthology.orchestra.run.smithi033.stderr:gzip -5 --verbose -- /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-17T00:00:10.613 INFO:teuthology.orchestra.run.smithi033.stderr:gzip -5 --verbose -- /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-17T00:00:10.613 INFO:teuthology.orchestra.run.smithi103.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-17T00:00:10.615 INFO:teuthology.orchestra.run.smithi033.stderr:/var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.log: /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-mgr.a.log 2024-09-17T00:00:10.615 INFO:teuthology.orchestra.run.smithi033.stderr:/var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-17T00:00:10.615 INFO:teuthology.orchestra.run.smithi033.stderr:/var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-mgr.a.log: 86.8% -- replaced with /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.log.gz 2024-09-17T00:00:10.615 INFO:teuthology.orchestra.run.smithi033.stderr:/var/log/ceph/cephadm.log: 89.8% -- replaced with /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.audit.log.gz 2024-09-17T00:00:10.617 INFO:teuthology.orchestra.run.smithi033.stderr: 89.4% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-17T00:00:10.619 INFO:teuthology.orchestra.run.smithi033.stderr: 91.5% -- replaced with /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-17T00:00:10.669 INFO:teuthology.orchestra.run.smithi033.stderr: 93.2% -- replaced with /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-osd.0.log.gz 2024-09-17T00:00:10.687 INFO:teuthology.orchestra.run.smithi033.stderr: 93.3% -- replaced with /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-osd.1.log.gz 2024-09-17T00:00:10.698 INFO:teuthology.orchestra.run.smithi103.stderr:gzip -5 --verbose -- /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-17T00:00:10.699 INFO:teuthology.orchestra.run.smithi103.stderr:gzip -5 --verbose -- /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-osd.5.log 2024-09-17T00:00:10.700 INFO:teuthology.orchestra.run.smithi103.stderr:/var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.log 2024-09-17T00:00:10.700 INFO:teuthology.orchestra.run.smithi103.stderr: 80.2% -- replaced with /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.cephadm.log.gz 2024-09-17T00:00:10.701 INFO:teuthology.orchestra.run.smithi103.stderr:/var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-osd.5.log: gzip -5 --verbose -- /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-17T00:00:10.701 INFO:teuthology.orchestra.run.smithi103.stderr:gzip -5 --verbose -- /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-mon.c.log 2024-09-17T00:00:10.702 INFO:teuthology.orchestra.run.smithi103.stderr:/var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.log: /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-17T00:00:10.702 INFO:teuthology.orchestra.run.smithi103.stderr:/var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-mon.c.log: gzip -5 --verbose -- /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-osd.4.log 2024-09-17T00:00:10.703 INFO:teuthology.orchestra.run.smithi103.stderr:/var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.audit.log: 87.2%gzip -- replaced with /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.log.gz -5 2024-09-17T00:00:10.703 INFO:teuthology.orchestra.run.smithi103.stderr: --verbose -- /var/log/ceph/cephadm.log 2024-09-17T00:00:10.704 INFO:teuthology.orchestra.run.smithi103.stderr:/var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-osd.4.log: /var/log/ceph/cephadm.log: 90.0% -- replaced with /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.audit.log.gz 2024-09-17T00:00:10.705 INFO:teuthology.orchestra.run.smithi089.stderr:gzip -5 --verbose -- /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-osd.2.log 2024-09-17T00:00:10.706 INFO:teuthology.orchestra.run.smithi089.stderr:gzip -5 --verbose -- /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-17T00:00:10.707 INFO:teuthology.orchestra.run.smithi103.stderr: 88.3% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-17T00:00:10.709 INFO:teuthology.orchestra.run.smithi089.stderr:/var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-osd.3.log 2024-09-17T00:00:10.710 INFO:teuthology.orchestra.run.smithi089.stderr:/var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.log 2024-09-17T00:00:10.710 INFO:teuthology.orchestra.run.smithi089.stderr: 82.2% -- replaced with /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.cephadm.log.gz 2024-09-17T00:00:10.710 INFO:teuthology.orchestra.run.smithi089.stderr:/var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-osd.3.log: gzip -5 --verbose -- /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-17T00:00:10.710 INFO:teuthology.orchestra.run.smithi089.stderr:gzip -5 --verbose -- /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-mgr.b.log 2024-09-17T00:00:10.710 INFO:teuthology.orchestra.run.smithi089.stderr:/var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.log: /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-17T00:00:10.710 INFO:teuthology.orchestra.run.smithi089.stderr:/var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-mgr.b.log: gzip -5 --verbose -- /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-mon.b.log 2024-09-17T00:00:10.711 INFO:teuthology.orchestra.run.smithi103.stderr: 91.3% -- replaced with /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-17T00:00:10.713 INFO:teuthology.orchestra.run.smithi089.stderr:/var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-17T00:00:10.713 INFO:teuthology.orchestra.run.smithi089.stderr:/var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-mon.b.log: 86.7% -- replaced with /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.log.gz 2024-09-17T00:00:10.713 INFO:teuthology.orchestra.run.smithi089.stderr:/var/log/ceph/cephadm.log: 90.0% -- replaced with /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph.audit.log.gz 2024-09-17T00:00:10.713 INFO:teuthology.orchestra.run.smithi089.stderr: 89.2% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-17T00:00:10.716 INFO:teuthology.orchestra.run.smithi089.stderr: 91.6% -- replaced with /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-mgr.b.log.gz 2024-09-17T00:00:10.717 INFO:teuthology.orchestra.run.smithi089.stderr: 91.5% -- replaced with /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-17T00:00:10.717 INFO:teuthology.orchestra.run.smithi033.stderr: 90.0% -- replaced with /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-mgr.a.log.gz 2024-09-17T00:00:10.731 INFO:teuthology.orchestra.run.smithi103.stderr: 92.6% -- replaced with /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-osd.5.log.gz 2024-09-17T00:00:10.737 INFO:teuthology.orchestra.run.smithi103.stderr: 92.7% -- replaced with /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-osd.4.log.gz 2024-09-17T00:00:10.770 INFO:teuthology.orchestra.run.smithi089.stderr: 92.9% -- replaced with /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-osd.3.log.gz 2024-09-17T00:00:10.781 INFO:teuthology.orchestra.run.smithi103.stderr: 93.0% -- replaced with /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-mon.c.log.gz 2024-09-17T00:00:10.782 INFO:teuthology.orchestra.run.smithi103.stderr: 2024-09-17T00:00:10.782 INFO:teuthology.orchestra.run.smithi103.stderr:real 0m0.178s 2024-09-17T00:00:10.782 INFO:teuthology.orchestra.run.smithi103.stderr:user 0m0.172s 2024-09-17T00:00:10.782 INFO:teuthology.orchestra.run.smithi103.stderr:sys 0m0.014s 2024-09-17T00:00:10.796 INFO:teuthology.orchestra.run.smithi089.stderr: 93.4% -- replaced with /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-osd.2.log.gz 2024-09-17T00:00:10.804 INFO:teuthology.orchestra.run.smithi089.stderr: 92.7% -- replaced with /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-mon.b.log.gz 2024-09-17T00:00:10.806 INFO:teuthology.orchestra.run.smithi089.stderr: 2024-09-17T00:00:10.806 INFO:teuthology.orchestra.run.smithi089.stderr:real 0m0.204s 2024-09-17T00:00:10.806 INFO:teuthology.orchestra.run.smithi089.stderr:user 0m0.280s 2024-09-17T00:00:10.806 INFO:teuthology.orchestra.run.smithi089.stderr:sys 0m0.019s 2024-09-17T00:00:10.898 INFO:teuthology.orchestra.run.smithi033.stderr: 91.0% -- replaced with /var/log/ceph/f4fb0768-7485-11ef-bceb-c7b262605968/ceph-mon.a.log.gz 2024-09-17T00:00:10.900 INFO:teuthology.orchestra.run.smithi033.stderr: 2024-09-17T00:00:10.900 INFO:teuthology.orchestra.run.smithi033.stderr:real 0m0.301s 2024-09-17T00:00:10.900 INFO:teuthology.orchestra.run.smithi033.stderr:user 0m0.542s 2024-09-17T00:00:10.900 INFO:teuthology.orchestra.run.smithi033.stderr:sys 0m0.018s 2024-09-17T00:00:10.900 INFO:tasks.cephadm:Archiving logs... 2024-09-17T00:00:10.900 DEBUG:teuthology.misc:Transferring archived files from smithi033:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7907884/remote/smithi033/log 2024-09-17T00:00:10.901 DEBUG:teuthology.orchestra.run.smithi033:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-17T00:00:11.039 DEBUG:teuthology.misc:Transferring archived files from smithi089:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7907884/remote/smithi089/log 2024-09-17T00:00:11.039 DEBUG:teuthology.orchestra.run.smithi089:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-17T00:00:11.097 DEBUG:teuthology.misc:Transferring archived files from smithi103:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7907884/remote/smithi103/log 2024-09-17T00:00:11.098 DEBUG:teuthology.orchestra.run.smithi103:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-17T00:00:11.133 INFO:tasks.cephadm:Removing cluster... 2024-09-17T00:00:11.133 DEBUG:teuthology.orchestra.run.smithi033:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid f4fb0768-7485-11ef-bceb-c7b262605968 --force 2024-09-17T00:00:11.305 INFO:teuthology.orchestra.run.smithi033.stdout:Deleting cluster with fsid: f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-17T00:00:12.631 DEBUG:teuthology.orchestra.run.smithi089:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid f4fb0768-7485-11ef-bceb-c7b262605968 --force 2024-09-17T00:00:12.816 INFO:teuthology.orchestra.run.smithi089.stdout:Deleting cluster with fsid: f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-17T00:00:14.118 DEBUG:teuthology.orchestra.run.smithi103:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid f4fb0768-7485-11ef-bceb-c7b262605968 --force 2024-09-17T00:00:14.304 INFO:teuthology.orchestra.run.smithi103.stdout:Deleting cluster with fsid: f4fb0768-7485-11ef-bceb-c7b262605968 2024-09-17T00:00:15.602 INFO:tasks.cephadm:Removing cephadm ... 2024-09-17T00:00:15.602 DEBUG:teuthology.orchestra.run.smithi033:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-17T00:00:15.608 DEBUG:teuthology.orchestra.run.smithi089:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-17T00:00:15.615 DEBUG:teuthology.orchestra.run.smithi103:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-17T00:00:15.621 INFO:tasks.cephadm:Teardown complete 2024-09-17T00:00:15.621 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-09-17T00:00:15.632 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-17T00:00:15.633 DEBUG:teuthology.orchestra.run.smithi033:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-17T00:00:15.653 DEBUG:teuthology.orchestra.run.smithi089:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-17T00:00:15.660 DEBUG:teuthology.orchestra.run.smithi103:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-17T00:00:15.745 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-17T00:00:15.754 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-17T00:00:15.754 DEBUG:teuthology.orchestra.run.smithi033:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-17T00:00:15.757 DEBUG:teuthology.orchestra.run.smithi089:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-17T00:00:15.759 DEBUG:teuthology.orchestra.run.smithi103:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-17T00:00:15.767 INFO:teuthology.orchestra.run.smithi033.stdout: remote refid st t when poll reach delay offset jitter 2024-09-17T00:00:15.768 INFO:teuthology.orchestra.run.smithi033.stdout:============================================================================== 2024-09-17T00:00:15.768 INFO:teuthology.orchestra.run.smithi033.stdout:*hv01.front.sepi 67.205.162.81 3 u 62 64 377 0.105 -7.887 1.792 2024-09-17T00:00:15.768 INFO:teuthology.orchestra.run.smithi033.stdout:+hv02.front.sepi 63.231.80.2 3 u 63 64 377 0.092 +1.914 2.221 2024-09-17T00:00:15.768 INFO:teuthology.orchestra.run.smithi033.stdout:+hv03.front.sepi 144.34.193.110 3 u 61 64 377 0.101 -3.382 2.736 2024-09-17T00:00:15.768 INFO:teuthology.orchestra.run.smithi033.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-09-17T00:00:15.769 INFO:teuthology.orchestra.run.smithi089.stdout: remote refid st t when poll reach delay offset jitter 2024-09-17T00:00:15.769 INFO:teuthology.orchestra.run.smithi089.stdout:============================================================================== 2024-09-17T00:00:15.769 INFO:teuthology.orchestra.run.smithi089.stdout:*hv01.front.sepi 67.205.162.81 3 u 59 64 377 0.059 -8.397 3.272 2024-09-17T00:00:15.770 INFO:teuthology.orchestra.run.smithi089.stdout:+hv02.front.sepi 63.231.80.2 3 u 59 64 377 0.082 +2.428 1.843 2024-09-17T00:00:15.770 INFO:teuthology.orchestra.run.smithi089.stdout:+hv03.front.sepi 144.34.193.110 3 u 57 64 377 0.073 -0.930 1.892 2024-09-17T00:00:15.770 INFO:teuthology.orchestra.run.smithi089.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-09-17T00:00:15.771 INFO:teuthology.orchestra.run.smithi103.stdout: remote refid st t when poll reach delay offset jitter 2024-09-17T00:00:15.771 INFO:teuthology.orchestra.run.smithi103.stdout:============================================================================== 2024-09-17T00:00:15.771 INFO:teuthology.orchestra.run.smithi103.stdout:+hv01.front.sepi 67.205.162.81 3 u 62 64 377 0.082 -5.426 1.515 2024-09-17T00:00:15.771 INFO:teuthology.orchestra.run.smithi103.stdout:*hv02.front.sepi 63.231.80.2 3 u 52 64 377 0.091 -0.860 2.605 2024-09-17T00:00:15.771 INFO:teuthology.orchestra.run.smithi103.stdout:+hv03.front.sepi 144.34.193.110 3 u 61 64 377 0.122 +1.153 2.120 2024-09-17T00:00:15.771 INFO:teuthology.orchestra.run.smithi103.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-09-17T00:00:15.772 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-17T00:00:15.782 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-17T00:00:15.783 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-17T00:00:15.792 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-17T00:00:15.800 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-17T00:00:15.813 INFO:teuthology.task.internal:Duration was 1377.072572 seconds 2024-09-17T00:00:15.814 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-17T00:00:15.823 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-17T00:00:15.824 DEBUG:teuthology.orchestra.run.smithi033:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-17T00:00:15.826 DEBUG:teuthology.orchestra.run.smithi089:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-17T00:00:15.828 DEBUG:teuthology.orchestra.run.smithi103:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-17T00:00:15.864 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-17T00:00:15.864 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi033.front.sepia.ceph.com 2024-09-17T00:00:15.864 DEBUG:teuthology.orchestra.run.smithi033:> 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-17T00:00:15.913 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi089.front.sepia.ceph.com 2024-09-17T00:00:15.913 DEBUG:teuthology.orchestra.run.smithi089:> 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-17T00:00:15.923 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi103.front.sepia.ceph.com 2024-09-17T00:00:15.923 DEBUG:teuthology.orchestra.run.smithi103:> 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-17T00:00:15.933 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-17T00:00:15.933 DEBUG:teuthology.orchestra.run.smithi033:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T00:00:15.957 DEBUG:teuthology.orchestra.run.smithi089:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T00:00:15.971 DEBUG:teuthology.orchestra.run.smithi103:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T00:00:16.005 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-17T00:00:16.006 DEBUG:teuthology.orchestra.run.smithi033:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-17T00:00:16.037 DEBUG:teuthology.orchestra.run.smithi089:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-17T00:00:16.047 DEBUG:teuthology.orchestra.run.smithi103:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-17T00:00:16.127 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-17T00:00:16.190 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-17T00:00:16.190 DEBUG:teuthology.orchestra.run.smithi033:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-17T00:00:16.204 DEBUG:teuthology.orchestra.run.smithi089:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-17T00:00:16.218 DEBUG:teuthology.orchestra.run.smithi103:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-17T00:00:16.232 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-17T00:00:16.243 DEBUG:teuthology.orchestra.run.smithi033:> 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-17T00:00:16.249 DEBUG:teuthology.orchestra.run.smithi089:> 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-17T00:00:16.260 INFO:teuthology.orchestra.run.smithi033.stdout:kernel.core_pattern = core 2024-09-17T00:00:16.264 DEBUG:teuthology.orchestra.run.smithi103:> 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-17T00:00:16.273 INFO:teuthology.orchestra.run.smithi089.stdout:kernel.core_pattern = core 2024-09-17T00:00:16.285 INFO:teuthology.orchestra.run.smithi103.stdout:kernel.core_pattern = core 2024-09-17T00:00:16.383 DEBUG:teuthology.orchestra.run.smithi033:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-17T00:00:16.388 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T00:00:16.389 DEBUG:teuthology.orchestra.run.smithi089:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-17T00:00:16.418 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T00:00:16.418 DEBUG:teuthology.orchestra.run.smithi103:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-17T00:00:16.430 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T00:00:16.431 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-17T00:00:16.515 INFO:teuthology.task.internal:Transferring archived files... 2024-09-17T00:00:16.516 DEBUG:teuthology.misc:Transferring archived files from smithi033:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7907884/remote/smithi033 2024-09-17T00:00:16.516 DEBUG:teuthology.orchestra.run.smithi033:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-17T00:00:16.541 DEBUG:teuthology.misc:Transferring archived files from smithi089:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7907884/remote/smithi089 2024-09-17T00:00:16.542 DEBUG:teuthology.orchestra.run.smithi089:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-17T00:00:16.563 DEBUG:teuthology.misc:Transferring archived files from smithi103:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7907884/remote/smithi103 2024-09-17T00:00:16.564 DEBUG:teuthology.orchestra.run.smithi103:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-17T00:00:16.584 INFO:teuthology.task.internal:Removing archive directory... 2024-09-17T00:00:16.584 DEBUG:teuthology.orchestra.run.smithi033:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-17T00:00:16.587 DEBUG:teuthology.orchestra.run.smithi089:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-17T00:00:16.604 DEBUG:teuthology.orchestra.run.smithi103:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-17T00:00:16.631 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-17T00:00:16.672 INFO:teuthology.task.internal:Not uploading archives. 2024-09-17T00:00:16.672 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-17T00:00:16.772 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-17T00:00:16.772 DEBUG:teuthology.orchestra.run.smithi033:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-17T00:00:16.775 DEBUG:teuthology.orchestra.run.smithi089:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-17T00:00:16.777 DEBUG:teuthology.orchestra.run.smithi103:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-17T00:00:16.779 INFO:teuthology.orchestra.run.smithi033.stdout: 658642 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 17 00:00 /home/ubuntu/cephtest 2024-09-17T00:00:16.781 INFO:teuthology.orchestra.run.smithi089.stdout: 658640 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 17 00:00 /home/ubuntu/cephtest 2024-09-17T00:00:16.783 INFO:teuthology.orchestra.run.smithi103.stdout: 658466 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 17 00:00 /home/ubuntu/cephtest 2024-09-17T00:00:16.784 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-17T00:00:16.794 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-17T00:00:16.818 INFO:teuthology.run:Summary data: description: orch/cephadm/workunits/{0-distro/ubuntu_22.04 agent/off mon_election/classic task/test_host_drain} duration: 1377.0725717544556 flavor: default owner: scheduled_teuthology@teuthology success: true 2024-09-17T00:00:16.818 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-17T00:00:16.904 INFO:teuthology.run:pass